/* ==========================================================================
   RAVINDER SINGH - INTERNATIONAL CAREER COACH & GLOBAL MOBILITY ADVISOR
   Custom Stylesheet (HTML5, Vanilla CSS3 & PHP Dynamic Integration)
   ========================================================================== */

:root {
    --navy-deep: #0B132B;
    --navy-main: #1C2541;
    --navy-card: #151D33;
    --navy-dark: #070B19;
    
    --gold-primary: #C5A059;
    --gold-light: #E0C078;
    --gold-dark: #9E7D3B;
    --gold-bg: #FDFBF7;
    --gold-border: #E8D9B5;
    
    --text-primary: #1E293B;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --text-light: #F8FAFC;
    
    --bg-light: #F8FAF8;
    --bg-warm: #FAF9F6;
    --bg-white: #FFFFFF;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(11, 19, 43, 0.05);
    --shadow-md: 0 8px 24px rgba(11, 19, 43, 0.08);
    --shadow-lg: 0 16px 40px rgba(11, 19, 43, 0.12);
    --shadow-gold: 0 8px 25px rgba(197, 160, 89, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.65;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy-deep);
    line-height: 1.25;
    font-weight: 700;
}

.text-gold { color: var(--gold-primary) !important; }
.text-whatsapp { color: #25D366 !important; }
.text-muted { color: var(--text-muted); }

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 96px 0;
}

.bg-light {
    background-color: var(--bg-warm);
}

.bg-navy {
    background-color: var(--navy-deep);
    color: var(--text-light);
}

.bg-navy h2, .bg-navy h3, .bg-navy h4 {
    color: var(--text-light);
}

/* Section Header Component */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px auto;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--navy-deep);
    margin-bottom: 16px;
}

.bg-navy .section-title {
    color: var(--text-light);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.bg-navy .section-desc {
    color: #94A3B8;
}

/* Buttons Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    color: var(--navy-dark);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: #FFF;
}

.btn-outline-navy {
    background: transparent;
    border-color: var(--navy-deep);
    color: var(--navy-deep);
}

.btn-outline-navy:hover {
    background-color: var(--navy-deep);
    color: #FFF;
}

.btn-outline-gold {
    background: transparent;
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline-gold:hover {
    background-color: var(--gold-primary);
    color: var(--navy-dark);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFF;
}

.btn-whatsapp:hover {
    background-color: #1EBE5D;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT & HEADER NAVIGATION
   ========================================================================== */
.top-bar {
    background-color: var(--navy-dark);
    color: #CBD5E1;
    font-size: 0.82rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.top-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #CBD5E1;
}

.top-link:hover {
    color: var(--gold-light);
}

/* Header Navbar */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(11, 19, 43, 0.06);
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 4px 0;
    box-shadow: 0 8px 24px rgba(11, 19, 43, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--navy-deep);
}

.brand-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--navy-deep);
}

.brand-sub {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-dark);
}

/* Navigation Links */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 6px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-dark);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy-deep);
    cursor: pointer;
    padding: 4px;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 80px 0 100px 0;
    background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, #FFFFFF 0%, var(--bg-warm) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background-color: var(--gold-bg);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-dark);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.2rem;
    color: var(--navy-deep);
    line-height: 1.18;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--gold-primary);
    position: relative;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 620px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gold-bg);
    border: 1px solid var(--gold-border);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.trust-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy-deep);
}

.trust-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Hero Media Column */
.hero-media-wrapper {
    position: relative;
}

.hero-img-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #FFF;
}

.hero-img-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

/* Floating Badges on Hero Image */
.floating-card-experience {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: rgba(11, 19, 43, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: #FFF;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.floating-card-experience .exp-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.floating-card-experience .exp-label {
    font-size: 0.82rem;
    line-height: 1.3;
}

.floating-card-experience .exp-label strong {
    display: block;
    color: #FFF;
}

.floating-badge-mea {
    position: absolute;
    top: 24px;
    right: -20px;
    background: #FFF;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--gold-primary);
    z-index: 2;
}

.floating-badge-mea i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.floating-badge-mea span {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1.2;
}

/* Stats Counter Banner Section */
.stats-banner {
    background-color: var(--navy-dark);
    padding: 48px 0;
    color: #FFF;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 0 16px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.12);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==========================================================================
   3. ABOUT ME SECTION
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.about-img-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-quote-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 19, 43, 0.95) 100%);
    padding: 32px 24px 24px 24px;
    color: #FFF;
}

