@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* =========================================
   Base & Variables
   ========================================= */
:root {
    /* Spiritual / Professional Color Palette - Mystical Modern (Dark Mode) */
    --clr-gold: #D4AF37;
    --clr-gold-light: #FCEABB;
    --clr-purple-dark: #0A0510;
    --clr-purple-medium: #1F1030;
    --clr-purple-light: #522D80;
    --clr-blue-deep: #050814;
    --clr-glow: #9E68D1;
    --clr-white: #FFFFFF;
    --clr-bg: #07030A;
    --clr-text-main: #E5DDF0;
    --clr-text-muted: #9F8FB3;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Shadows & Effects */
    --glass-bg: rgba(33, 15, 52, 0.4);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--clr-text-main);
    background-color: var(--clr-bg);
    overflow-x: hidden;
    /* Soft ambient lighting in the background */
    background-image:
        radial-gradient(circle at 10% 50%, rgba(82, 45, 128, 0.08), transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(212, 175, 55, 0.05), transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(82, 45, 128, 0.05), transparent 50%);
}

/* =========================================
   Typography
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--clr-gold-light);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.15;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
    color: var(--clr-white);
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: var(--clr-gold);
    transition: var(--transition);
}

.highlight {
    color: var(--clr-gold);
    font-style: italic;
    background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

/* =========================================
   Utility Classes
   ========================================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 800px;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    margin-bottom: 4rem;
}

.section-title p {
    color: var(--clr-text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
}

.bg-glass-light {
    background: rgba(33, 15, 52, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-gold), #B8860B);
    color: var(--clr-purple-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-block {
    display: block;
    width: 100%;
}

/* =========================================
   Topbar
   ========================================= */
.top-contact-bar {
    background: #000000;
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    padding: 0.6rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.top-contact-bar a {
    color: var(--clr-text-muted);
}

.top-contact-bar a:hover {
    color: var(--clr-gold-light);
}

.flex-contact-bar {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.flex-contact-bar span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 36px;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 5, 16, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    top: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--clr-gold-light);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.logo-icon {
    color: var(--clr-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

.nav-links li a {
    color: var(--clr-text-main);
    font-weight: 500;
    position: relative;
    padding-bottom: 6px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--clr-gold);
    transition: var(--transition);
    box-shadow: 0 0 8px var(--clr-gold);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--clr-gold-light);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.btn-login {
    background: rgba(82, 45, 128, 0.3) !important;
    border: 1px solid rgba(82, 45, 128, 0.6) !important;
    color: var(--clr-white) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 30px;
}

.btn-login:hover {
    background: rgba(82, 45, 128, 0.6) !important;
    box-shadow: 0 0 15px rgba(82, 45, 128, 0.4);
}

.btn-login::after {
    display: none !important;
}

/* Language Toggle */
.lang-toggle {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--clr-gold);
    padding: 0.45rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.lang-toggle:hover {
    background: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-gold);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
}

/* Hero Slider Section */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background-color: var(--clr-bg);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 0.6; /* Slight dim to help text readability */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(26, 13, 42, 0.7) 0%, #07030A 90%);
    z-index: 1;
}

/* Mystic Glowing Orb */
.hero-slider::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(82, 45, 128, 0.1) 40%, rgba(0, 0, 0, 0) 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    z-index: 2;
    animation: floatOrb 15s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Second mystic orb */
.hero-slider::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(158, 104, 209, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
    z-index: 2;
    animation: floatOrbReverse 18s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.25rem;
    color: var(--clr-text-main);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 650px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
}

/* =========================================
   Cards (Services)
   ========================================= */
.card {
    padding: 3.5rem 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Glow effect inside cards */
.card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
    opacity: 0;
}

