* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --maroon-deep: #1a0102;
    /* Ebony Maroon - Extremely Dark */
    --maroon-dark: #0f0000;
    /* Deepest Shadow */
    --cream-rich: #FDF5E6;
    /* High-end Old Lace Cream */
    --cream-soft: rgba(253, 245, 230, 0.8);
    /* Translucent Cream */
    --gold-leaf: #C5A028;
    /* Muted Premium Gold */

    --midnight: var(--maroon-deep);
    --pearl: var(--cream-rich);
    --silver: var(--cream-soft);
    --gold: var(--gold-leaf);
    --accent-blue: var(--cream-rich);

    --gradient-primary: radial-gradient(circle at center, #240001 0%, #1a0102 100%);
    --gradient-gold: linear-gradient(135deg, #FDF5E6 0%, #C5A028 100%);

    --pastel-pink: #4A0404;
    --pastel-mint: #3D0000;
    --pastel-blue: #F5EBD0;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--midnight);
    color: var(--pearl);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 1.1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    color: var(--pearl);
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
}


/* Unique Animated Background with World Map */
.background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.world-map-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(245, 235, 208, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    animation: worldPulse 20s ease-in-out infinite;
}

@keyframes worldPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.aurora-layer {
    position: absolute;
    width: 200%;
    height: 200%;
    background:
        linear-gradient(45deg, transparent 30%, rgba(245, 235, 208, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    animation: auroraMove 40s ease-in-out infinite;
}

@keyframes auroraMove {

    0%,
    100% {
        transform: translate(-25%, -25%) rotate(0deg);
    }

    50% {
        transform: translate(-30%, -30%) rotate(180deg);
    }
}

.constellation-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(45, 52, 54, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(167, 199, 231, 0.3);
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 199, 231, 0.2), transparent);
    transform-origin: left center;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.6;
    }
}

/* Navigation Styles */
.logo-container {
    display: block;
    padding: 10px 0;
    text-decoration: none;
}

.logo-img {
    max-height: 95px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.footer-logo {
    max-height: 70px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.logo-container:hover .logo-img {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
}

#navbar.scrolled {
    padding: 1rem 0;
    background: rgba(26, 1, 2, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(253, 245, 230, 0.15);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--pearl);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-blue);
}


.nav-cta-btn {
    background: var(--gradient-gold);
    color: #000000 !important;
    padding: 0.9rem 2.5rem;
    border-radius: 0;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(167, 199, 231, 0.3);
    border: none;
}

.nav-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(167, 199, 231, 0.5);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section - Diagonal Split Design */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 3rem 0;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 245, 230, 0.05) 0%, transparent 100%);
    transform: skewX(-15deg);
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(253, 245, 230, 0.08);
    border: 1px solid var(--pearl);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--pearl);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    margin-top: 15px;
    color: var(--pearl);
}

.title-line {
    display: block;
    line-height: inherit;
}



@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 140px;
        padding-bottom: 4rem;
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-top: 10px;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        height: 320px;
    }

    .globe {
        width: 280px;
        height: 280px;
    }

    .orbit-1 {
        width: 320px;
        height: 320px;
    }

    .orbit-2 {
        width: 380px;
        height: 380px;
    }

    .nav-wrapper {
        padding: 0 1.5rem;
    }

    .logo-img {
        max-height: 60px;
    }
}




.hero-title .char {
    display: inline-block;
    opacity: 0;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--silver);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 1s ease 1s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.3s both;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000000 !important;
    padding: 1.2rem 3rem;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    border: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 20px rgba(167, 199, 231, 0.2);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: var(--pearl);
    color: var(--maroon-deep) !important;
    padding: 1.2rem 3rem;
    border: none;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 450px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s both;
}

.globe-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(167, 199, 231, 0.2) 0%, transparent 70%);
    border: 2px solid rgba(167, 199, 231, 0.3);
    position: relative;
    animation: globeRotate 30s linear infinite;
    box-shadow:
        inset 0 0 50px rgba(167, 199, 231, 0.1),
        0 0 80px rgba(167, 199, 231, 0.2);
}

