/* ============================================
   CSS RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f7f6f3;
    --bg-card: #ffffff;
    --bg-card-hover: #faf9f7;
    --bg-dark: #0c1b33;
    --bg-dark-secondary: #112240;
    --text-primary: #1a1a2e;
    --text-secondary: #555566;
    --text-muted: #8c8c9a;
    --text-on-dark: #ffffff;
    --text-on-dark-secondary: #b0b8cc;
    --gold: #b8953e;
    --gold-light: #c9a84c;
    --gold-dark: #9a7d32;
    --border: #e4e2dd;
    --border-light: #eae8e3;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --max-width: 1200px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul { list-style: none; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

/* Stagger children animations */
.stagger-children .fade-in-up:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-in-up:nth-child(2) { transition-delay: 0.15s; }
.stagger-children .fade-in-up:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .fade-in-up:nth-child(4) { transition-delay: 0.45s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subheading {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 24px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: #ffffff;
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(184, 149, 62, 0.3);
}

.btn-navy {
    background: var(--bg-dark);
    color: #ffffff;
}

.btn-navy:hover {
    background: var(--bg-dark-secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(12, 27, 51, 0.3);
}

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

.btn-outline:hover {
    border-color: var(--bg-dark);
    color: var(--bg-dark);
}

.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-pill {
    border-radius: 100px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

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

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: auto;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-logo span {
    color: var(--gold);
}

/* Hero state: light text */
.nav:not(.scrolled) .nav-logo {
    color: #ffffff;
}

.nav:not(.scrolled) .menu-toggle {
    color: #ffffff;
}

.nav:not(.scrolled) .menu-toggle-icon span {
    background: #ffffff;
}

.nav:not(.scrolled) .nav-cta {
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.3) !important;
    background: transparent !important;
}

.nav:not(.scrolled) .nav-cta:hover {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

/* Menu Toggle Button (always visible) */
.menu-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    z-index: 1001;
    padding: 0;
}

.menu-toggle svg {
    flex-shrink: 0;
}

.menu-toggle > span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav:not(.scrolled) .menu-toggle svg {
    stroke: #ffffff;
}

/* Nav CTA - pill style */
.nav-cta {
    padding: 10px 28px !important;
    font-size: 0.8rem !important;
    color: #ffffff !important;
    background: var(--bg-dark) !important;
    border-radius: 24px !important;
    border: 1px solid var(--bg-dark) !important;
    transition: all var(--transition) !important;
}

.nav.scrolled .nav-cta {
    color: #ffffff !important;
    background: var(--bg-dark) !important;
    border-color: var(--bg-dark) !important;
}

.nav-cta:hover {
    background: var(--bg-dark-secondary) !important;
}

/* Legacy nav-links hidden (replaced by fullscreen menu) */
.nav-links {
    display: none;
}

/* Legacy hamburger hidden */
.nav-hamburger {
    display: none;
}

/* Legacy mobile nav hidden */
.nav-mobile {
    display: none;
}

/* ============================================
   FULLSCREEN MENU OVERLAY
   ============================================ */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 1002;
    background: rgba(8, 16, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

/* Hide main nav when menu is open */
.fullscreen-menu.active ~ .nav,
body.menu-open .nav {
    pointer-events: none;
    opacity: 0;
}

/* Menu Header — mirrors main nav layout */
.fullscreen-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px clamp(24px, 4vw, 60px);
    max-width: 1400px;
    margin: 0 auto;
}

.fullscreen-menu-header {
    position: relative;
}

.fullscreen-menu-header .nav-logo {
    color: #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.fullscreen-menu-header .nav-cta {
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.3) !important;
    background: transparent !important;
}

.fullscreen-menu-header .nav-cta:hover {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

.menu-close {
    color: #ffffff;
}

.menu-close svg {
    stroke: #ffffff;
}

/* Menu Body — two-part grid */
.fullscreen-menu-body {
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px clamp(24px, 4vw, 60px) 60px;
}

/* Featured Solutions — left column */
.menu-featured {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-column-title {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 4px;
}

.menu-featured-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    transition: background 0.25s ease;
    text-decoration: none;
}

.menu-featured-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.menu-featured-thumb {
    width: 72px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.menu-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-featured-text h5 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 4px;
}

.menu-featured-text p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* Link Columns — right side */
.menu-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-column ul li a {
    display: block;
    padding: 8px 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color var(--transition);
}

.menu-column ul li a:hover {
    color: #ffffff;
}

/* Social Icons in Menu */
.menu-social {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 24px;
}

.menu-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all var(--transition);
}

.menu-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--text-on-dark);
}