.card:hover::before {
    opacity: 1;
    transform: scale(2.5);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(82, 45, 128, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-icon {
    font-size: 2.8rem;
    color: var(--clr-gold);
    margin-bottom: 1.8rem;
    position: relative;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition);
}

.card:hover .card-icon::after {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.card p {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.card-link {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-link:hover {
    gap: 1rem;
    filter: brightness(1.2);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* =========================================
   Philosophy Section
   ========================================= */
.philosophy-text {
    flex: 1;
    min-width: 320px;
}

.subtitle {
    color: var(--clr-gold);
    font-weight: 400;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.principles {
    list-style: none;
    margin-top: 2.5rem;
}

.principles li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--clr-text-main);
    font-weight: 300;
}

.principles li i {
    color: var(--clr-gold);
    margin-top: 5px;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.philosophy-image {
    flex: 1;
    min-width: 320px;
    position: relative;
}

/* Mystical image glowing frame */
.philosophy-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    z-index: -1;
}

.image-wrapper {
    padding: 10px;
    background: rgba(33, 15, 52, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition);
}

.image-wrapper:hover {
    box-shadow: 0 0 30px rgba(82, 45, 128, 0.3);
}

.image-wrapper img {
    width: 100%;
    border-radius: 12px;
    display: block;
    filter: brightness(0.85) contrast(1.1);
    transition: var(--transition);
}

.image-wrapper:hover img {
    filter: brightness(1) contrast(1.1);
    transform: scale(1.02);
}

/* =========================================
   Contact Form
   ========================================= */
.form-wrapper {
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(10, 5, 20, 0.6);
    backdrop-filter: blur(5px);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--clr-white);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select option {
    background: var(--clr-purple-dark);
    color: var(--clr-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1), inset 0 0 10px rgba(212, 175, 55, 0.05);
    background: rgba(20, 10, 40, 0.8);
}

/* =========================================
   Footer
   ========================================= */
footer {
    background-color: #03040A;
    /* Even darker for footer root */
    color: var(--clr-text-muted);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info p {
    color: rgba(229, 221, 240, 0.6);
    font-weight: 300;
    margin-top: 1.2rem;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--clr-gold-light);
    font-size: 1.25rem;
    margin-bottom: 1.8rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(229, 221, 240, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--clr-gold);
    padding-left: 8px;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: rgba(229, 221, 240, 0.7);
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.footer-contact i {
    color: var(--clr-gold);
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* =========================================
   Animations & Responsive
   ========================================= */
@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-50px, 80px) scale(1.1);
    }

    100% {
        transform: translate(30px, 120px) scale(0.9);
    }
}

@keyframes floatOrbReverse {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(60px, -60px) scale(1.15);
    }

    100% {
        transform: translate(-40px, -100px) scale(0.95);
    }
}

/* Initial state for scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* =========================================
   Logo Images
   ========================================= */
.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
    transition: var(--transition);
}

.footer-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
    transition: var(--transition);
}

.logo:hover .logo-img,
.footer-logo:hover .footer-logo-img {
    filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.6));
    transform: scale(1.03);
}

/* =========================================
   Responsive – Large Desktop (≤1200px)
   ========================================= */
@media (max-width: 1200px) {
    .container {
        width: 92%;
    }

    .nav-links {
        gap: 1.6rem;
    }

    .nav-links li a {
        font-size: 0.9rem;
    }

    .footer-content {
        gap: 3rem;
    }
}

/* =========================================
   Responsive – Tablet Landscape (≤992px)
   ========================================= */