.about-quote-box p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--gold-light);
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.highlight-box-mea {
    background-color: var(--gold-bg);
    border-left: 4px solid var(--gold-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin: 28px 0;
}

.highlight-box-mea h4 {
    font-size: 1.1rem;
    color: var(--navy-deep);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box-mea p {
    font-size: 0.92rem;
    margin-bottom: 0;
    color: var(--text-body);
}

/* Countries Tag Cloud */
.countries-visited-cloud {
    margin-top: 24px;
}

.countries-visited-cloud h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.country-tag {
    background-color: #E2E8F0;
    color: var(--navy-deep);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.country-tag i {
    color: var(--gold-dark);
}

/* ==========================================================================
   4. CREDENTIALS & RECOGNITION SECTION
   ========================================================================== */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.credential-card {
    background-color: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    gap: 24px;
    transition: var(--transition);
}

.credential-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.credential-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.2) 0%, rgba(197, 160, 89, 0.05) 100%);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.credential-content h3 {
    font-size: 1.25rem;
    color: #FFF;
    margin-bottom: 10px;
}

.credential-content p {
    font-size: 0.95rem;
    color: #94A3B8;
    line-height: 1.5;
}

/* ==========================================================================
   5. AREAS OF EXPERTISE (SERVICES)
   ========================================================================== */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.expertise-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    opacity: 0;
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-border);
}

.expertise-card:hover::before {
    opacity: 1;
}

.exp-icon-box {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    background-color: var(--gold-bg);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    border: 1px solid var(--gold-border);
}

.exp-title {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.exp-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.exp-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
}

.exp-feature-list {
    margin-bottom: 28px;
    padding-top: 16px;
    border-top: 1px stroke #F1F5F9;
}

.exp-feature-list li {
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.exp-feature-list li i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.btn-card-action {
    width: 100%;
    margin-top: auto;
}

/* ==========================================================================
   6. WHY WORK WITH ME (VALUE COMPARISON)
   ========================================================================== */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.why-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 16px rgba(11, 19, 43, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(11, 19, 43, 0.1);
    border-color: var(--gold-border);
}

.why-icon-box {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(11, 19, 43, 0.05) 100%);
    border: 2px solid var(--gold-border);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.15);
    transition: var(--transition);
    flex-shrink: 0;
}

.why-card:hover .why-icon-box {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    color: var(--gold-light);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 25px rgba(11, 19, 43, 0.3);
    transform: translateY(-3px) scale(1.05);
}

.why-content h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 6px;
    line-height: 1.3;
}

.why-highlight {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.why-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ==========================================================================
   7. GLOBAL PRESENCE / OFFICES
   ========================================================================== */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.office-card {
    background-color: var(--navy-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.office-flag-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.office-region {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.office-city {
    font-size: 1.8rem;
    color: #FFF;
    margin-bottom: 20px;
}

.office-details {
    margin-bottom: 32px;
}

.office-detail-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #CBD5E1;
}

.office-detail-item i {
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-top: 3px;
}

.office-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ==========================================================================
   8. CALL TO ACTION & CONTACT SECTION
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    color: #FFF;
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
    font-size: 2.2rem;
    color: #FFF;
    margin-bottom: 16px;
}

.contact-info-card p {
    font-size: 1.05rem;
    color: #CBD5E1;
    margin-bottom: 36px;
}

.direct-contact-list {
    margin-bottom: 40px;
}

.dc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.dc-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.dc-text span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94A3B8;
}

.dc-text a {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFF;
}

.dc-text a:hover {
    color: var(--gold-light);
}

/* Consultation Form Box */
.consultation-form-wrapper {
    background-color: #FFF;
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #E2E8F0;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--navy-deep);
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid #CBD5E1;
    border-radius: var(--radius-sm);
    background-color: #F8FAFC;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    background-color: #FFF;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.form-alert.success {
    background-color: #DEF7EC;
    color: #03543F;
    border: 1px solid #BCF0DA;
}

.form-alert.error {
    background-color: #FDE8E8;
    color: #9B1C1C;
    border: 1px solid #FBD5D5;
}

.alert-wa-btn {
    margin-top: 14px;
}

/* ==========================================================================
   9. FOOTER & FLOATING WIDGET
   ========================================================================== */
.site-footer {
    background-color: var(--navy-dark);
    color: #CBD5E1;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

/* On-Ground European Visits Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    background-color: var(--navy-card);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(7, 11, 25, 0.9) 0%, transparent 100%);
    padding: 24px 16px 14px 16px;
    color: #FFF;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   ON-GROUND EXPERIENCE SLIDER SECTION (FULL-WIDTH)
   ========================================================================== */
.full-width-slider {
    padding: 80px 0 90px 0;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-warm);
}

.flag-icon-img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: inline-block;
    vertical-align: middle;
}

