/* ========================================
   Leidies Cleaning Services LLC - Styles
   Modern Landing Page with Pink Warm Theme
   ======================================== */

/* ========================================
   1. CSS Variables & Reset
   ======================================== */

:root {
    /* Color Palette - Pink Warm Theme */
    --pink-primary: #FF1493;
    --pink-vibrant: #FF69B4;
    --pink-soft: #FFB6C1;
    --pink-coral: #FF6B9D;
    --pink-light: #FFC0CB;
    --pink-very-light: #FFF5F7;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #6C757D;
    --black-soft: #2D2D2D;
    --gold: #FFD700;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    --spacing-xxxl: 96px;
    
    /* Transitions - REMOVED FOR PERFORMANCE */
    /* --transition: all 0.3s ease; */
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(255, 105, 180, 0.1);
    --shadow-md: 0 4px 12px rgba(255, 105, 180, 0.15);
    --shadow-lg: 0 8px 24px rgba(255, 105, 180, 0.2);
    --shadow-xl: 0 12px 32px rgba(255, 105, 180, 0.25);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--black-soft);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Section Styling */
section {
    padding: var(--spacing-xxxl) 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--pink-primary);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-medium);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

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

.btn-primary:hover {
    background: var(--pink-vibrant);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--black-soft);
    border: 2px solid var(--white);
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--pink-very-light);
    color: var(--pink-primary);
    border-color: var(--pink-primary);
}

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

.btn-white:hover {
    background: var(--pink-very-light);
}

.btn-dark-pink {
    background: var(--pink-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-dark-pink:hover {
    background: var(--pink-vibrant);
}

.badge-offer {
    background: var(--white);
    color: var(--black-soft);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 8px;
    letter-spacing: 0.5px;
    border: 2px solid var(--black-soft);
}

/* Animations - REMOVED FOR PERFORMANCE */
/*
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
*/

/* ========================================
   2. Header / Navigation
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    gap: var(--spacing-md);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-vibrant));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--black-soft);
    line-height: 1.2;
}

/* Navigation */
.nav-list {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--black-soft);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--pink-primary);
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink-primary);
}

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

/* Header CTA */
.header-cta {
    background: var(--pink-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--pink-vibrant);
    transform: scale(1.05);
}

.header-cta i {
    margin-right: 8px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--pink-primary);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   3. Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero-bg.jpg?v=3');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--spacing-xxxl) 0;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.35), rgba(255, 182, 193, 0.35));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: var(--spacing-xl);
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.hero-phone {
    margin-bottom: var(--spacing-xl);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(255, 20, 147, 0.8);
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
}

