/* ========================================
   Lorven Pest Control - Static Website CSS
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --navy: hsl(215, 60%, 8%);
    --navy-dark: hsl(215, 65%, 5%);
    --gold: hsl(45, 95%, 50%);
    --gold-hover: hsl(45, 95%, 45%);
    --gold-light: hsl(45, 95%, 94%);
    --gold-transparent: hsla(45, 95%, 50%, 0.15);
    
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-80: rgba(255, 255, 255, 0.8);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-55: rgba(255, 255, 255, 0.55);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-35: rgba(255, 255, 255, 0.35);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-25: rgba(255, 255, 255, 0.25);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-12: rgba(255, 255, 255, 0.12);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-8: rgba(255, 255, 255, 0.08);
    --white-6: rgba(255, 255, 255, 0.06);
    
    --gray-100: #f4f6f8;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --border: hsl(220, 13%, 88%);
    --border-light: hsl(220, 13%, 91%);
    --card: hsl(0, 0%, 100%);
    --card-alt: hsl(220, 15%, 96%);
    
    --text-primary: var(--navy);
    --text-muted: var(--gray-500);
    --text-secondary: var(--gray-600);
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding-sm: 64px;
    --section-padding-lg: 128px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-reveal: 700ms cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-fab: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Typography - Outfit Font Import */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/outfit/v11/QGYvz_MVcBeNP4NJuktqQ5g.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYAZ9hiJ-Ek-_EeA.woff2') format('woff2');
}

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.hidden { display: none !important; }

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 640px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 32px;
        padding-right: 32px;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
}

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

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    padding: 14px 28px;
    font-size: 15px;
}

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

.btn-outline {
    border: 1px solid var(--white-25);
    color: var(--white-90);
    background: transparent;
    padding: 14px 28px;
    font-size: 15px;
}

.btn-outline:hover {
    border-color: var(--white-50);
    color: var(--white);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 6px;
}

.btn-menu {
    color: var(--navy);
    padding: 8px;
    border-radius: 6px;
}

.btn-menu:hover {
    background-color: rgba(245, 184, 0, 0.1);
}

.btn-call {
    font-size: 13px;
    padding: 10px 20px;
    text-transform: none;
}

.btn-call-mobile {
    background-color: var(--gold);
    color: var(--white);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 64px;
    background: var(--white);
    transition: all var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 64px;
    width: auto;
}

@media (min-width: 640px) {
    .logo-img {
        height: 80px;
    }
}

/* Navigation - Desktop */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 4px;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--navy);
    padding: 8px 12px;
    border-radius: 6px;
    transition: all var(--transition-base);
}

.nav-link:hover {
    color: var(--gold);
    background-color: rgba(245, 184, 0, 0.1);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-call {
    display: none;
}

@media (min-width: 640px) {
    .btn-call {
        display: inline-flex;
    }
    .btn-call-mobile {
        display: none;
    }
}

@media (min-width: 1024px) {
    .btn-menu {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 300ms ease-in-out;
    background-color: var(--white);
    border-top: 1px solid var(--border);
}

.mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 8px 20px;
    gap: 2px;
}

.mobile-nav-link {
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 6px;
    transition: all var(--transition-base);
}

.mobile-nav-link:hover {
    color: var(--gold);
    background-color: rgba(245, 184, 0, 0.1);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    overflow: hidden;
}

/* Desktop Hero */
.hero-desktop {
    display: none;
    position: relative;
    min-height: 92vh;
    align-items: center;
    padding-top: 64px;
}

@media (min-width: 640px) {
    .hero-desktop {
        display: flex;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 19, 33, 0.93), rgba(12, 28, 48, 0.82), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 96px;
    padding-bottom: 144px;
}

@media (min-width: 1024px) {
    .hero-content {
        padding-top: 144px;
        padding-bottom: 144px;
    }
}

.hero-text {
    max-width: 640px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white-8);
    border: 1px solid var(--white-15);
    color: var(--white-90);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 28px;
}

.trust-badge .icon-gold {
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-title .text-gold {
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Mobile Hero */
.hero-mobile {
    display: block;
    padding-top: 64px;
}

@media (min-width: 640px) {
    .hero-mobile {
        display: none;
    }
}

.hero-mobile-text {
    background-color: var(--navy);
    padding: 40px 20px 32px;
}

.hero-mobile .trust-badge {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 20px;
}

.hero-mobile .hero-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.hero-mobile .hero-buttons {
    flex-direction: column;
    gap: 10px;
}

.hero-mobile .btn {
    width: 100%;
    justify-content: center;
}

.hero-mobile-img {
    position: relative;
    width: 100%;
    height: 224px;
}

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

.hero-mobile-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 19, 33, 0.3), transparent);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding-top: var(--section-padding-sm);
    padding-bottom: var(--section-padding-sm);
}