@media (max-width: 992px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .flex-row {
        flex-direction: column;
        gap: 3rem;
    }

    .philosophy-text,
    .philosophy-image {
        min-width: unset;
        width: 100%;
    }

    .philosophy-image::before {
        display: none;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        margin-bottom: 3rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .video-overlay i {
        font-size: 4rem;
    }

    .card {
        padding: 2.5rem 2rem;
    }
}

/* =========================================
   Responsive – Tablet Portrait (≤768px)
   ========================================= */
@media (max-width: 768px) {
    /* Navbar hamburger menu */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 5, 20, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem 1.5rem;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        font-size: 1rem;
        display: block;
    }

    .nav-links li a::after {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* Navbar */
    .navbar {
        padding: 1rem 0;
    }

    .logo-img {
        height: 30px;
    }

    /* Top Contact Bar */
    .top-contact-bar {
        font-size: 0.78rem;
        padding: 0.5rem 0;
    }

    .flex-contact-bar {
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    /* Hero */
    .hero {
        min-height: 90vh;
        padding-top: 5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    /* Sections */
    .section {
        padding: 3.5rem 0;
    }

    .section-title {
        margin-bottom: 2.5rem;
    }

    .section-title p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    /* Cards */
    .card {
        padding: 2.5rem 1.8rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 2.4rem;
    }

    /* Training Detail */
    .training-detail {
        padding: 0 1rem;
    }

    .training-icon {
        width: 80px;
        height: 80px;
        font-size: 2.6rem;
    }

    .training-detail p {
        font-size: 1rem;
    }

    /* Form */
    .form-wrapper {
        padding: 2.5rem 1.5rem;
    }

    /* Video */
    .video-overlay i {
        font-size: 3.5rem;
    }

    .video-overlay p {
        font-size: 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.5rem;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    footer {
        padding: 4rem 0 2rem;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 28px;
    }

    /* Cities */
    .cities-grid {
        gap: 8px;
    }

    .city-tag {
        font-size: 0.78rem;
        padding: 0.38rem 0.75rem;
    }
}

/* =========================================
   Responsive – Mobile (≤576px)
   ========================================= */
@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .container {
        width: 94%;
    }

    .logo-img {
        height: 26px;
    }

    .hero {
        min-height: 85vh;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons .btn {
        padding: 0.8rem 1.6rem;
        font-size: 0.9rem;
    }

    /* Cards */
    .card {
        padding: 2rem 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1.4rem;
    }

    /* Training */
    .training-detail {
        padding: 0 0.5rem;
    }

    .training-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }

    .section-divider {
        margin: 0 auto 1.5rem;
    }

    .btn-whatsapp {
        padding: 0.8rem 1.6rem;
        font-size: 0.9rem;
    }

    /* Form */
    .form-wrapper {
        padding: 2rem 1.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }

    .btn-block {
        padding: 1rem;
        font-size: 0.95rem;
    }

    /* Philosophy */
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .principles li {
        font-size: 1rem;
    }

    /* Video */
    .video-overlay i {
        font-size: 3rem;
    }

    .video-overlay p {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-bottom p {
        font-size: 0.75rem !important;
    }

    .footer-logo-img {
        height: 24px;
    }

    /* WhatsApp */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 26px;
    }

    /* Topbar */
    .flex-contact-bar {
        gap: 0.5rem;
        font-size: 0.72rem;
    }

    .topbar-social {
        display: none;
    }
}

/* =========================================
   Responsive – Small Mobile (≤480px)
   ========================================= */
@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero {
        min-height: 80vh;
        padding-top: 4.5rem;
    }

    .hero p {
        font-size: 0.92rem;
    }

    .card {
        padding: 1.8rem 1.2rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .section-title p {
        font-size: 0.92rem;
    }

    .logo-img {
        height: 22px;
    }

    .cities-grid.collapsed {
        max-height: 150px;
    }

    .city-tag {
        font-size: 0.72rem;
        padding: 0.3rem 0.6rem;
    }

    .flex-contact-bar span:not(.topbar-social) {
        font-size: 0.68rem;
    }

    .navbar.scrolled {
        padding: 0.7rem 0;
    }
}

/* =========================================
   Training Detail Sections
   ========================================= */
.training-detail {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.training-detail h2 {
    margin-bottom: 0.6rem;
}

.training-icon {
    font-size: 3rem;
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.training-icon:hover {
    background: rgba(212, 175, 55, 0.12);
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.training-detail p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 1.5rem;
    font-weight: 300;
}

/* WhatsApp CTA Button */
.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128C7E) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    transform: translateY(-3px);
}

.btn-whatsapp i {
    margin-right: 6px;
    font-size: 1.2rem;
}

/* YouTube Button */
.btn-youtube {
    background: linear-gradient(135deg, #e52d27, #b31217) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(229, 45, 39, 0.3);
}

.btn-youtube:hover {
    box-shadow: 0 8px 30px rgba(229, 45, 39, 0.5);
    transform: translateY(-3px);
}

.btn-youtube i {
    margin-right: 6px;
    font-size: 1.2rem;
}

/* Section Divider */
.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
    margin: 0 auto 2rem;
    border: none;
}

/* =========================================
   Cities Section Improvements
   ========================================= */
.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 1.5rem;
}

.cities-grid.collapsed {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.cities-grid.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(33, 15, 52, 0.95));
    pointer-events: none;
}

.city-tag {
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(33, 15, 52, 0.3);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.city-tag:hover {
    border-color: var(--clr-gold);
    color: var(--clr-gold-light);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.btn-toggle-cities {
    margin-top: 1.5rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--clr-gold);
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-toggle-cities:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--clr-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

/* Video Container */
.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
    border-radius: 20px;
}

.video-link {
    display: block;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-decoration: none;
}

.video-link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: filter 0.3s ease;
}

.video-link:hover img {
    filter: brightness(0.8);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    pointer-events: none;
}

.video-overlay i {
    font-size: 5rem;
    color: var(--clr-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.video-overlay p {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--clr-text-main);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Footer Social Icons */
.footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.footer-social a {
    font-size: 1.8rem;
    transition: var(--transition);
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-social .fa-youtube {
    color: #e52d27;
    text-shadow: 0 0 10px rgba(229, 45, 39, 0.4);
}

.footer-social .fa-instagram {
    color: #E1306C;
    text-shadow: 0 0 10px rgba(225, 48, 108, 0.4);
}

.footer-social .fa-whatsapp {
    color: #25D366;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}

/* Topbar social */
.topbar-social {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 1rem;
    gap: 1rem;
}

.topbar-social a i {
    font-size: 1.1rem;
}

.topbar-social .fa-youtube { color: #e52d27; }
.topbar-social .fa-instagram { color: #E1306C; }
.topbar-social .fa-whatsapp { color: #25D366; }

/* =========================================
   WhatsApp Float Button
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: #FFF;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    color: #FFF;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
    background: linear-gradient(135deg, #1bd741, #25d366);
}