.hero .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        url('https://images.unsplash.com/photo-1541322841511-e0aed2019f2a?w=1920&q=80&fit=crop') center/cover no-repeat;
    z-index: 0;
}

/* Dark navy overlay for readability + premium feel */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(12, 27, 51, 0.88) 0%, rgba(17, 34, 64, 0.82) 40%, rgba(12, 27, 51, 0.90) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content--left {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-on-dark-secondary);
    margin-bottom: 32px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-on-dark-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 16px 36px;
    border-radius: 24px;
}

.hero-buttons .btn-outline-light {
    border: 1px solid rgba(255,255,255,0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-indicator {
    color: var(--text-on-dark-secondary);
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-light), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg-primary);
}

.trust-bar-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.trust-bar-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-bar-logos span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
    transition: color var(--transition);
    white-space: nowrap;
}

.trust-bar-logos span:hover {
    color: var(--text-primary);
}

/* Vertical separator */
.trust-bar-logos span:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 16px;
    background: var(--border);
    margin-left: 48px;
    vertical-align: middle;
}

/* ============================================
   THREE PILLARS
   ============================================ */
.pillars { background: var(--bg-secondary); }

.pillars-image {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 64px;
}

.pillars-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pillars-header {
    text-align: center;
    margin-bottom: 64px;
}

.pillars-header .section-subheading {
    margin: 0 auto;
}

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

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 48px 36px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.pillar-card:hover {
    background: var(--bg-card);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--gold);
    background: rgba(184, 149, 62, 0.1);
}

.pillar-step {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.pillar-card p {
    color: var(--text-secondary);
    font-size: 0.925rem;
    line-height: 1.7;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

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

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-on-dark-secondary);
    line-height: 1.5;
}

/* ============================================
   VISA SOLUTIONS
   ============================================ */
.visas { background: var(--bg-primary); }


.visas-header {
    text-align: center;
    margin-bottom: 64px;
}

.visas-header .section-subheading {
    margin: 0 auto;
}

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

.visa-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 36px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.visa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.visa-card:hover {
    background: var(--bg-card);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

.visa-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.25rem;
    margin-bottom: 24px;
    background: rgba(184, 149, 62, 0.1);
    border: none;
    color: var(--gold);
}

.visa-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.visa-card p {
    color: var(--text-secondary);
    font-size: 0.925rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.visa-card .learn-more {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.visa-card:hover .learn-more {
    gap: 10px;
}

/* ============================================
   PROPERTY SECTION
   ============================================ */
/* ============================================
   IMAGE BANNER
   ============================================ */
.image-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(12, 27, 51, 0.75) 0%, rgba(12, 27, 51, 0.55) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-banner-content {
    text-align: center;
    color: #ffffff;
    padding: 0 24px;
}

.image-banner-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    margin-bottom: 12px;
    font-style: italic;
}

.image-banner-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto;
}

.property {
    background: var(--bg-secondary);
}

.property-header {
    text-align: center;
    margin-bottom: 64px;
}

.property-header .section-subheading {
    margin: 0 auto;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.property-card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all var(--transition);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.property-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.property-card-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

/* Property images */
.property-card .property-card-image {
    background-size: cover;
    background-position: center;
}

.property-card:nth-child(1) .property-card-image {
    background-image: url('https://images.unsplash.com/photo-1683551739934-a25185351214?w=800&q=80&fit=crop');
}

.property-card:nth-child(2) .property-card-image {
    background-image: url('https://images.unsplash.com/photo-1615672337780-6e19a28a5b39?w=800&q=80&fit=crop');
}

.property-card:nth-child(3) .property-card-image {
    background-image: url('https://images.unsplash.com/photo-1658437192420-13cd43bbe2bd?w=800&q=80&fit=crop');
}

.property-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}

.property-card-location {
    position: absolute;
    bottom: 16px;
    left: 20px;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
}

.property-card-body {
    padding: 24px 20px;
}