@keyframes globeRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(167, 199, 231, 0.3);
    border-radius: 50%;
    animation: orbitRotate 20s linear infinite;
}

.orbit-1 {
    width: 450px;
    height: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-2 {
    width: 520px;
    height: 520px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(60deg);
    animation-duration: 25s;
}

@keyframes orbitRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.country-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--pearl);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--pearl);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Trust Metrics - Diagonal Cards */
.metrics {
    padding: 3rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.metric-card {
    background: rgba(253, 245, 230, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(253, 245, 230, 0.1);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(167, 199, 231, 0.1), transparent);
    transition: left 0.5s ease;
}

.metric-card:hover::before {
    left: 100%;
}

.metric-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(167, 199, 231, 0.2);
}

.metric-number {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--silver);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Services Section - Hexagonal Grid */
.services {
    padding: 3rem 3rem;
    background: linear-gradient(180deg, transparent 0%, rgba(74, 144, 226, 0.03) 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--accent-blue);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
}

.section-title .gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: var(--silver);
    line-height: 1.8;
}

.services-container {
    max-width: 1600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.service-card {
    background: var(--cream-rich);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(57, 1, 2, 0.1);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card .service-title {
    color: var(--maroon-deep);
}

.service-card .service-description {
    color: #4A0404;
    opacity: 0.9;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--maroon-deep);
    box-shadow: 0 20px 60px rgba(57, 1, 2, 0.1);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
}

.service-card:hover::after {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.service-card .country-flag {
    width: 80px;
    margin: 0 0 1.5rem 0;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(45deg) scale(1.1);
}

.service-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--pearl);
}

.service-description {
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Countries Section - Premium Cards */
.countries {
    padding: 3rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

@media (max-width: 1024px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: 1fr;
    }
}

.country-card {
    background: rgba(61, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 235, 208, 0.1);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.country-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.country-card:hover::before {
    width: 400px;
    height: 400px;
}


.country-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.2);
}

.country-flag {
    width: 100px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.country-card:hover .country-flag {
    transform: scale(1.3) rotateY(180deg);
}

.country-name {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--pearl);
    position: relative;
    z-index: 1;
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.visa-list {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.visa-list li {
    color: var(--silver);
    padding: 0.7rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.visa-list li:hover {
    color: var(--gold);
    padding-left: 10px;
}

.visa-list li::before {
    content: "✦";
    color: var(--accent-blue);
    margin-right: 0.8rem;
    font-size: 0.8rem;
}

.country-cta {
    background: transparent;
    color: var(--deep-navy);
    border: 2px solid var(--accent-blue);
    padding: 0.8rem 2rem;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    margin-top: auto;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.country-cta:hover {
    background: var(--gradient-gold);
    color: #000000;
}

/* Education Section */
.education {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, rgba(74, 144, 226, 0.03) 0%, transparent 100%);
}

.education-container {
    max-width: 1600px;
    margin: 0 auto;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.education-card {
    background: rgba(61, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 235, 208, 0.15);
    padding: 4rem 3rem;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: right 0.5s ease;
}

.education-card:hover::before {
    right: 100%;
}

.education-card:hover {
    transform: translateX(10px);
    border-color: var(--gold);
    box-shadow: -10px 10px 50px rgba(212, 175, 55, 0.15);
}

.education-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: #000000;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.education-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.education-features {
    list-style: none;
}

.education-features li {
    color: var(--silver);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.education-features li:hover {
    color: var(--gold);
    padding-left: 15px;
}

.education-description {
    color: var(--silver);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.education-features li::before {
    content: "◆";
    color: var(--accent-blue);
    margin-right: 1rem;
}

/* Journey Section */
.journey {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, rgba(74, 144, 226, 0.03) 0%, transparent 100%);
}

.journey-container {
    max-width: 1000px;
    margin: 0 auto;
}

.journey-list {
    position: relative;
    padding-left: 2rem;
    margin-top: 4rem;
}

.journey-list::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: 0.3;
}

.journey-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 3rem;
}

.journey-dot {
    position: absolute;
    left: -1rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    background: var(--gradient-gold);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gold);
    z-index: 1;
}

.journey-year {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.journey-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--pearl);
}

