/* =================================================================
   LOSS GROUP SECURITY - SKY BLUE PROFESSIONAL DESIGN
   Modern Premium Security Brand Experience
   ================================================================= */

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

:root {
    /* Sky Blue Dream Theme */
    --sky-light: #87CEEB;
    --sky-blue: #4A90E2;
    --sky-lighter: #B4E0F9;
    --sky-deeper: #2563EB;
    --sky-pale: #E0F2FE;
    --sky-accent: #1E40AF;
    
    /* Refined Neutrals */
    --charcoal: #2D3142;
    --slate: #4F5D75;
    --warm-gray: #BFC0C0;
    --off-white: #FEFEFE;
    --cream: #F8FCFF;
    
    /* Luxury Gradients */
    --gradient-primary: linear-gradient(135deg, #87CEEB 0%, #4A90E2 50%, #2563EB 100%);
    --gradient-soft: linear-gradient(180deg, #F8FCFF 0%, #FFFFFF 100%);
    --gradient-card: linear-gradient(145deg, rgba(135, 206, 235, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    --gradient-hero: linear-gradient(180deg, #E0F2FE 0%, #B4E0F9 30%, #FFFFFF 100%);
    
    /* Sophisticated Effects */
    --shadow-soft: 0 2px 20px rgba(135, 206, 235, 0.15);
    --shadow-medium: 0 8px 30px rgba(74, 144, 226, 0.25);
    --shadow-large: 0 20px 60px rgba(45, 49, 66, 0.1);
    --glow-sky-light: 0 0 40px rgba(135, 206, 235, 0.5);
    --glow-sky-blue: 0 0 40px rgba(74, 144, 226, 0.5);
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* =================================================================
   CAPSULE NAVIGATION - Modern Floating Header
   ================================================================= */

.capsule-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.capsule-nav.scrolled {
    padding: 1rem 0;
}

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

.capsule-wrapper {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid rgba(135, 206, 235, 0.2);
    border-radius: 100px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
}

.capsule-nav.scrolled .capsule-wrapper {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-medium);
    border-color: rgba(135, 206, 235, 0.3);
}

/* Floating Animation */
@keyframes float-capsule {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.capsule-wrapper {
    animation: float-capsule 6s ease-in-out infinite;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-smooth);
}

.logo:hover .logo-text {
    transform: scale(1.05);
}

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

.nav-menu li a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.3px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-menu li a:hover {
    color: var(--sky-blue);
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.nav-btn:hover::before {
    width: 300px;
    height: 300px;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium), var(--glow-sky-light);
}

.nav-btn svg {
    width: 18px;
    height: 18px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
}

/* =================================================================
   PREMIUM HEADING DESIGNS
   ================================================================= */

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

/* Hero Title - Large Impact */
.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -3px;
    color: var(--charcoal);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
}

/* Gradient Text with Premium Effect */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    text-shadow: 0 0 40px rgba(135, 206, 235, 0.3);
}

.gradient-text::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient-primary);
    opacity: 0.2;
    border-radius: 4px;
    filter: blur(4px);
}

/* Section Title - Modern Bold */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--charcoal);
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    position: relative;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

/* Card Titles - Clean & Professional */
.service-card h3,
.feature-card h3,
.cta-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--sky-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.service-card:hover h3::after {
    width: 80px;
}

/* =================================================================
   BUTTONS - Premium Design
   ================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-large), var(--glow-sky-light);
}

.btn-secondary {
    background: white;
    color: var(--charcoal);
    border: 2px solid var(--sky-light);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--sky-pale);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

/* =================================================================
   HERO SECTION - Luxury Premium Design
   ================================================================= */

.hero {
    padding: 180px 0 120px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 50%, rgba(135, 206, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(74, 144, 226, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(135, 206, 235, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, -50px); }
}

.hero .container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    background: white;
    backdrop-filter: blur(10px);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--sky-light);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--slate);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat {
    text-align: center;
    padding: 2rem 2.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.stat:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-large);
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 1rem;
    color: var(--slate);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.trust-bar {
    margin-top: 6rem;
    padding: 3rem 0;
    border-top: 2px solid rgba(135, 206, 235, 0.2);
    background: white;
    backdrop-filter: blur(10px);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.trust-items > div {
    text-align: center;
    position: relative;
    padding: 1.5rem 2rem;
}

.trust-items > div::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    z-index: -1;
}

