@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette - Nordic Minimalist Luxury */
    --color-bg-darkest: #040812;
    --color-bg-dark: #0A0F1D;
    --color-bg-card: #0F1626;
    --color-bg-card-hover: #162035;
    
    --color-gold-light: #F4E2BB;
    --color-gold: #D4AF37;
    --color-gold-dark: #A37F24;
    --color-gold-gradient: linear-gradient(135deg, #F4E2BB 0%, #D4AF37 50%, #907120 100%);
    
    --color-ice-blue: #9BC5E8;
    --color-ice-blue-dark: #5887B1;
    --color-ice-gradient: linear-gradient(135deg, #E2F1FF 0%, #9BC5E8 100%);
    
    --color-slate-light: #CBD5E1;
    --color-slate: #94A3B8;
    --color-slate-dark: #475569;
    
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Effects & Animations */
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-bg-hover: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid rgba(255, 255, 255, 0.06);
    --glass-border-focus: 1px solid rgba(212, 175, 55, 0.3);
    --blur: blur(12px);
    
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 50px -10px rgba(0, 0, 0, 0.7);
    --gold-glow: 0 0 30px rgba(212, 175, 55, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-darkest);
}

body {
    font-family: var(--font-body);
    color: var(--color-slate-light);
    background-color: var(--color-bg-darkest);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography Layouts */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

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

.section-alt {
    background-color: var(--color-bg-dark);
}

/* Section Header Styling */
.section-header {
    margin-bottom: 5rem;
    position: relative;
    max-width: 700px;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.section-title span {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--color-slate);
    font-size: 1.15rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

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

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

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn-primary {
    color: var(--color-bg-darkest);
    border: 1px solid var(--color-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold-gradient);
    transition: var(--transition-fast);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--color-gold);
    box-shadow: var(--gold-glow);
}

.btn-primary:hover::before {
    transform: scaleX(0);
    transform-origin: right;
}

.btn-secondary {
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: var(--blur);
}

.btn-secondary:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(4, 8, 18, 0.7);
    backdrop-filter: var(--blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-fast);
}

header.scrolled {
    background: rgba(4, 8, 18, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow-soft);
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    transition: var(--transition-fast);
}

header.scrolled .nav-container {
    height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

header.scrolled .logo-img {
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
}

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

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

.nav-item a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-slate-light);
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-item a:hover {
    color: var(--color-white);
}

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

.nav-cta {
    margin-left: 1rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 85px;
    background-color: var(--color-bg-darkest);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #040812e6 30%, #04081266 70%, #040812cc 100%);
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.45;
    transform: scale(1.05);
    animation: zoomOutBg 20s infinite alternate ease-in-out;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 750px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: var(--color-gold-light);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-badge span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-gold);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero-title span {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--color-slate-light);
    margin-bottom: 3rem;
    line-height: 1.65;
}

/* Glassmorphism Cards & Lists */
.glass-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: var(--blur);
    border-radius: 8px;
    padding: 3rem;
    transition: var(--transition-fast);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Stats Section */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem 0;
    margin-top: -1px;
}

.stat-box {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-slate);
}

/* Services Grid */
.services-grid {
    margin-top: 2rem;
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-img {
    height: 240px;
    position: relative;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

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

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 22, 38, 0.9) 0%, rgba(15, 22, 38, 0.1) 100%);
}

.service-card-icon {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-gold-gradient);
    color: var(--color-bg-darkest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--gold-glow);
    z-index: 2;
}

.service-card-body {
    padding: 2.5rem;
    background-color: var(--color-bg-card);
    border-left: var(--glass-border);
    border-right: var(--glass-border);
    border-bottom: var(--glass-border);
    border-radius: 0 0 8px 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
}

.service-card:hover .service-card-body {
    background-color: var(--color-bg-card-hover);
    border-color: rgba(212, 175, 55, 0.2);
}

.service-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.service-card-text {
    color: var(--color-slate);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-card-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-link svg {
    transition: var(--transition-fast);
}

.service-card-link:hover {
    color: var(--color-white);
}

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

/* Feature Showcase */
.features-showcase {
    position: relative;
}

.feature-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: var(--glass-border);
    box-shadow: var(--shadow-hover);
}

.feature-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.feature-icon {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--color-white);
}

.feature-desc {
    color: var(--color-slate);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 8px;
    padding: 3rem;
    position: relative;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--color-slate-light);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: -2.5rem;
    left: -1rem;
    line-height: 1;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--color-bg-card-hover);
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

.testimonial-title {
    font-size: 0.85rem;
    color: var(--color-slate);
}

/* Contact CTA Block */
.cta-banner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding: 6rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(22, 32, 53, 0.7) 0%, rgba(10, 15, 29, 0.95) 100%);
    border: var(--glass-border);
    box-shadow: var(--shadow-hover);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.15rem;
    color: var(--color-slate);
    margin-bottom: 3rem;
}

