/* ==========================================================================
   CSS Variables & Design Tokens
   ========================================================================== */
:root {
    /* Color Palette */
    --clr-primary: #D32F2F; /* Strong Red */
    --clr-primary-hover: #B71C1C;
    --clr-secondary: #121212; /* Charcoal Black */
    --clr-secondary-light: #2A2A2A; /* Dark Gray */
    --clr-background: #F8F9FA; /* Soft White / Light Gray */
    --clr-surface: #FFFFFF;
    --clr-text-main: #121212;
    --clr-text-muted: #555555;
    --clr-text-light: #F8F9FA;
    
    /* Accents & Gradients */
    --gradient-red: linear-gradient(135deg, #D32F2F, #FF5252);
    --gradient-dark: linear-gradient(135deg, #121212, #2A2A2A);
    --glow-red: 0 4px 20px rgba(211, 47, 47, 0.4);
    
    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 32px rgba(0,0,0,0.12);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-background);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-text-main);
    letter-spacing: -0.02em;
}

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

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

ul {
    list-style: none;
}

html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Reduced padding for mobile */
}

section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

/* ==========================================================================
   Utility Classes & Glassmorphism 2.0
   ========================================================================== */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.glass-dark {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.text-center { text-align: center; }
.section-title { 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    margin-bottom: 1rem; 
    letter-spacing: -0.03em;
}
.section-subtitle { 
    font-size: 1.25rem; 
    color: var(--clr-text-muted); 
    max-width: 650px; 
    margin: 0 auto var(--spacing-xl); 
    font-weight: 300;
}

/* Text Reveal Animation */
.reveal-wrapper {
    overflow: hidden;
    display: block;
}

.reveal-line {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-line.active {
    transform: translateY(0);
}

/* ==========================================================================
   Buttons & Interactive CTA
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--clr-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: -1;
}

.btn-primary:hover {
    background: var(--clr-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(211, 47, 47, 0.4);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-outline {
    background: transparent;
    color: var(--clr-surface);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--clr-surface);
    color: var(--clr-secondary);
    border-color: var(--clr-surface);
    transform: translateY(-3px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

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

.logo img {
    height: 50px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--clr-secondary);
    position: relative;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-secondary);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--clr-secondary);
    transition: var(--transition-fast);
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

/* ==========================================================================
   Floating Buttons
   ========================================================================== */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.float-whatsapp {
    background: #25D366;
}

.float-call {
    background: var(--clr-primary);
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.float-call {
    animation: pulse-red 2s infinite;
    animation-delay: 1s;
}
@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(211, 47, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

/* ==========================================================================
   Hero Section - Billion Dollar Typography (Vogue Style)
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    color: var(--clr-text-light);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ken-burns img {
    animation: kenburns 30s ease-out infinite alternate;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: -1;
}

.hero-typography-vogue {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title-vogue {
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    line-height: 0.95;
    color: #F8F9FA;
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
    letter-spacing: -0.05em;
    font-weight: 800;
}

.line-reveal-vogue {
    display: block;
    opacity: 0;
    filter: blur(15px);
    transform: translateY(30px) scale(1.05);
    animation: blurFocusReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes blurFocusReveal {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

.line-1 { animation-delay: 0.2s; font-weight: 300; }
.line-2 { animation-delay: 0.4s; padding-left: 8%; color: var(--clr-primary); }
.line-3 { animation-delay: 0.6s; padding-left: 15%; font-weight: 300; }

.accent-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    color: #F8F9FA;
    padding-left: 0.2rem;
}

.italic-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle-vogue {
    font-size: 14px;
    color: #A0A0A0;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 4rem;
    padding-left: 2px;
    font-weight: 400;
    max-width: 800px;
}

.hero-ctas-vogue {
    display: flex;
    gap: 2rem;
}

@media (max-width: 768px) {
    .hero-title-vogue { font-size: 3rem; }
    .line-2, .line-3 { padding-left: 0; }
    .hero-ctas-vogue { flex-direction: column; width: 100%; }
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */
.trust-bar {
    background: var(--clr-surface);
    padding: 2rem 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
    margin-top: -40px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.trust-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
}

.trust-icon {
    font-size: 2rem;
    color: var(--clr-primary);
}

.trust-text {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--clr-secondary);
    font-size: 1.1rem;
    line-height: 1.3;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    background: var(--clr-background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    background: var(--clr-surface);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-red);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--glow-red);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

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

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

.service-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--clr-secondary);
    position: relative;
    z-index: 1;
}

.service-desc {
    color: var(--clr-text-muted);
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    background: var(--clr-surface);
}

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

.about-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--clr-text-muted);
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-secondary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image-wrapper {
    position: relative;
}

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

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