.journey-text {
    color: var(--silver);
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 800px;
}

.journey-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .journey {
        padding: 4rem 1.5rem;
    }

    .journey-list {
        padding-left: 1.5rem;
    }

    .journey-item {
        padding-left: 2rem;
        margin-bottom: 3rem;
    }

    .journey-year {
        font-size: 2rem;
    }

    .journey-title {
        font-size: 1.4rem;
    }
}


/* FAQ Section */
.faq {
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container {
    margin-top: 2.5rem;
}

.faq-item {
    background: rgba(61, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 235, 208, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 98% 100%, 0 100%);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--pearl);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--silver);
    line-height: 1.9;
    font-size: 1.05rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Blog Section */
.blog {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, transparent 0%, rgba(74, 144, 226, 0.03) 100%);
}

.blog-container {
    max-width: 1600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.blog-card {
    background: rgba(61, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 235, 208, 0.1);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.blog-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--midnight) 0%, var(--slate) 100%);
    position: relative;
    overflow: hidden;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.blog-card:hover .blog-image::after {
    background: rgba(0, 0, 0, 0.1);
}

.blog-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gradient-gold);
    color: #000000;
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    z-index: 1;
}

.blog-content {
    padding: 2.5rem;
}

.blog-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--pearl);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--gold);
}

.blog-excerpt {
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: auto;
}

.blog-date {
    color: var(--silver);
    font-size: 0.9rem;
}

.blog-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    letter-spacing: 2px;
}

/* Contact Section */
.contact {
    padding: 2rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item {
    background: rgba(61, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 235, 208, 0.1);
    padding: 2.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 95% 100%, 0 100%);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-item:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-label {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.contact-detail {
    color: var(--silver);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-detail a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--gold);
}

.map-container {
    padding: 1rem !important;
    height: auto !important;
    position: relative;
}

.map-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}


.map-container iframe {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.01);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}


.contact-form {
    background: rgba(45, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 235, 208, 0.15);
    padding: 3rem;
    clip-path: polygon(0 0, 100% 0, 100% 97%, 97% 100%, 0 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    color: var(--pearl);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background: rgba(61, 0, 0, 0.5);
    border: 1px solid rgba(245, 235, 208, 0.2);
    padding: 1rem 1.5rem;
    color: var(--pearl);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    width: 100%;
    background: var(--gradient-gold);
    color: #FFFFFF;
    padding: 1.2rem;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(167, 199, 231, 0.3);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Footer */
footer {
    background: #1a0202;
    border-top: 1px solid rgba(245, 235, 208, 0.1);
    padding: 4rem 3rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.footer-about h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about p {
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(245, 235, 208, 0.05);
    border: 1px solid rgba(245, 235, 208, 0.2);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--pearl);
}

.social-link:hover {
    background: var(--gradient-gold);
    transform: rotate(45deg) scale(1.1);
}

.footer-section h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--silver);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-blue);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(167, 199, 231, 0.2);
    color: var(--silver);
}

.footer-bottom a {
    color: var(--accent-blue);
    text-decoration: none;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .education-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(45, 0, 0, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 8rem 2rem 3rem;
        gap: 1.5rem;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        align-items: center;
        text-align: center;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered delay for menu items */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links.active li:nth-child(7) {
        transition-delay: 0.4s;
    }

    .nav-links a {
        font-size: 1.5rem;
        width: 100%;
        display: block;
        padding: 1rem;
    }

    /* Mobile Dropdown Adjustments */
    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0.5rem 0 0 1.5rem;
    }

    .dropdown-menu li a {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }


    .services-grid,
    .countries-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        text-align: center;
        width: 100%;
    }






    .education,
    .faq,
    .blog,
    .contact,
    .countries {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}



@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .nav-wrapper {
        padding: 1.5rem 1.5rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }
}

/* Steps Section */
.steps {
    padding: 8rem 3rem;
    background: linear-gradient(180deg, transparent 0%, rgba(61, 0, 0, 0.05) 100%);
}

.steps-container {
    max-width: 1400px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    justify-content: center;
}