.trust-items strong {
    display: block;
    font-size: 1.25rem;
    color: var(--charcoal);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.trust-items span {
    color: var(--slate);
    font-size: 1rem;
    font-weight: 600;
}

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

/* =================================================================
   SECTIONS - Refined Luxury
   ================================================================= */

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: block;
    background: var(--gradient-card);
    color: var(--charcoal);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--sky-blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: fit-content;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--slate);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* =================================================================
   SERVICES - Premium Cards with Glassmorphism
   ================================================================= */

.services {
    background: var(--gradient-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(135, 206, 235, 0.3);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-large);
    border-color: var(--sky-light);
}

.service-card.featured {
    background: var(--gradient-card);
    border-color: var(--sky-blue);
    border-width: 3px;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    filter: drop-shadow(var(--shadow-soft));
    transition: var(--transition-bounce);
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--sky-light);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-soft);
}

.card-badge.specialty {
    background: var(--sky-blue);
}

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

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 0.875rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1rem;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sky-light);
    font-weight: 900;
    font-size: 1.25rem;
}

/* =================================================================
   WHY US - Refined Feature Cards
   ================================================================= */

.why-us {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--cream);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-bounce);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--sky-light);
}

.feature-card:hover::after {
    opacity: 0.1;
}

.feature-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 2rem;
    filter: drop-shadow(var(--shadow-soft));
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) translateY(-5px);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card p {
    color: var(--slate);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* =================================================================
   WAVE GOODBYE - Premium Dark Section
   ================================================================= */

.wave-goodbye {
    padding: 6rem 0;
    background: var(--charcoal);
    color: white;
    overflow: hidden;
    position: relative;
}

.wave-goodbye::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
}

.wave-goodbye h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -1.5px;
}

.scroll-text {
    overflow: hidden;
    white-space: nowrap;
}

.scroll-track {
    display: inline-block;
    animation: scroll 35s linear infinite;
}

.scroll-track span {
    display: inline-block;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    padding: 0 3rem;
    opacity: 0.5;
    text-decoration: line-through;
    letter-spacing: -1px;
    transition: var(--transition-smooth);
}

.scroll-track span:hover {
    opacity: 0.8;
    color: var(--sky-light);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =================================================================
   STATS - Luxury Display
   ================================================================= */

.stats-section {
    background: var(--gradient-soft);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.stat-card {
    background: white;
    border: 3px solid var(--sky-blue);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-large), var(--glow-sky-blue);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-big {
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -3px;
    position: relative;
}

.stat-text {
    font-size: 1.25rem;
    color: var(--slate);
    font-weight: 700;
    letter-spacing: 0.3px;
    position: relative;
}

/* =================================================================
   TESTIMONIALS - Premium Social Proof
   ================================================================= */

.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 3rem;
    transition: var(--transition-bounce);
    border: 2px solid rgba(135, 206, 235, 0.3);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: var(--sky-light);
    font-weight: 900;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--sky-light);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--sky-light);
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--slate);
    font-size: 0.9375rem;
    font-weight: 600;
}

.testimonial-rating {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(135, 206, 235, 0.2);
    font-size: 1.5rem;
    color: var(--sky-light);
}

/* =================================================================
   COVERAGE - Premium Location Display
   ================================================================= */

.coverage {
    background: var(--gradient-soft);
}

.coverage-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.location-badge {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--charcoal);
    border: 2px solid var(--sky-blue);
    transition: var(--transition-bounce);
}

.location-badge:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--gradient-card);
    box-shadow: var(--shadow-medium);
}

/* =================================================================
   CTA SECTIONS - Premium Conversion Design
   ================================================================= */

.cta {
    background: white;
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.cta-card {
    background: var(--gradient-card);
    border: 3px solid var(--sky-light);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.cta-card:hover::before {
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

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

.cta-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-large), var(--glow-sky-light);
}

.cta-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 2rem;
    filter: drop-shadow(var(--shadow-medium));
    transition: var(--transition-bounce);
}

.cta-card:hover .cta-icon {
    transform: scale(1.2) rotate(-5deg);
}

.cta-icon svg {
    width: 100%;
    height: 100%;
}

.cta-card p {
    font-size: 1.125rem;
    color: var(--slate);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    position: relative;
}

.cta-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    position: relative;
}

/* =================================================================
   CONTACT INFO - Luxury Display
   ================================================================= */

.contact-info {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-large);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.info-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-md);
    background: var(--gradient-card);
    transition: var(--transition-bounce);
    border: 2px solid transparent;
}

.info-item:hover {
    transform: scale(1.05);
    border-color: var(--sky-blue);
    box-shadow: var(--shadow-medium);
}

