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

/* ===== DESIGN TOKENS ===== */
:root {
    --navy-950: #040d1a;
    --navy-900: #061120;
    --navy-800: #0a1a30;
    --navy-700: #0d2240;
    --navy-600: #112a50;
    --gold-400: #d4a843;
    --gold-500: #c49730;
    --gold-600: #a8801e;
    --gold-glow: rgba(212, 168, 67, 0.25);
    --gold-glow-strong: rgba(212, 168, 67, 0.5);
    --white: #ffffff;
    --slate-100: #f1f5f9;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --glass-light: rgba(255, 255, 255, 0.04);
    --glass-medium: rgba(255, 255, 255, 0.08);
    --glass-dark: rgba(4, 13, 26, 0.92);
    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-accent: rgba(212, 168, 67, 0.35);
    --transition-fast: all 0.25s ease;
    --transition-smooth: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-lifted: 0 20px 60px rgba(0, 0, 0, 0.5);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--navy-950);
    color: var(--slate-300);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    color: var(--white);
    line-height: 1.25;
}

h1, h2, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h3, h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER ===== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-smooth);
    padding: 1.8rem 0;
}

#main-header.scrolled {
    background: var(--glass-dark);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: var(--white);
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
}

.logo-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: var(--gold-400);
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links li {
    position: relative;
}

.nav-links > li > a {
    display: block;
    padding: 0.5rem 1.1rem;
    color: var(--slate-300);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}

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

.nav-cta {
    margin-left: 1rem;
    padding: 0.55rem 1.6rem !important;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600)) !important;
    color: var(--navy-950) !important;
    border-radius: 2px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    transition: var(--transition-smooth) !important;
}

.nav-cta:hover {
    box-shadow: 0 0 20px var(--gold-glow-strong) !important;
    transform: translateY(-1px);
    color: var(--navy-950) !important;
}

/* ===== DROPDOWN ===== */
.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--navy-800);
    min-width: 260px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lifted);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 100;
    overflow: hidden;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    color: var(--slate-300);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--border-subtle);
}

.dropdown li:last-child a { border-bottom: none; }

.dropdown li a i {
    font-size: 0.8rem;
    color: var(--gold-400);
    width: 16px;
    text-align: center;
}

.dropdown li a:hover {
    background: rgba(212, 168, 67, 0.08);
    color: var(--gold-400);
    padding-left: 2rem;
}

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--slate-300);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 420px;
    background: var(--glass-dark);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-subtle);
    border-radius: 60px;
    padding: 10px 24px;
    z-index: 2000;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}

.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--slate-500);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    padding: 4px 8px;
    border-radius: 8px;
    gap: 4px;
}

.mobile-bottom-nav a i {
    font-size: 1.15rem;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
    color: var(--gold-400);
}

.mobile-bottom-nav a.active i {
    filter: drop-shadow(0 0 8px var(--gold-glow-strong));
    transform: translateY(-2px);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') center center / cover no-repeat;
    will-change: transform;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(4, 13, 26, 0.55) 0%,
        rgba(4, 13, 26, 0.35) 40%,
        rgba(4, 13, 26, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
    animation: heroFadeIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid var(--border-accent);
    border-radius: 60px;
    padding: 0.45rem 1.2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 2rem;
}

.hero-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 8px var(--gold-400);
    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.hero h1 span {
    color: var(--gold-400);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--slate-300);
    margin-bottom: 3rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--navy-950);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px var(--gold-glow-strong);
    color: var(--navy-950);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
    transform: translateY(-3px);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--navy-800);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 1rem 0;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--border-subtle);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--slate-400);
}

/* ===== SECTIONS BASE ===== */
.section {
    padding: 100px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold-400);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--slate-400);
    max-width: 560px;
    line-height: 1.8;
}

/* ===== SERVICES SECTION (PREMIUM ALTERNATING) ===== */
.services-section {
    padding: 120px 0;
    background: var(--navy-950);
}

.services-header {
    margin-bottom: 6rem;
    text-align: center;
}

.service-block {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 120px;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block:nth-child(even) {
    flex-direction: row-reverse;
}

.service-block-image {
    flex: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 520px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.service-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(0.9);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-block:hover .service-block-image img {
    transform: scale(1.05);
}

.service-block-content {
    flex: 1;
    padding: 40px 0;
}

.service-block-tag {
    display: inline-block;
    color: var(--gold-400);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.service-block-content h3 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: var(--font-fancy);
}

.service-block-content p {
    color: var(--blue-200);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.service-block-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.4);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-400);
    margin-bottom: 2rem;
}

.service-block-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 32px;
    border: 1px solid var(--gold-400);
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.service-block-cta:hover {
    background: var(--gold-400);
    color: var(--navy-950);
    box-shadow: 0 0 30px var(--gold-glow);
}