@media (min-width: 640px) {
    .section {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

@media (min-width: 1024px) {
    .section {
        padding-top: var(--section-padding-lg);
        padding-bottom: var(--section-padding-lg);
    }
}

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

.section-alt-light {
    background-color: var(--card-alt);
}

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

/* Section Header */
.section-header {
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 64px;
    }
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .section-label {
        font-size: 14px;
    }
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

@media (min-width: 640px) {
    .section-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-title.text-white {
    color: var(--white);
}

.section-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section-description.text-white-60 {
    color: var(--white-60);
}

/* ========================================
   ABOUT SECTION - HIGHLIGHTS
   ======================================== */
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 576px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background-color: var(--card-alt);
    border-radius: 8px;
}

@media (min-width: 640px) {
    .highlight-item {
        background-color: transparent;
        padding: 0;
    }
}

.highlight-item .icon-gold {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-item span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}

@media (min-width: 640px) {
    .highlight-item span {
        font-size: 14px;
    }
}

/* ========================================
   WHY CHOOSE US - FEATURES
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .features-grid {
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background-color: var(--card);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--border);
    transition: all var(--transition-slow);
}

@media (min-width: 640px) {
    .feature-card {
        padding: 28px;
    }
}

.feature-card:hover {
    border-color: hsla(45, 95%, 50%, 0.3);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background-color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--navy);
    transition: background-color var(--transition-base);
}

@media (min-width: 640px) {
    .feature-icon {
        width: 48px;
        height: 48px;
    }
}

.feature-card:hover .feature-icon {
    background-color: var(--gold-transparent);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 640px) {
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

@media (min-width: 640px) {
    .feature-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

.feature-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .feature-desc {
        font-size: 14px;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .services-grid {
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition-slow);
}

.service-card:hover {
    border-color: hsla(45, 95%, 50%, 0.3);
}

.service-img {
    position: relative;
    height: 128px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .service-img {
        height: 192px;
    }
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

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

.service-content {
    padding: 16px;
}

@media (min-width: 640px) {
    .service-content {
        padding: 24px;
    }
}

.service-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

@media (min-width: 640px) {
    .service-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

.service-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 640px) {
    .service-desc {
        font-size: 14px;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 896px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .process-grid {
        gap: 32px;
    }
}

.process-step {
    text-align: center;
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background-color: var(--white-8);
    border: 1px solid var(--white-12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold);
}

@media (min-width: 640px) {
    .process-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }
}

.process-icon svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 640px) {
    .process-icon svg {
        width: 32px;
        height: 32px;
    }
}

.process-step-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: hsla(45, 95%, 50%, 0.7);
}

@media (min-width: 640px) {
    .process-step-label {
        font-size: 12px;
    }
}

.process-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-top: 6px;
    margin-bottom: 8px;
}

@media (min-width: 640px) {
    .process-title {
        font-size: 20px;
        margin-top: 8px;
        margin-bottom: 12px;
    }
}

.process-desc {
    font-size: 11px;
    color: var(--white-60);
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .process-desc {
        font-size: 14px;
    }
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .gallery-grid {
        gap: 16px;
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    height: 128px;
}

@media (min-width: 640px) {
    .gallery-item {
        height: 192px;
    }
}

@media (min-width: 768px) {
    .gallery-item {
        height: 224px;
    }
}

.gallery-item-large {
    grid-row: span 2;
    height: 240px;
}

@media (min-width: 640px) {
    .gallery-item-large {
        height: 320px;
    }
}

@media (min-width: 768px) {
    .gallery-item-large {
        height: 100%;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

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

.gallery-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 19, 33, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 12px 16px;
    opacity: 1;
}

@media (min-width: 640px) {
    .gallery-caption {
        opacity: 0;
        transition: opacity 300ms ease;
    }
    
    .gallery-item:hover .gallery-caption {
        opacity: 1;
    }
}

.gallery-caption span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
}

@media (min-width: 640px) {
    .gallery-caption span {
        font-size: 14px;
    }
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--white-80);
    padding: 8px;
    z-index: 10;
    transition: color var(--transition-base);
}

.lightbox-close:hover {
    color: var(--white);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white-70);
    padding: 8px;
    z-index: 10;
    transition: color var(--transition-base);
}

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

.lightbox-prev {
    left: 8px;
}

.lightbox-next {
    right: 8px;
}

@media (min-width: 640px) {
    .lightbox-prev {
        left: 24px;
    }
    
    .lightbox-next {
        right: 24px;
    }
}

.lightbox-content {
    max-width: 896px;
    max-height: 85vh;
    padding: 0 48px;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    text-align: center;
    color: var(--white-80);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
}

@media (min-width: 640px) {
    .lightbox-caption {
        font-size: 16px;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

@media (min-width: 640px) {
    .testimonials-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        overflow: visible;
        padding-bottom: 0;
    }
}

.testimonial-card {
    flex: 0 0 280px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 24px;
    border: 1px solid var(--border);
    position: relative;
    scroll-snap-align: center;
}

@media (min-width: 640px) {
    .testimonial-card {
        flex: none;
        padding: 32px;
    }
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: hsla(45, 95%, 50%, 0.2);
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.author-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.author-area {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ========================================
   SERVICE AREAS
   ======================================== */
.areas-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 768px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .areas-container {
        gap: 12px;
    }
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--white-6);
    border: 1px solid var(--white-12);
    color: var(--white-80);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .area-tag {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.area-tag:hover {
    background-color: var(--gold-transparent);
    color: var(--gold);
    border-color: hsla(45, 95%, 50%, 0.25);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-grid {
    display: grid;
    gap: 32px;
    max-width: 1024px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

@media (min-width: 640px) {
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        background-color: transparent;
        border: none;
        padding: 0;
        text-align: left;
    }
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

.contact-details h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-details p,
.contact-link {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .contact-details p,
    .contact-link {
        font-size: 14px;
    }
}

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

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 256px;
}

@media (min-width: 640px) {
    .contact-map {
        height: 320px;
    }
}

@media (min-width: 1024px) {
    .contact-map {
        height: auto;
    }
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--navy-dark);
    padding-top: 48px;
    padding-bottom: 48px;
}

@media (min-width: 640px) {
    .footer {
        padding-top: 56px;
        padding-bottom: 56px;
    }
}

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

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand {
    grid-column: span 2;
}

@media (min-width: 640px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

@media (min-width: 640px) {
    .footer-logo img {
        height: 96px;
    }
}

.footer-desc {
    font-size: 12px;
    color: var(--white-50);
    line-height: 1.6;
    max-width: 320px;
}

@media (min-width: 640px) {
    .footer-desc {
        font-size: 14px;
    }
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    font-size: 12px;
    color: var(--white-50);
    transition: color var(--transition-base);
}

@media (min-width: 640px) {
    .footer-nav a {
        font-size: 14px;
    }
}

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

.footer-contact-item {
    margin-bottom: 10px;
}

.footer-contact-link,
.footer-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--white-50);
    transition: color var(--transition-base);
}

@media (min-width: 640px) {
    .footer-contact-link,
    .footer-address {
        font-size: 14px;
    }
}

.footer-contact-link:hover {
    color: var(--gold);
}

.footer-address {
    align-items: flex-start;
}

.footer-address svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--white-10);
    padding-top: 24px;
    text-align: center;
}