.property-card-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.property-card-body .learn-more {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.property-card:hover .learn-more {
    gap: 10px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--bg-primary); }

.testimonials-image {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 64px;
}

.testimonials-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}


.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 32px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.testimonial-author-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.testimonial-author-origin {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   CTA / CONTACT SECTION
   ============================================ */
.contact {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.contact-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-header .section-subheading {
    margin: 0 auto;
    color: var(--text-on-dark-secondary);
}

.contact .section-heading {
    color: var(--text-on-dark);
}

.contact .section-label {
    color: var(--gold-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-on-dark-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #ffffff;
    transition: border-color var(--transition);
    outline: none;
    width: 100%;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23b0b8cc'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-dark);
    color: #ffffff;
}

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

.contact-form .btn-gold {
    width: 100%;
    padding: 16px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.contact-info {
    padding-top: 8px;
}

.contact-info-item {
    margin-bottom: 36px;
}

.contact-info-item h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.95rem;
    color: var(--text-on-dark-secondary);
    line-height: 1.8;
    transition: color var(--transition);
}

.contact-info-item a:hover {
    color: var(--gold-light);
}

.contact-offices {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-offices span {
    font-size: 0.9rem;
    color: var(--text-on-dark-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-offices span::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #081425;
    color: var(--text-on-dark);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-on-dark-secondary);
    line-height: 1.6;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    color: var(--text-on-dark-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-on-dark);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 0.85rem;
    color: var(--text-on-dark-secondary);
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
}

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

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}

.footer-legal-links a:hover {
    color: var(--text-on-dark-secondary);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.7;
    max-width: 900px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .pillars-grid,
    .testimonials-grid,
    .property-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    #ifici .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .fullscreen-menu-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .menu-columns {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .menu-featured {
        display: none;
    }

    .fullscreen-menu-header .nav-cta {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .trust-bar-logos {
        gap: 24px;
    }

    .trust-bar-logos span::after {
        display: none !important;
    }

    .pillars-grid,
    .visas-grid,
    .testimonials-grid,
    .property-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .trust-bar-logos {
        flex-direction: column;
        gap: 16px;
    }
}

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */
.breadcrumb {
    padding: 24px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 8px;
    color: var(--text-muted);
}

/* ============================================
   PAGE HEADER (for subpages)
   ============================================ */
.page-header {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    padding: 140px 0 80px;
    text-align: center;
}

.page-header .section-label {
    color: var(--gold-light);
}

.page-header .section-heading {
    color: var(--text-on-dark);
    max-width: 700px;
    margin: 0 auto 20px;
}

.page-header .section-subheading {
    color: var(--text-on-dark-secondary);
    margin: 0 auto;
    max-width: 600px;
}

/* ============================================
   CONTENT SECTIONS (for subpages)
   ============================================ */
.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: var(--bg-secondary);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.content-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-text ul {
    list-style: none;
    margin: 20px 0;
}

.content-text ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.content-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.content-image {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   CTA BANNER (reusable across pages)
   ============================================ */
.cta-banner {
    background: var(--bg-dark);
    padding: 80px 0;
    text-align: center;
    color: var(--text-on-dark);
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 16px;
}

.cta-banner p {
    color: var(--text-on-dark-secondary);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* ============================================
   FEATURE LIST (for service pages)
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all var(--transition);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.feature-card .feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.25rem;
    margin-bottom: 20px;
    background: rgba(184, 149, 62, 0.1);
    color: var(--gold);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   PROCESS STEPS (for visa pages)
   ============================================ */
.process-steps {
    counter-reset: step;
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.process-step:last-child {
    border-bottom: none;
}

.process-step-number {
    counter-increment: step;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    color: var(--gold-light);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   NEWSLETTER SIGNUP
   ============================================ */
.newsletter {
    background: var(--bg-secondary);
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.newsletter-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input[type="email"] {
    padding: 12px 20px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--bg-card);
    color: var(--text-primary);
    min-width: 280px;
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--gold);
}

.newsletter-form button {
    padding: 12px 28px;
    white-space: nowrap;
}

/* ============================================
   RESPONSIVE - SUBPAGE ADDITIONS
   ============================================ */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input[type="email"] {
        min-width: 100%;
    }

    .process-step {
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }
}