.info-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--slate);
    margin-bottom: 0.75rem;
}

.info-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.4;
}

/* =================================================================
   FOOTER - Sophisticated Design
   ================================================================= */

.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.03) 0%, rgba(74, 144, 226, 0.03) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-bounce);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: var(--glow-sky-light);
    border-color: white;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.875rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--sky-light);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
}

.footer-bottom p {
    font-size: 0.9375rem;
    font-weight: 500;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--sky-light);
}

/* =================================================================
   ICON STYLES
   ================================================================= */

.badge-icon {
    width: 24px;
    height: 24px;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.feature-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 2rem;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.cta-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 2rem;
}

.cta-icon svg {
    width: 100%;
    height: 100%;
}

/* =================================================================
   SCROLL ANIMATIONS & MICRO-INTERACTIONS
   ================================================================= */

/* Fade In Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation Delays */
.service-card:nth-child(1) { animation: slideInUp 0.6s ease-out 0.1s both; }
.service-card:nth-child(2) { animation: slideInUp 0.6s ease-out 0.2s both; }
.service-card:nth-child(3) { animation: slideInUp 0.6s ease-out 0.3s both; }
.service-card:nth-child(4) { animation: slideInUp 0.6s ease-out 0.4s both; }
.service-card:nth-child(5) { animation: slideInUp 0.6s ease-out 0.5s both; }
.service-card:nth-child(6) { animation: slideInUp 0.6s ease-out 0.6s both; }

.feature-card:nth-child(1) { animation: fadeInScale 0.6s ease-out 0.1s both; }
.feature-card:nth-child(2) { animation: fadeInScale 0.6s ease-out 0.2s both; }
.feature-card:nth-child(3) { animation: fadeInScale 0.6s ease-out 0.3s both; }
.feature-card:nth-child(4) { animation: fadeInScale 0.6s ease-out 0.4s both; }
.feature-card:nth-child(5) { animation: fadeInScale 0.6s ease-out 0.5s both; }
.feature-card:nth-child(6) { animation: fadeInScale 0.6s ease-out 0.6s both; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pulse Animation for Badges */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: var(--shadow-soft);
    }
    50% {
        box-shadow: var(--shadow-medium), var(--glow-sky-light);
    }
}

.hero-badge,
.section-badge {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Smooth Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Mobile Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .service-card:hover,
    .feature-card:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.97);
    }
    
    .service-card:active,
    .feature-card:active {
        transform: translateY(-5px);
    }
}

/* =================================================================
   RESPONSIVE DESIGN - Mobile Excellence
   ================================================================= */