.slide-flag-img {
    width: 36px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.experience-flags-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.flag-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--bg-white);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-deep);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: default;
}

.flag-chip:hover {
    transform: translateY(-2px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
    background-color: var(--gold-bg);
}

.slider-fullwidth-wrapper {
    position: relative;
    width: 100%;
    margin-top: 24px;
}

.slider-fullwidth-wrapper .slides-viewport {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.slides-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.full-display-slide {
    position: relative;
    min-width: 100%;
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    background-color: var(--bg-warm);
}

.slide-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.slide-card:hover .slide-bg-media img {
    transform: scale(1.04);
}

/* Black overlay removed completely */
.slide-overlay-gradient {
    display: none !important;
}

.slide-content-container {
    position: relative;
    z-index: 2;
    padding-top: 30px;
    padding-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.slide-glass-panel {
    max-width: 440px;
    background: rgba(7, 11, 25, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    color: #FFF;
    margin-left: auto;
}

.slide-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.slide-flag-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.slide-country-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #FFF;
    font-weight: 700;
}

.slide-headline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 6px;
    line-height: 1.35;
}

.slide-city-sub {
    font-size: 0.82rem;
    color: #94A3B8;
    font-weight: 600;
    margin-bottom: 10px;
}

.slide-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #CBD5E1;
    margin-bottom: 16px;
}

.slide-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-actions .btn {
    padding: 9px 18px;
    font-size: 0.85rem;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--navy-deep);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background-color: var(--gold-primary);
    color: var(--navy-dark);
    border-color: var(--gold-primary);
}

.slider-btn.prev {
    left: 24px;
}

.slider-btn.next {
    right: 24px;
}

.slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #CBD5E1;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--gold-primary);
    width: 36px;
    border-radius: 12px;
}

/* ==========================================================================
   SCHENGEN AREA MAP & MOBILITY COVERAGE SECTION
   ========================================================================== */
.schengen-map-section {
    position: relative;
    background: radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.12) 0%, transparent 65%),
                linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.schengen-map-wrapper {
    background: rgba(21, 29, 51, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.map-badge-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid var(--gold-border);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 32px;
    text-align: center;
}

.schengen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.schengen-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(7, 11, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    transition: var(--transition);
}

.schengen-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold-primary);
    background: rgba(11, 19, 43, 0.85);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.15);
}

.schengen-flag-box {
    flex-shrink: 0;
}

.schengen-flag-img {
    width: 38px;
    height: 25px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.schengen-info {
    display: flex;
    flex-direction: column;
}

.schengen-country-name {
    font-size: 1rem;
    font-weight: 700;
    color: #FFF;
    line-height: 1.2;
}

.schengen-capital {
    font-size: 0.78rem;
    color: #94A3B8;
    margin-top: 2px;
}

.schengen-visa-pill {
    font-size: 0.72rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-top: 4px;
}

.schengen-trust-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stb-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.stb-item i {
    font-size: 1.6rem;
}

.stb-item strong {
    display: block;
    color: #FFF;
    font-size: 0.9rem;
}

.stb-item span {
    font-size: 0.78rem;
    color: #94A3B8;
}
.footer-logo .brand-name {
    color: #FFF;
}

.footer-tagline {
    font-style: italic;
    font-size: 0.92rem;
    color: #94A3B8;
    margin: 20px 0;
    line-height: 1.5;
}

.footer-license-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.82rem;
}

.footer-heading {
    color: #FFF;
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--gold-primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94A3B8;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.social-links a:hover {
    background-color: var(--gold-primary);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 24px 0;
    font-size: 0.85rem;
    color: #64748B;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-sub-links {
    display: flex;
    gap: 20px;
}

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--navy-deep);
    color: #FFF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}