.about-image-wrapper:hover .about-image img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--clr-primary);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--glow-red);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: pulse-red 3s infinite;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.mt-2 { margin-top: 2rem; }

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery {
    background: var(--clr-background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--clr-surface);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.05);
}

.gallery-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(18, 18, 18, 0.8);
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
}

.label-after {
    background: var(--clr-primary);
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.gallery-caption p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process {
    background: var(--clr-surface);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

/* Connecting line for desktop */
@media (min-width: 992px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 50px;
        right: 50px;
        height: 2px;
        background: rgba(0,0,0,0.05);
        z-index: 0;
    }
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--clr-surface);
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.process-step:hover .step-number {
    background: var(--clr-primary);
    color: white;
    box-shadow: var(--glow-red);
    transform: scale(1.1);
}

.trust-icon {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.trust-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trust-item:hover .trust-icon {
    transform: translateY(-5px) scale(1.1);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-desc {
    color: var(--clr-text-muted);
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews {
    background: var(--clr-background);
}

.aggregate-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.stars {
    color: var(--clr-primary);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--clr-surface);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: var(--clr-primary);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--clr-text-main);
    flex-grow: 1;
}

.review-author {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
}

.review-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.review-author p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
    background: var(--gradient-dark);
    color: var(--clr-text-light);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211,47,47,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--clr-surface);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #E0E0E0;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-trust {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
    background: var(--clr-surface);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-desc {
    margin-bottom: 2.5rem;
    color: var(--clr-text-muted);
}

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

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.contact-detail-item:hover {
    background: var(--clr-background);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(211,47,47,0.1);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-detail-item h4 {
    margin-bottom: 0.25rem;
}

.contact-detail-item p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* Form Styles */
.contact-form-wrapper {
    padding: 3rem;
    border-radius: var(--radius-lg);
    background: var(--clr-surface);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--clr-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--clr-background);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(211,47,47,0.1);
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--clr-secondary);
    color: rgba(255,255,255,0.7);
    padding-top: 5rem;
}

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