.copyright {
    font-size: 12px;
    color: var(--white-35);
    margin-bottom: 4px;
}

.credit {
    font-size: 12px;
    color: var(--white-30);
}

.credit a {
    color: hsla(45, 95%, 50%, 0.7);
    transition: color var(--transition-base);
}

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

/* ========================================
   FLOATING ACTION BUTTONS
   ======================================== */
.fab {
    position: fixed;
    right: 24px;
    z-index: 50;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-fab);
    transition: all var(--transition-base);
}

.fab:hover {
    transform: scale(1.05);
}

.fab:active {
    transform: scale(0.95);
}

.fab-whatsapp {
    bottom: 24px;
    background-color: #25D366;
}

.fab-whatsapp:hover {
    background-color: #1fb855;
}

.fab-call {
    bottom: 96px;
    background-color: var(--gold);
}

.fab-call:hover {
    background-color: var(--gold-hover);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-reveal-up {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
    animation: revealUp 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
    transition: opacity var(--transition-reveal), 
                transform var(--transition-reveal), 
                filter var(--transition-reveal);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger animations for cards */
.feature-card,
.service-card,
.process-step,
.gallery-item,
.testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
}

.scroll-reveal.revealed .feature-card,
.scroll-reveal.revealed .service-card,
.scroll-reveal.revealed .process-step,
.scroll-reveal.revealed .gallery-item,
.scroll-reveal.revealed .testimonial-card {
    animation: revealUp 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