/* ==========================================================================
   RESPONSIVE LAYOUT & AESTHETICS (TABLET & MOBILE)
   ========================================================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-grid, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    /* Top Bar & Header Adjustments */
    .top-bar {
        display: none !important;
    }

    .main-header {
        height: 70px;
    }

    .header-inner {
        height: 70px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1.15rem;
    }

    .brand-name {
        font-size: 1.05rem;
    }

    .brand-sub {
        font-size: 0.62rem;
        letter-spacing: 1px;
    }

    .btn-header {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: var(--radius-sm);
        background-color: var(--bg-warm);
        color: var(--navy-deep);
        border: 1px solid rgba(11, 19, 43, 0.1);
        font-size: 1.25rem;
        transition: var(--transition);
    }

    .mobile-toggle:active {
        transform: scale(0.95);
        background-color: var(--gold-bg);
    }

    /* Glassmorphic Mobile Menu Drawer */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(7, 11, 25, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px 28px 36px 28px;
        border-bottom: 2px solid var(--gold-primary);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        transform: translateY(-160%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .nav-menu .nav-link {
        display: block;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.15rem;
        font-weight: 700;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        transition: var(--transition);
        border-left: 3px solid transparent;
    }

    .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
        color: var(--gold-light);
        background-color: rgba(255, 255, 255, 0.06);
        border-left-color: var(--gold-primary);
        padding-left: 20px;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    /* Section Spacing & Headings */
    .section-padding {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-subtitle {
        font-size: 0.78rem;
        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: clamp(1.65rem, 5.5vw, 2.1rem);
        margin-bottom: 12px;
    }

    .section-desc {
        font-size: 0.98rem;
    }

    /* Hero Section Mobile Polish */
    .hero-section {
        padding: 40px 0 60px 0;
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: clamp(1.85rem, 6.5vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-subheadline {
        font-size: 0.98rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
        font-size: 1rem;
    }

    .hero-trust-bar {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
        padding-top: 20px;
    }

    .trust-item {
        background-color: var(--bg-warm);
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(197, 160, 89, 0.15);
    }

    .hero-img-card {
        border-radius: var(--radius-md);
        box-shadow: 0 12px 30px rgba(11, 19, 43, 0.12);
    }

    .floating-card-experience, .floating-badge-mea {
        position: static;
        width: 100%;
        margin-top: 14px;
        border-radius: var(--radius-sm);
    }

    /* Slider Section Mobile Aesthetics */
    .full-display-slide {
        min-height: 520px;
        align-items: flex-end;
        justify-content: center;
    }

    .slide-content-container {
        padding: 16px;
        justify-content: center;
        width: 100%;
    }

    .slide-glass-panel {
        max-width: 100%;
        margin: 0 auto;
        padding: 20px 18px;
        border-radius: var(--radius-md);
    }

    .slide-country-title {
        font-size: 1.25rem;
    }

    .slide-headline {
        font-size: 1rem;
    }

    .slide-desc {
        font-size: 0.84rem;
        margin-bottom: 14px;
    }

    .slide-actions {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .slide-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .slider-btn.prev {
        left: 8px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-btn.next {
        right: 8px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Schengen Area Map Mobile Grid */
    .schengen-map-wrapper {
        padding: 20px 16px;
        border-radius: var(--radius-md);
    }

    .map-badge-header {
        font-size: 0.78rem;
        padding: 8px 14px;
        margin-bottom: 20px;
    }

    .schengen-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    .schengen-card {
        padding: 12px 14px;
        border-radius: var(--radius-sm);
    }

    .schengen-flag-img {
        width: 32px;
        height: 21px;
    }

    .schengen-country-name {
        font-size: 0.95rem;
    }

    .schengen-trust-banner {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stb-item {
        padding: 12px 16px;
    }

    /* Cards & Grids Mobile Reflow */
    .expertise-grid, .credentials-grid, .why-us-grid, .offices-grid, .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .expertise-card, .credential-card, .why-card, .office-card {
        padding: 20px 18px;
        border-radius: var(--radius-md);
    }

    .office-actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .office-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Consultation Form Mobile Styling */
    .consultation-form-wrapper {
        padding: 22px 18px;
        border-radius: var(--radius-md);
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .form-control {
        font-size: 16px; /* Prevents auto-zoom on iOS Safari */
        padding: 13px 16px;
        border-radius: 10px;
    }

    /* Footer Mobile */
    .site-footer {
        padding-top: 44px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* Floating WhatsApp Button Mobile Position */
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
        font-size: 1.65rem;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    }

    .wa-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 10px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .full-display-slide {
        min-height: 480px;
    }
}

/* ==========================================================================
   INTERACTIVE SCHENGEN AREA SVG MAP (LUXURY NAVY & GOLD AESTHETIC)
   ========================================================================== */
.schengen-map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.map-viewport {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #070B19 0%, #0F172A 50%, #151D33 100%);
    box-shadow: 0 20px 50px rgba(7, 11, 25, 0.4);
    border: 1px solid var(--gold-border);
}

.map-viewport svg {
    width: 100%;
    height: 100%;
    display: block;
    transform-origin: center;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.map-viewport .country {
    fill: #1E293B;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 1.2;
    stroke-linejoin: round;
    stroke-linecap: round;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    transform-box: fill-box;
    transform-origin: center;
}

.map-viewport .country.schengen {
    fill: var(--gold-primary);
    stroke: #070B19;
    filter: drop-shadow(0 3px 6px rgba(197, 160, 89, 0.3));
}

.map-viewport .country:hover {
    fill: #FDFBF7;
    stroke: var(--gold-primary);
    filter: drop-shadow(0 0 16px rgba(224, 192, 120, 0.8));
    transform: scale(1.02);
}

.map-viewport .country.active {
    fill: #E0C078;
    stroke: #FFF;
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.9));
}

.map-viewport .label {
    font-size: 11px;
    font-weight: 700;
    fill: #F8FAFC;
    font-family: var(--font-body);
    pointer-events: none;
    text-anchor: middle;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.9));
}

.map-viewport .controls {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.map-viewport .controls button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    color: var(--gold-light);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.map-viewport .controls button:hover {
    transform: translateY(-2px);
    background: var(--gold-primary);
    color: var(--navy-dark);
}

.map-viewport .legend {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(7, 11, 25, 0.92);
    backdrop-filter: blur(14px);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    font-size: 13px;
    border: 1px solid var(--gold-border);
    color: #FFF;
}

.map-viewport .key {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0;
    font-weight: 600;
    color: #CBD5E1;
}

.map-viewport .swatch {
    width: 18px;
    height: 12px;
    border-radius: 3px;
}

.map-viewport .info {
    position: absolute;
    top: 18px;
    right: 18px;
    min-width: 230px;
    max-width: 310px;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(16px);
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    display: none;
    border-left: 4px solid var(--gold-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #FFF;
    z-index: 4;
}

.map-viewport .info strong {
    display: block;
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.schengen-map-wrapper .count {
    margin-top: 20px;
    padding: 20px 28px;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gold-border);
    color: #CBD5E1;
    font-size: 0.98rem;
}

.schengen-map-wrapper .count strong {
    color: var(--gold-primary);
    font-size: 1.15rem;
}

@media (max-width: 700px) {
    .map-viewport { height: 440px; }
    .map-viewport .label { font-size: 8px; }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE OVERFLOW-X & HORIZONTAL SCROLL PREVENTION
   ========================================================================== */
*, *::before, *::after {
    max-width: 100%;
}

img, svg, video, canvas, iframe, object {
    max-width: 100%;
}

.container, .hero-grid, .about-grid, .stats-grid, .credentials-grid, 
.expertise-grid, .why-us-grid, .offices-grid, .contact-grid, .footer-grid, 
.gallery-grid, .schengen-map-wrapper, .slider-fullwidth-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Fix negative positioning on floating elements at tablet & laptop screens */
@media (max-width: 1280px) {
    .floating-card-experience {
        left: 0 !important;
    }
    .floating-badge-mea {
        right: 0 !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .floating-card-experience, .floating-badge-mea {
        position: static !important;
        width: 100% !important;
        margin-top: 12px !important;
        left: auto !important;
        right: auto !important;
    }

    .slider-btn.prev {
        left: 6px !important;
    }

    .slider-btn.next {
        right: 6px !important;
    }

    .map-viewport {
        height: 420px !important;
    }

    .map-viewport .legend {
        left: 10px !important;
        bottom: 10px !important;
        padding: 6px 10px !important;
        font-size: 11px !important;
        max-width: 60% !important;
    }

    .map-viewport .controls {
        right: 10px !important;
        bottom: 10px !important;
        gap: 4px !important;
    }

    .map-viewport .controls button {
        width: 34px !important;
        height: 34px !important;
        font-size: 16px !important;
    }

    .map-viewport .info {
        top: 10px !important;
        right: 10px !important;
        left: 10px !important;
        max-width: calc(100% - 20px) !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .experience-flags-bar {
        gap: 6px !important;
    }

    .flag-chip {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }
}