.footer-logo {
    height: 60px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-text {
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-trust {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: white;
}

.footer-heading {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-legal a:hover {
    color: white;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

@media (max-width: 768px) {
    .hero-ctas {
        flex-direction: column;
    }
    .trust-bar {
        margin-top: 0;
        border-radius: 0;
    }
    .trust-bar-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   Comparison Section
   ========================================================================== */
.comparison-section {
    background: #0a0a0a;
    padding: var(--spacing-xxl) 0;
}

.comparison-section .section-title {
    color: #FFFFFF;
}

.comparison-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.comparison-card {
    padding: 3rem 2rem;
    border-radius: 32px;
    transition: var(--transition-base);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.comparison-card.elite {
    border: 1px solid var(--clr-primary);
    background: rgba(211, 47, 47, 0.05);
    transform: scale(1.05);
}

.elite-tag {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: var(--clr-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.comparison-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-card li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    background: #050505;
    padding: var(--spacing-xxl) 0;
}

.faq-section .section-title {
    color: #FFFFFF;
}

.faq-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

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

.faq-item {
    padding: 2rem;
    border-radius: 24px;
    cursor: pointer;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.01);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(211, 47, 47, 0.3);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ==========================================================================
   Service Benefits (Deep-Dive)
   ========================================================================== */
.service-benefits {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.service-benefits li {
    font-size: 0.75rem;
    color: var(--clr-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-benefits li::before {
    content: '→';
    font-size: 1rem;
}

/* ==========================================================================
   Premium Logo Showcasing
   ========================================================================== */
.logo-wrapper {
    text-decoration: none;
    position: relative;
    z-index: 10;
}
/* ==========================================================================
   Header & Navigation (Elite Desktop Restore)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 0;
    z-index: 1000;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 0.8rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1400px; /* Wider for luxury feel */
}

/* Logo on Far Left */
.logo-wrapper {
    flex: 0 0 auto;
}

/* Center Menu (Desktop ONLY) */
.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block !important; /* Force show on desktop */
}

.nav-list {
    display: flex;
    gap: 3.5rem; /* Spacious premium gaps */
    align-items: center;
}

.nav-toggle, .close-menu, .mobile-only {
    display: none !important; /* Hide mobile-only parts on desktop */
}

.nav-link {
    color: #FFFFFF !important;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
    transition: var(--transition-base);
}

.nav-link:hover {
    opacity: 1;
    color: var(--clr-primary) !important;
}

/* Right CTA on Far Right */
.header-cta {
    display: block !important;
    flex: 0 0 auto;
}

/* ==========================================================================
   Premium Agency Medallion Logo
   ========================================================================== */
.logo-medallion {
    width: 65px; /* Elegant smaller size */
    height: 65px;
    background: transparent;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.15); /* Luxury Silver Ring */
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(211, 47, 47, 0.1); /* Subtle Red Aura */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    z-index: 10;
}

.logo-medallion::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.2) 45%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.2) 55%,
        transparent 70%
    );
    animation: luxuryShine 6s infinite;
}

@keyframes luxuryShine {
    0% { transform: translate(-30%, -30%) rotate(0deg); }
    20%, 100% { transform: translate(30%, 30%) rotate(0deg); }
}

.branded-logo-circle {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-wrapper:hover .logo-medallion {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--clr-primary);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(211, 47, 47, 0.3);
}

.header-cta .btn-sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

@media (max-width: 1100px) {
    .nav-list { gap: 1.5rem; }
}

@media (max-width: 992px) {
    .nav-menu { display: none; } /* Mobile menu toggle handles this */
    .header-container { justify-content: space-between; position: static; }
}

/* Footer Seal Style */
.footer-logo-seal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: var(--transition-base);
    overflow: hidden;
}

.footer-logo-seal .branded-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Responsive Queries
   ========================================================================== */
/* ==========================================================================
   Billion-Dollar Mobile Optimization
   ========================================================================== */

/* Floating Lead Button (Circular) */
.mobile-float-btn {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 65px;
    height: 65px;
    background: var(--clr-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.4);
    z-index: 9999;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.mobile-float-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 992px) {
    /* Mobile Header Refinement */
    .header {
        backdrop-filter: none !important;
        background: rgba(0, 0, 0, 0.4);
        padding: 0.8rem 0;
    }

    /* Mobile Menu Full-Screen Overlay */
    .nav-menu {
        display: none !important; /* Hide by default on mobile */
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        left: 0;
        top: 0;
        transform: none !important;
    }

    .nav-menu.active {
        display: flex !important; /* Show only when active */
    }

    .close-menu {
        display: block !important;
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 3.5rem;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .mobile-only {
        display: block !important;
    }

    .nav-toggle {
        display: block !important;
        z-index: 10001;
    }

    .header-cta {
        display: none !important; /* Hide header CTA on mobile */
    }

    .mobile-float-btn {
        display: flex; /* Show on mobile */
    }

    .header-cta, .floating-contact {
        display: none; /* Cleaner mobile look */
    }

    /* Fix Content Cutting & Badge Overlay */
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-badge {
        position: absolute;
        bottom: -20px;
        right: 20px;
        transform: scale(0.85); /* Scale down for mobile */
    }

    .about-image-wrapper {
        margin-top: 2rem;
    }

    /* Fix Comparison Grid Overflow */
    .comparison-grid {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0;
    }

    .comparison-card {
        width: 100%;
        margin-bottom: 2rem;
    }

    /* Hero Section Mobile Optimization */
    .hero {
        min-height: 85vh; /* Reduced height for better UX */
        display: flex;
        align-items: center;
        padding: 0;
    }

    .hero-title-vogue {
        font-size: clamp(2rem, 9vw, 2.8rem);
        margin-bottom: 0.5rem;
    }

    .hero-typography-vogue {
        text-align: center;
        padding: 7rem 1rem 0; /* Increased top padding to clear header */
    }

    .hero-sub-vogue {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        line-height: 1.6;
        margin-top: 1rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-vogue {
        margin-top: 2rem;
    }

    section { padding: var(--spacing-lg) 0; }
}

@media (max-width: 480px) {
    .logo-badge {
        padding: 5px 10px;
    }
    .branded-logo {
        height: 30px;
    }
    .hero-title-vogue {
        font-size: 2.2rem;
    }
    /* Footer Mobile Optimization */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-logo-seal {
        margin: 0 auto 1.5rem;
        width: 80px;
        height: 80px;
        padding: 0.4rem;
    }

    .footer-logo-seal .branded-logo {
        height: 45px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-text {
        max-width: 300px;
        margin: 0 auto 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding-top: 2rem;
    }
}