@media (max-width: 968px) {
    .capsule-wrapper {
        border-radius: 60px;
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        width: calc(100% - 4rem);
        left: 2rem;
        right: 2rem;
        text-align: center;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-large);
        padding: 2rem 0;
        gap: 0;
        border-radius: 30px;
        border: 2px solid rgba(135, 206, 235, 0.2);
    }

    .nav-menu.active {
        left: 2rem;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(135, 206, 235, 0.2);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .logo-text {
        font-size: 1.25rem;
    }

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

    .footer-brand {
        max-width: 100%;
    }

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

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

    .cta-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-text-content {
        text-align: center;
    }

    .hero-image-content {
        order: -1;
    }

    .hero-image-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 968px) {
    .hero-content-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    section {
        padding: 4rem 0;
    }

    .capsule-container {
        padding: 0 1rem;
    }

    .capsule-wrapper {
        padding: 0.875rem 1.25rem;
        border-radius: 50px;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -1.5px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
        line-height: 1.6;
    }

    .hero-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero-image-wrapper {
        padding: 0.75rem;
        max-width: 100%;
    }

    .hero-image {
        min-height: 300px;
    }

    .image-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero-image-wrapper::before,
    .hero-image-wrapper::after {
        display: none;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .stat {
        padding: 1.75rem 2rem;
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 140px;
    }

    .stat-num {
        font-size: 2.75rem;
    }

    .stat-label {
        font-size: 0.9375rem;
    }

    .trust-items {
        gap: 2rem;
    }

    .trust-items > div {
        padding: 1rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .section-badge {
        font-size: 0.8125rem;
        padding: 0.625rem 1.5rem;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .service-card h3,
    .feature-card h3 {
        font-size: 1.5rem;
    }

    .card-icon,
    .feature-icon {
        width: 70px;
        height: 70px;
    }

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

    .location-badge {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2.5rem 2rem;
    }

    .stat-big {
        font-size: 3.5rem;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-icon {
        width: 80px;
        height: 80px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1.125rem 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .capsule-container {
        padding: 0 0.75rem;
    }

    .capsule-wrapper {
        padding: 0.75rem 1rem;
    }

    .logo-text {
        font-size: 1.125rem;
    }

    .hero {
        padding: 120px 0 50px;
    }

    .hero-title {
        font-size: 1.875rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
        gap: 0.5rem;
    }

    .hero-image {
        min-height: 250px;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat {
        padding: 1.5rem;
        flex: 1 1 100%;
    }

    .stat-num {
        font-size: 2.5rem;
    }

    .trust-items {
        gap: 1.5rem;
        flex-direction: column;
    }

    .trust-items > div {
        padding: 1rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .card-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .location-badge {
        padding: 0.875rem 1.25rem;
    }

    .scroll-track span {
        font-size: 1.5rem;
        padding: 0 1.25rem;
    }

    .btn {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

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

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

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

/* =================================================================
   PERFORMANCE OPTIMIZATIONS
   ================================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Smooth font rendering */
@supports (font-smooth: always) {
    body {
        font-smooth: always;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Hero Image Styling - Premium Design */
.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-content {
    text-align: left;
}

.hero-image-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255, 255, 255, 0.9);
    background: white;
    padding: 1.25rem;
    animation: float-image 6s ease-in-out infinite;
    width: 100%;
    max-width: 650px;
}

.hero-image {
    width: 100%;
    height: auto;
    min-height: 450px;
    display: block;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    object-fit: cover;
}

/* Desktop Responsive */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        gap: 3rem;
    }

    .hero-image-wrapper {
        max-width: 550px;
    }

    .hero-image {
        min-height: 380px;
    }
}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text-content {
        text-align: center;
        order: 1;
    }

    .hero-image-content {
        order: 2;
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-image {
        min-height: 350px;
    }

    .hero-title {
        font-size: 5.5rem;
        line-height: 1.05;
        letter-spacing: -2px;
        font-weight: 900;
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }
}

/* =================================================================
   MOBILE OPTIMIZATIONS - PHONE SPECIFIC
   ================================================================= */

@media (max-width: 968px) {
    .capsule-nav {
        padding: 1rem 0;
    }

    .capsule-wrapper {
        border-radius: 60px;
        padding: 1rem 1.25rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        width: calc(100% - 3rem);
        margin: 0 1.5rem;
        text-align: center;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-xl);
        padding: 2rem 0;
        gap: 0;
        border-radius: 30px;
        border: 2px solid rgba(135, 206, 235, 0.3);
    }

    .nav-menu.active {
        left: 0;
        margin: 0 1.5rem;
    }

    .nav-menu li {
        width: 100%;
        padding: 1.25rem 0;
        border-bottom: 1px solid rgba(135, 206, 235, 0.2);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu li a {
        font-size: 1.125rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .hero {
        padding: 140px 0 70px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
    }

    .hero-text-content {
        text-align: center;
        order: 1;
    }

    .hero-image-content {
        order: 2;
    }

    .hero-badge {
        margin: 0 auto 2rem;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-badge svg {
        width: 20px;
        height: 20px;
    }

    .hero-title {
        font-size: 5rem;
        line-height: 1.05;
        margin-bottom: 1.75rem;
        letter-spacing: -2px;
        font-weight: 900;
    }

    .hero-subtitle {
        font-size: 1.375rem;
        line-height: 1.7;
        margin-bottom: 2.25rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 100%;
        margin: 0 auto 4rem;
        border: 4px solid rgba(255, 255, 255, 0.9);
        padding: 1rem;
        background: white;
    }

    .hero-image {
        min-height: 320px;
        border-radius: var(--radius-md);
    }

    .hero-stats {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 1.25rem;
    }

    .capsule-container {
        padding: 0 1rem;
    }

    .capsule-wrapper {
        padding: 0.875rem 1.125rem;
        border-radius: 50px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero {
        padding: 120px 0 50px;
    }

    .hero-content-wrapper {
        gap: 2rem;
    }

    .hero-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        gap: 0.625rem;
        margin: 0 auto 1.25rem;
        max-width: fit-content;
    }

    .hero-badge svg {
        width: 16px;
        height: 16px;
    }

    .hero-title {
        font-size: 4.75rem;
        letter-spacing: -2px;
        line-height: 1.05;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        font-weight: 900;
    }

    .hero-subtitle {
        font-size: 1.375rem;
        line-height: 1.7;
        margin-bottom: 1.75rem;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.875rem;
        margin-bottom: 1.75rem;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-image-wrapper {
        padding: 0.875rem;
        max-width: 100%;
        margin: 0 auto 3.5rem;
        border: 3px solid rgba(255, 255, 255, 0.9);
        background: white;
    }

    .hero-image {
        min-height: 300px;
        border-radius: var(--radius-md);
    }

    .hero-stats {
        margin-top: 1.5rem;
    }

    .image-badge {
        bottom: 0.875rem;
        left: 0.875rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }

    .image-badge svg {
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
        flex-shrink: 0;
    }

    .hero-stats {
        gap: 1.25rem;
    }

    .stat {
        padding: 1.75rem 1.5rem;
        min-width: 0;
        flex: 1 1 calc(50% - 0.625rem);
    }

    .stat-num {
        font-size: 2.75rem;
    }

    .stat-label {
        font-size: 0.9375rem;
    }

    .trust-bar {
        padding: 2.5rem 0;
        margin-top: 4rem;
    }

    .trust-items {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .trust-items > div {
        padding: 1.25rem 1.5rem;
        min-width: 140px;
    }

    .trust-items strong {
        font-size: 1.125rem;
    }

    .trust-items span {
        font-size: 0.9375rem;
    }

    .section-header {
        margin-bottom: 3.5rem;
    }

    .section-badge {
        font-size: 0.8125rem;
        padding: 0.625rem 1.5rem;
    }

    .section-title {
        font-size: 2.125rem;
        letter-spacing: -1px;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 2.25rem 1.75rem;
    }

    .service-card h3,
    .feature-card h3 {
        font-size: 1.5rem;
    }

    .card-icon,
    .feature-icon {
        width: 72px;
        height: 72px;
    }

    .cta-icon {
        width: 84px;
        height: 84px;
    }

    .coverage-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.125rem;
    }

    .location-badge {
        padding: 1.125rem 1.5rem;
        font-size: 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 2.25rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .capsule-container {
        padding: 0 0.875rem;
    }

    .capsule-wrapper {
        padding: 0.75rem 1rem;
        border-radius: 40px;
    }

    .logo-text {
        font-size: 1.0625rem;
    }

    .nav-menu {
        top: 100px;
        width: calc(100% - 2rem);
        margin: 0 1rem;
    }

    .nav-menu.active {
        margin: 0 1rem;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-content-wrapper {
        gap: 1.75rem;
    }

    .hero-badge {
        padding: 0.625rem 1.125rem;
        font-size: 0.75rem;
        gap: 0.5rem;
        margin: 0 auto 1rem;
    }

    .hero-badge svg {
        width: 14px;
        height: 14px;
    }

    .hero-title {
        font-size: 4.25rem;
        letter-spacing: -1.5px;
        line-height: 1.05;
        margin-bottom: 1.25rem;
        padding: 0 0.25rem;
        font-weight: 900;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        padding: 0 0.25rem;
    }

    .hero-buttons {
        margin-bottom: 1.5rem;
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .btn {
        padding: 0.9375rem 1.75rem;
        font-size: 0.9375rem;
    }

    .hero-image-wrapper {
        padding: 0.75rem;
        margin: 0 auto 3rem;
        border: 3px solid rgba(255, 255, 255, 0.9);
        background: white;
    }

    .hero-image {
        min-height: 250px;
        border-radius: var(--radius-md);
    }

    .hero-stats {
        margin-top: 1.25rem;
    }

    .image-badge {
        bottom: 0.75rem;
        left: 0.75rem;
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
        gap: 0.5rem;
    }

    .image-badge svg {
        width: 16px;
        height: 16px;
        min-width: 16px;
        min-height: 16px;
        flex-shrink: 0;
    }

    .hero-stats {
        gap: 1rem;
        flex-direction: column;
    }

    .stat {
        padding: 1.5rem;
        flex: 1 1 100%;
        max-width: 100%;
    }

    .stat-num {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .trust-bar {
        margin-top: 3rem;
        padding: 2rem 0;
    }

    .trust-items {
        gap: 1.25rem;
        flex-direction: column;
    }

    .trust-items > div {
        padding: 1rem;
        width: 100%;
    }

    .trust-items strong {
        font-size: 1rem;
    }

    .trust-items span {
        font-size: 0.875rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid {
        gap: 1.5rem;
    }

    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .card-icon,
    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .cta-icon {
        width: 76px;
        height: 76px;
    }

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

    .location-badge {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }

    .scroll-track span {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
}