.step-card {
    background: rgba(61, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 3.5rem 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-card:hover {
    background: rgba(61, 0, 0, 0.6);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.step-number {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
}

.step-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--pearl);
    position: relative;
    z-index: 1;
}

.step-text {
    color: var(--silver);
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .steps {
        padding: 4rem 2rem;
    }
}

/* Nested Dropdown Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -5px;
    margin-left: 10px;
}

.dropdown-submenu:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Rotate arrow on hover for submenu */
.dropdown-submenu:hover>.dropdown-toggle::after {
    transform: rotate(-90deg);
}

.dropdown-submenu .dropdown-toggle::after {
    content: '▶';
    font-size: 0.7rem;
    margin-left: auto;
    transition: transform 0.3s ease;
}

/* Programs Explorer - Interactive Grid */
.programs-explorer {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
    background: rgba(45, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 3rem;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 98% 100%, 0 100%);
    align-items: stretch;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.program-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.program-btn {
    background: rgba(61, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--silver);
    padding: 1rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
}

.program-btn:hover,
.program-btn.active {
    background: var(--gradient-gold);
    color: #000000;
    border-color: transparent;
    transform: translateX(5px);
    font-weight: 700;
}

.program-viewer {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.program-content {
    animation: fadeInContent 0.5s ease;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.viewer-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.viewer-text {
    color: var(--silver);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.viewer-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .programs-explorer {
        grid-template-columns: 1fr;
    }

    .program-viewer {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

/* Global Consultation Form */
.consultation-form-section {
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.consultation-form-container {
    background: rgba(45, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(167, 199, 231, 0.3);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 900px;
}

.consultation-form-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.consultation-header {
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.consultation-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--gold);
}

.consultation-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pearl);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.consultation-title span {
    color: var(--gold);
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .consultation-grid {
        grid-template-columns: 1fr;
        /* Switch to single column earlier for better readability */
    }
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-control {
    width: 100%;
    background: rgba(61, 0, 0, 0.6);
    border: 1px solid rgba(167, 199, 231, 0.4);
    padding: 1rem 1.2rem;
    color: var(--pearl);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
    color: rgba(245, 235, 208, 0.4);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    cursor: pointer;
    padding-right: 3rem;
    /* Added padding to prevent text overlap with arrow */
}

select.form-control option {
    background-color: #1a1a1a;
    color: var(--ivory);
    padding: 12px;
}

.submit-btn {
    background: var(--gradient-gold);
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1.2rem 3rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    letter-spacing: 1.5px;
    font-size: 1rem;
    display: inline-block;
    border-radius: 4px;
    width: auto;
}

.submit-btn:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .consultation-grid {
        grid-template-columns: 1fr;
    }

    .consultation-form-section {
        padding: 4rem 1.5rem;
    }

    .consultation-title {
        font-size: 2rem;
    }
}

/* Floating Action Button for Mobile */
.mobile-fab {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

@media (max-width: 768px) {
    .mobile-fab {
        display: block;
        animation: fabBounce 2s infinite;
    }

    .fab-link {
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
    }

    .fab-btn {
        background: var(--gradient-gold);
        color: var(--deep-navy);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
        border: none;
        cursor: pointer;
        position: relative;
    }

    @keyframes fabBounce {

        0%,
        100% {
            transform: translateY(0);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
        }

        50% {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(167, 199, 231, 0.6), 0 0 20px rgba(167, 199, 231, 0.4);
        }
    }

    .fab-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50%;
        background: var(--gold);
        opacity: 0.3;
        z-index: -1;
        animation: fabPulse 2s ease-out infinite;
    }

    @keyframes fabPulse {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }

        100% {
            transform: scale(1.6);
            opacity: 0;
        }
    }

    .fab-label {
        position: static;
        transform: none;
        background: rgba(45, 0, 0, 0.9);
        color: var(--accent-blue);
        padding: 0.6rem 1.2rem;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 700;
        white-space: nowrap;
        border: 1px solid var(--accent-blue);
        pointer-events: none;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }

    /* Touch targets optimization */
    .btn-primary,
    .btn-secondary,
    .nav-cta-btn,
    .submit-btn,
    .country-cta {
        padding: 1rem 2rem;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-item {
        padding: 1.5rem;
    }
}