/* Internal Page Headers */
.page-header {
    padding: 10rem 0 6rem;
    background: linear-gradient(to bottom, var(--color-bg-dark) 0%, var(--color-bg-darkest) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-title span {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumb {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-slate);
}

.breadcrumb-item::after {
    content: '/';
    margin-left: 0.8rem;
    color: var(--color-slate-dark);
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-item.active {
    color: var(--color-gold);
}

/* About Details Page */
.about-intro {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.value-grid {
    margin-top: 4rem;
}

.value-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 8px;
    padding: 2.5rem;
    transition: var(--transition-fast);
}

.value-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(212, 175, 55, 0.2);
}

.value-icon {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-text {
    color: var(--color-slate);
    font-size: 0.95rem;
}

/* Service Detail View */
.service-detail-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
}

.service-main-content h3 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
}

.service-main-content p {
    margin-bottom: 1.5rem;
}

.service-gallery-img {
    border-radius: 8px;
    overflow: hidden;
    border: var(--glass-border);
    margin-bottom: 3rem;
}

.service-gallery-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.spec-table th, .spec-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.01);
}

.spec-table td {
    font-size: 0.95rem;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--color-gold-light);
    width: 40%;
}

.process-timeline {
    margin-top: 2rem;
    position: relative;
    padding-left: 2.5rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 9px;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    position: absolute;
    left: -2.5rem;
    top: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-bg-darkest);
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.process-step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.process-step-desc {
    color: var(--color-slate);
    font-size: 0.95rem;
}

.sidebar-card {
    background-color: var(--color-bg-card);
    border: var(--glass-border);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

.sidebar-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.8rem;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu-item {
    margin-bottom: 1rem;
}

.sidebar-menu-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    font-weight: 500;
}

.sidebar-menu-item.active a, .sidebar-menu-item a:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--color-gold-light);
}

/* FAQ Accordion */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 6px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.8rem 2.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
}

.faq-trigger svg {
    transition: var(--transition-fast);
    color: var(--color-gold);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
    padding: 0 2.5rem 2rem;
    color: var(--color-slate);
    font-size: 1rem;
    line-height: 1.65;
}

.faq-item.active .faq-trigger svg {
    transform: rotate(45deg);
}

.faq-item.active .faq-content {
    max-height: 500px;
}

/* Contact Details & Page */
.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
}

.contact-info-list {
    margin-top: 2rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-info-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-details p {
    color: var(--color-slate);
    font-size: 0.95rem;
}

/* Form Styles */
.contact-form {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 8px;
    padding: 4rem;
}

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

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold-light);
    margin-bottom: 0.8rem;
}

.form-control {
    width: 100%;
    background: rgba(4, 8, 18, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

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

/* Privacy Policy Layout */
.privacy-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 4rem;
    border-radius: 8px;
}

.privacy-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 2.5rem 0 1rem;
}

.privacy-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.privacy-content ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.privacy-content li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
}

.privacy-content li::before {
    content: '•';
    color: var(--color-gold);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

/* Map Mock Block */
.map-mock {
    height: 350px;
    border-radius: 8px;
    border: var(--glass-border);
    background: linear-gradient(135deg, #101625 0%, #060913 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.map-mock-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: 
        radial-gradient(#ffffff 1px, transparent 1px),
        radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.map-card {
    position: relative;
    z-index: 2;
    background: rgba(4, 8, 18, 0.85);
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-hover);
    backdrop-filter: var(--blur);
    max-width: 320px;
}

.map-title {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.map-text {
    font-size: 0.85rem;
    color: var(--color-slate);
    margin-bottom: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--color-bg-darkest);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 2fr 2fr 4fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
}

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

.footer-desc {
    color: var(--color-slate);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    margin-bottom: 1.8rem;
}

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

.footer-links-item {
    margin-bottom: 0.8rem;
}

.footer-links-item a {
    color: var(--color-slate);
    font-size: 0.95rem;
}

.footer-links-item a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-slate);
    font-size: 0.95rem;
}

.footer-contact-icon {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2.5rem;
}

.footer-copy {
    color: var(--color-slate-dark);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--color-slate-dark);
    font-size: 0.9rem;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomOutBg {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1);
    }
}

/* Scroll Animation Classes (Intersection Observer) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Responsive Grid Adjustments */
@media (max-width: 1100px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .nav-menu {
        display: none; /* We can add JS-based overlay toggle for mobile */
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 0;
        padding: 2.5rem 0;
    }
    
    .stat-box {
        border-right: none;
    }
    
    .stat-box:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .cta-banner {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .privacy-card {
        padding: 2rem;
    }
}