.phone-link:hover {
    background: var(--pink-primary);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.badge-item {
    background: rgba(255, 255, 255, 0.95);
    color: var(--black-soft);
    padding: var(--spacing-md);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
}

.badge-item:hover {
    box-shadow: var(--shadow-lg);
}

.badge-item i {
    font-size: 1.8rem;
    color: var(--pink-primary);
}

.badge-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========================================
   4. Before/After Section
   ======================================== */

.before-after {
    background: var(--gray-light);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.comparison-card {
    background: var(--white);
    border-radius: 24px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.comparison-card:hover {
    box-shadow: var(--shadow-xl);
}

.before-card {
    border: 3px solid var(--pink-soft);
}

.after-card {
    border: 3px solid var(--pink-primary);
    position: relative;
}

.after-card::before {
    content: '✨';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 3rem;
}

/* Pulse animation - REMOVED FOR PERFORMANCE */
/*
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}
*/

.comparison-label {
    display: inline-block;
    background: var(--pink-soft);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
}

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

.comparison-title {
    color: var(--black-soft);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.comparison-note {
    color: var(--gray-medium);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.comparison-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: var(--spacing-md);
}

.comparison-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-card .comparison-image {
    filter: grayscale(30%) brightness(0.9);
}

.after-card .comparison-image {
    filter: brightness(1.1) saturate(1.2);
}

.comparison-card:hover .comparison-image {
    /* No transform for performance */
}

.comparison-subtitle {
    color: var(--pink-primary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.comparison-text {
    color: var(--gray-medium);
    line-height: 1.7;
}

/* ========================================
   5. Services Section
   ======================================== */

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
}

/* Service Image Placeholder */
.service-image-placeholder {
    width: 100%;
    height: 240px;
    background: var(--pink-very-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: var(--pink-primary);
    border-bottom: 3px solid var(--pink-soft);
}

.service-image-placeholder i {
    font-size: 4rem;
    color: var(--pink-primary);
}

.service-image-placeholder p {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-style: italic;
    margin: 0;
}

.service-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card:hover .service-image {
    /* No transform for performance */
}

.service-content {
    padding: var(--spacing-md);
}

.service-title {
    color: var(--pink-primary);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.service-description {
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================
   6. About Us Section
   ======================================== */

.about {
    background: var(--pink-very-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: var(--spacing-md);
}

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

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-vibrant));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
}

.feature-title {
    color: var(--black-soft);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.feature-description {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* ========================================
   7. Testimonials Section
   ======================================== */

.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background: var(--pink-very-light);
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--pink-soft);
    margin-bottom: var(--spacing-sm);
}

.testimonial-photo-wrapper {
    width: 150px;
    height: 150px;
    margin-bottom: var(--spacing-lg);
}

.testimonial-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--pink-primary);
}

.quote-icon {
    font-size: 4rem;
    color: var(--pink-soft);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--black-soft);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.testimonial-name {
    color: var(--pink-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-location {
    color: var(--gray-medium);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Testimonial Placeholder Styles */
.testimonial-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: var(--gray-light);
    border: 2px dashed var(--pink-soft);
}

.testimonial-icon {
    font-size: 5rem;
    color: var(--pink-soft);
    margin-bottom: var(--spacing-md);
}

.placeholder-text {
    color: var(--gray-medium);
    font-size: 1rem;
    font-style: italic;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.testimonials-note {
    text-align: center;
    color: var(--gray-medium);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: var(--spacing-xl);
}

/* ========================================
   8. Final CTA Section
   ======================================== */

.cta-final {
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-vibrant));
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    /* Animation removed for performance */
}

/* Background animation - REMOVED FOR PERFORMANCE */
/*
@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}
*/

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.cta-phone-large {
    margin-top: var(--spacing-md);
}

.cta-phone-large a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.cta-phone-large a:hover {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* ========================================
   9. Footer
   ======================================== */

.footer {
    background: var(--black-soft);
    color: var(--white);
    padding: var(--spacing-xxxl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-md);
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-vibrant));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.footer-brand {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
}

.footer-description {
    color: var(--gray-medium);
    line-height: 1.7;
}

.footer-title {
    color: var(--pink-vibrant);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-medium);
}

.footer-links a:hover {
    color: var(--pink-vibrant);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-medium);
}

.footer-contact i {
    color: var(--pink-vibrant);
    font-size: 1.2rem;
    min-width: 20px;
}

.footer-contact a {
    /* No transition */
}

.footer-contact a:hover {
    color: var(--pink-vibrant);
}

/* Sub-footer */
.sub-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-md) 0;
    text-align: center;
}

.sub-footer p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

/* ========================================
   10. Floating Call Button (Mobile)
   ======================================== */

.floating-call-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--pink-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    /* Animation removed for performance */
}

.floating-call-btn:hover {
    background: var(--pink-vibrant);
}

/* Floating pulse animation - REMOVED FOR PERFORMANCE */
/*
@keyframes floatingPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 20, 147, 0);
    }
}
*/

/* ========================================
   11. Responsive Design
   ======================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.3rem; }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Header */
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 100px var(--spacing-md) var(--spacing-md);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: var(--spacing-sm) 0;
    }
    
    .header-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo-name {
        font-size: 0.85rem;
    }
    
    /* Hero */
    .hero {
        min-height: 90vh;
        background-attachment: scroll;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .phone-link {
        font-size: 1.2rem;
        padding: 12px 24px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }
    
    .badge-item {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-sm);
    }
    
    .badge-item span {
        font-size: 0.85rem;
    }
    
    /* Sections */
    section {
        padding: var(--spacing-xxl) 0;
    }
    
    .comparison-grid,
    .services-grid,
    .about-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    /* CTA Final */
    .cta-final {
        padding: var(--spacing-xxl) 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-phone-large a {
        font-size: 1.5rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .floating-call-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ========================================
   12. Utility Classes
   ======================================== */

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

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

/* Scroll Reveal Animation - REMOVED FOR PERFORMANCE */
.reveal {
    opacity: 1;
    /* Removed transform and transition for performance */
}

.reveal.active {
    opacity: 1;
}

/* Print Styles */
@media print {
    .header,
    .floating-call-btn,
    .hamburger {
        display: none;
    }
}