/* Design Tokens / Variables */
:root {
  /* Primary — Deep Blue */
  --brand-primary: #1E3F7A;
  --brand-primary-hover: #152c56;
  --brand-primary-glow: rgba(30, 63, 122, 0.3);

  /* Secondary — Vibrant Red */  
  --brand-secondary: #D42027;
  --brand-secondary-hover: #B31A21;
  --brand-secondary-glow: rgba(212, 32, 39, 0.3);

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --gray-100: #F1F3F7;
  --gray-200: #E2E8F0;
  --gray-300: #CBD2DC;
  --gray-500: #6B7A90;
  --gray-700: #3A4555;
  --gray-900: #1A2030;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing & Utilities */
  --container-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    line-height: 1.6;
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-accent { color: var(--brand-secondary); }
.text-primary { color: var(--brand-primary); }
.text-white { color: var(--white); }
.text-light { color: var(--gray-100); }
.text-dark { color: var(--gray-900); }
.text-gray { color: var(--gray-500); }

.text-large { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.m-0 { margin: 0; }

.text-center { text-align: center; }
.w-full { width: 100%; display: block; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.z-10 { z-index: 10; }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.gap-4 { gap: 1rem; }

.bg-light { background-color: var(--off-white); }
.section { padding: 5rem 0; }

.hover-accent:hover { color: var(--brand-secondary) !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: var(--font-display);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--brand-secondary);
    color: var(--white);
    box-shadow: var(--shadow-sm), 0 0 15px var(--brand-secondary-glow);
}

.btn-primary:hover {
    background-color: var(--brand-secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 0 20px var(--brand-secondary-glow);
}

.btn-glass {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    color: var(--brand-primary);
}
.btn-light:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
}

.border-white {
    border-color: var(--white);
}

/* Top Bar */
.top-bar {
    background-color: var(--brand-primary);
    color: var(--white);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    font-weight: 500;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar i {
    color: var(--brand-secondary);
    font-size: 1.125rem;
    vertical-align: middle;
}

.top-bar a:hover {
    color: var(--brand-secondary);
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.25rem 0;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 56px;
    min-height: 56px;
    width: auto;
    object-fit: contain;
}

.brand-logo-footer {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-weight: 600;
    color: var(--gray-700);
}

.nav-links a:hover {
    color: var(--brand-secondary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--brand-primary);
}
.phone-link:hover { color: var(--brand-secondary); }

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--brand-primary);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 10px 15px -10px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    z-index: 99;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu nav a {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--brand-primary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #081624 100%);
    color: var(--white);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* The Aura Decorative Concept & Animations */
@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 6s infinite alternate ease-in-out;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--brand-primary-glow);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--brand-secondary-glow);
    bottom: -150px;
    left: -150px;
}

.hero-content h1 { color: var(--white); }
.hero-content p { color: var(--gray-300); }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.badge i { color: #F59E0B; }

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.google-rating {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--gray-300);
}
.stars { color: #F59E0B; display: flex; gap: 0.25rem; }

/* Hero Visual & Glass Card */
.hero-visual {
    position: relative;
    height: 100%;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(to bottom right, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-bg-icon {
    font-size: 15rem;
    color: rgba(255,255,255,0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    color: var(--gray-900);
}

.trust-card {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 250px;
    animation: floatBadge 4s infinite ease-in-out;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-secondary-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Trust Strip */
.trust-strip {
    background: var(--white);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--brand-primary);
    font-family: var(--font-display);
}
.trust-item i {
    color: var(--brand-secondary);
    font-size: 1.5rem;
}

/* Services */
.section-header { margin-bottom: 4rem; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(230, 57, 70, 0.3);
}

.card-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--brand-primary), var(--brand-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover .card-accent-bar {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--off-white);
    color: var(--brand-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--brand-secondary);
    color: var(--white);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-primary);
    font-weight: 700;
    margin-top: 1rem;
    font-family: var(--font-display);
}

.link-arrow:hover { color: var(--brand-secondary); }
.link-arrow i { transition: transform 0.3s ease; }
.link-arrow:hover i { transform: translateX(4px); }

/* CTA Banner */
.cta-banner {
    background-color: var(--brand-secondary);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.cta-banner h2 { color: var(--white); }

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding: 5rem 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer ul a:hover { color: var(--brand-secondary); }

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.footer-contact i { color: var(--brand-secondary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    font-size: 0.875rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
}

/* Animations (Intersection Observer Targets) */
.fade-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }

    .trust-card {
        top: -30px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 320px;
        justify-content: center;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-strip-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
    .show-mobile { display: block; }
    
    h1 { font-size: 2.5rem; }
    
    .top-bar-inner { justify-content: center; }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-strip-inner {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cta-banner .flex-center {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-banner .btn {
        width: 100%;
    }
}