@media (max-width: 992px) {
    .service-block, .service-block:nth-child(even) {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .service-block-image {
        width: 100%;
        height: 380px;
    }
    
    .service-block-content h3 {
        font-size: 2rem;
    }
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    transition-delay: 0.05s;
}

.service-card:hover .service-content p {
    opacity: 1;
    transform: translateY(0);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-400);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link i {
    transition: transform 0.25s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    transition: var(--transition-smooth);
    z-index: 1;
}

.service-card:hover .service-number {
    color: rgba(212, 168, 67, 0.06);
}

/* ===== SERVICES GRID PAGE ===== */
.services-grid-section {
    padding: 80px 0 120px;
    background: var(--navy-950);
}

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

.service-card {
    position: relative;
    background: var(--navy-800);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
    background: var(--navy-700);
    box-shadow: var(--shadow-lifted);
}

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.8);
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
    filter: brightness(0.9) saturate(1);
}

.service-card-content {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-400);
    border: 1px solid var(--gold-500);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy-950);
    position: absolute;
    top: -25px;
    right: 2rem;
    transition: var(--transition-fast);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.service-card:hover .service-card-icon {
    background: var(--white);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', serif;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
}

.service-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-400);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.service-card-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-link i {
    transform: translateX(5px);
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 120px 0;
    background: var(--navy-900);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lifted);
}

.about-image-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) saturate(0.9);
}

.about-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    pointer-events: none;
}

.about-badge-left {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gold-400);
    color: var(--navy-950);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.about-badge-left .badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-badge-left .badge-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.about-content {}

.about-content p {
    color: var(--slate-400);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 0.97rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--glass-light);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.feature-item:hover {
    border-color: var(--border-accent);
    background: rgba(212, 168, 67, 0.04);
}

.feature-item i {
    font-size: 0.95rem;
    color: var(--gold-400);
    margin-top: 2px;
}

.feature-item span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--slate-300);
    line-height: 1.5;
}

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    padding: 200px 0 100px;
    overflow: hidden;
    text-align: center;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') center 30% / cover no-repeat;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(4, 13, 26, 0.7) 0%,
        rgba(4, 13, 26, 0.8) 100%
    );
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.breadcrumb::before, .breadcrumb::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold-400);
    opacity: 0.6;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    font-weight: 700;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0 100px;
    background: var(--navy-950);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: start;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--navy-800);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition-fast);
}

.contact-card:hover {
    border-color: var(--border-accent);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gold-400);
    flex-shrink: 0;
}

.contact-card-header h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--slate-400);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item i {
    font-size: 0.85rem;
    color: var(--gold-400);
    width: 16px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item-info {
    display: flex;
    flex-direction: column;
}

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

.contact-item-info .value {
    font-size: 0.9rem;
    color: var(--slate-300);
    font-weight: 400;
}

.contact-map-wrapper {
    background: var(--navy-800);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.contact-map-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-map-header i {
    color: var(--gold-400);
}

.contact-map-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.contact-map-header p {
    font-size: 0.8rem;
    color: var(--slate-500);
    margin-top: 2px;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(20%) contrast(1.05);
}

/* ===== FOOTER ===== */
footer {
    background: #020810;
    border-top: 1px solid var(--border-subtle);
}

.footer-main {
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.25rem;
    display: inline-flex;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.8;
    max-width: 340px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--glass-light);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
    background: rgba(212, 168, 67, 0.08);
}

.footer-col h5 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul a {
    font-size: 0.85rem;
    color: var(--slate-500);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-col ul a:hover {
    color: var(--gold-400);
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--slate-500);
}

.footer-contact-list i {
    color: var(--gold-400);
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-divider {
    height: 1px;
    background: var(--border-subtle);
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--slate-500);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.78rem;
    color: var(--slate-500);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--gold-400);
}

/* ===== ABOUT (subpage) ===== */
.about-section-sub {
    padding: 100px 0;
    background: var(--navy-950);
}

.about-grid-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* ===== SUBPAGE CONTENT ===== */
.subpage-section {
    padding: 100px 0;
}

.subpage-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 80px;
}

.subpage-intro img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lifted);
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: brightness(0.9) saturate(0.95);
}

.subpage-text-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.subpage-text-block p {
    color: var(--slate-400);
    font-size: 0.97rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),
                transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ANIMATIONS ===== */
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(0.8); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-frame img {
        height: 360px;
    }

    .about-badge-left {
        bottom: -10px;
        left: -10px;
    }

    .subpage-intro {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .about-grid-sub {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-bottom-nav {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        min-height: 360px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .page-header {
        padding: 160px 0 70px;
    }
}
/* ===== SUBPAGE VISUAL GALLERY ===== */
.subpage-visual-section {
    padding: 100px 0 120px;
    background: var(--navy-900);
    border-top: 1px solid var(--border-subtle);
}

.visual-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lifted);
}

.visual-container img {
    transition: var(--transition-smooth);
}

.visual-container:hover img {
    transform: scale(1.02);
}

/* ===== SUBPAGE IMAGE GRID ===== */
.subpage-gallery {
    padding: 80px 0;
    background: var(--navy-900);
    border-top: 1px solid var(--border-subtle);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-subtle);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lifted);
    border-color: var(--gold-400);
}

.gallery-item:hover img {
    filter: brightness(1) saturate(1.05);
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 13, 26, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.gallery-info p {
    font-size: 0.85rem;
    color: var(--gold-400);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 992px) {
    .gallery-item {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        height: 300px;
    }
}
