/* =========================================
   PEPPY'S CLEANING - PREMIUM STYLESHEET
   Brand Colors: Purple #5a2a83, Teal #1cb5b4
   ========================================= */

/* CSS Custom Properties */
:root {
    /* Brand Colors */
    --primary: #5a2a83;
    --primary-dark: #4a1f6b;
    --primary-light: #6d3496;
    --accent: #1cb5b4;
    --accent-dark: #17a09f;
    --accent-light: #2bc9c7;
    
    /* Neutral Colors */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --white: #ffffff;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elastic: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */

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

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-700);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body.menu-open {
    overflow: hidden;
}

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

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

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

/* =========================================
   CLEANING ANIMATIONS BACKGROUND
   ========================================= */

.cleaning-animation {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Sparkle Animation */
.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%;
}

.sparkle::before {
    width: 8px;
    height: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--accent);
}

.sparkle::after {
    width: 4px;
    height: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
}

.sparkle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
}

.sparkle-4 {
    top: 60%;
    right: 25%;
    animation-delay: 0.5s;
}

.sparkle-5 {
    bottom: 40%;
    left: 50%;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Bubble Animation */
.bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, rgba(28, 181, 180, 0.2), rgba(90, 42, 131, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(28, 181, 180, 0.3);
    animation: bubble-float 8s ease-in-out infinite;
}

.bubble::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    filter: blur(2px);
}

.bubble-1 {
    left: 20%;
    width: 50px;
    height: 50px;
    animation-delay: 0s;
    animation-duration: 10s;
}

.bubble-2 {
    left: 60%;
    width: 35px;
    height: 35px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.bubble-3 {
    left: 80%;
    width: 45px;
    height: 45px;
    animation-delay: 4s;
    animation-duration: 9s;
}

@keyframes bubble-float {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 110vh;
        opacity: 0;
        transform: translateX(100px) rotate(360deg);
    }
}

/* =========================================
   NAVIGATION
   ========================================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(90, 42, 131, 0.1);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: transform var(--transition-base);
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--transition-base);
}

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

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

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

.nav-cta {
    padding: 0.625rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 0 0 0 rgba(90, 42, 131, 0.4);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 42, 131, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    transform: translateY(-100%);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
}

.mobile-link,
.mobile-cta {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    padding: 0.5rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    transition: all var(--transition-fast);
}

.mobile-link:active {
    transform: scale(0.95);
    opacity: 0.7;
}

.mobile-cta {
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

.mobile-cta:active {
    transform: scale(0.95);
    background: var(--primary-dark);
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(90, 42, 131, 0.05) 0%, 
        rgba(28, 181, 180, 0.05) 50%, 
        rgba(90, 42, 131, 0.03) 100%);
}

/* Floating Elements Animation */
.floating-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    opacity: 0.08;
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
    animation-delay: 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: white;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-emphasis {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(90, 42, 131, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(90, 42, 131, 0.4);
}

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

.btn-secondary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    animation: fadeIn 1s ease-out 1s backwards;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--gray-400);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* =========================================
   COMMON COMPONENTS
   ========================================= */

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 110px; /* Positioned to the LEFT of Tawk */
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--dark);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Pulse animation for WhatsApp button */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    animation: none;
}

/* Ensure Tawk widget stays on top */
#tawk-bubble-container,
.tawk-min-container,
.tawk-button {
    z-index: 1000 !important;
}



/* =========================================
   SERVICES SECTION
   ========================================= */

.services {
    padding: 6rem 0;
    background: white;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
    padding: 2.5rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
    opacity: 0;
    transform: translateY(30px);
}

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

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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


.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    padding: 0.375rem 1rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    transition: transform var(--transition-elastic);
}

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

.service-icon {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* =========================================
   HOW IT WORKS SECTION
   ========================================= */

.how-it-works {
    padding: 6rem 0;
    background: white;
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 16.66%;
    right: 16.66%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    z-index: 0;
}

.step-item {
    position: relative;
    text-align: center;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.step-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.step-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: white;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-areas {
    padding: 6rem 0;
    background: white;
    position: relative;
    z-index: 1;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.area-card {
   
    width: calc(33.333% - 1.4rem); 
    min-width: 300px; 
    
    padding: 2rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    box-sizing: border-box;
}

.area-card:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}


.area-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.area-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.area-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* =========================================
   ABOUT SECTION
   ========================================= */

.about {
    padding: 6rem 0;
    background: var(--gray-100);
    position: relative;
    z-index: 1;
}

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

.about-text {
    color: var(--gray-700);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-values {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all var(--transition-slow);
}

.value-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.value-item:nth-child(1) { transition-delay: 0.1s; }
.value-item:nth-child(2) { transition-delay: 0.2s; }
.value-item:nth-child(3) { transition-delay: 0.3s; }

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.value-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.value-content p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* Visual Cards */
.about-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
    opacity: 0;
}

.visual-card.visible {
    opacity: 1;
}

.card-1 {
    width: 200px;
    top: 0;
    left: 0;
    transform: rotate(-3deg);
    animation: cardFloat1 6s ease-in-out infinite;
}

.card-2 {
    width: 220px;
    top: 120px;
    right: 50px;
    transform: rotate(2deg);
    animation: cardFloat2 7s ease-in-out infinite;
}

.card-3 {
    width: 200px;
    bottom: 0;
    left: 80px;
    transform: rotate(1deg);
    animation: cardFloat3 8s ease-in-out infinite;
}

@keyframes cardFloat1 {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-15px); }
}

@keyframes cardFloat2 {
    0%, 100% { transform: rotate(2deg) translateY(0); }
    50% { transform: rotate(2deg) translateY(-20px); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: rotate(1deg) translateY(0); }
    50% { transform: rotate(1deg) translateY(-12px); }
}

.card-shine {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.8) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0%, 100% { background-position: -100% 0; }
    50% { background-position: 200% 0; }
}

.card-content {
    position: relative;
    text-align: center;
}

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--primary);
    stroke-width: 2;
}

.card-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
}

/* =========================================
   REVIEWS SECTION
   ========================================= */

.reviews {
    padding: 6rem 0;
    background: white;
    position: relative;
    z-index: 1;
}

.reviews-widget {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    min-height: 400px;
}

.embedsocial-reviews {
    width: 100%;
}

/* =========================================
   WHY US SECTION
   ========================================= */

.why-us {
    padding: 6rem 0;
    background: var(--gray-100);
    position: relative;
    z-index: 1;
}

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

.why-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-item {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
    opacity: 0;
    transform: translateY(30px);
}

.why-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-item:nth-child(1) { transition-delay: 0.1s; }
.why-item:nth-child(2) { transition-delay: 0.2s; }
.why-item:nth-child(3) { transition-delay: 0.3s; }
.why-item:nth-child(4) { transition-delay: 0.4s; }
.why-item:nth-child(5) { transition-delay: 0.5s; }
.why-item:nth-child(6) { transition-delay: 0.6s; }

.why-item:hover {
    background: white;
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.why-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    opacity: 1;
    transition: opacity var(--transition-base);
}

.why-item h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.why-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* =========================================
   QUOTE CALCULATOR
   ========================================= */

.quote-calculator {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    position: relative;
    z-index: 1;
}

.quote-calculator .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.quote-calculator .section-title {
    color: white;
}

.quote-calculator .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.calculator-form {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.calc-step {
    margin-bottom: 2.5rem;
}

.calc-step label {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.calc-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.calc-option {
    padding: 1.5rem 1rem;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

.calc-option:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
}

.calc-option.active {
    background: white;
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.option-label {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.option-price {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 700;
}

.calc-result {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    text-align: center;
}

.result-label {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.result-price {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.result-note {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* =========================================
   FAQ SECTION
   ========================================= */

.faq {
    padding: 6rem 0;
    background: var(--gray-100);
    position: relative;
    z-index: 1;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    transition: all var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* =========================================
   CONTACT SECTION
   ========================================= */

.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, white 100%);
    position: relative;
    z-index: 1;
}

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

.contact-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

.contact-method {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-md);
}

.method-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    stroke-width: 2;
}

.method-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.method-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark);
    transition: all var(--transition-base);
    background: white;
    min-height: 44px;
    -webkit-appearance: none;
    appearance: none;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message:not(:empty) {
    display: block;
}

.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.btn-loading {
    display: none;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
    padding: 4rem 0 2rem;
    background: var(--dark);
    color: white;
    position: relative;
    z-index: 1;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

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

.footer-tagline {
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-column a,
.footer-column span {
    display: block;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
    transition: color var(--transition-base);
    font-size: 0.9375rem;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-visual {
        height: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        min-height: 100vh;
        padding: 8rem 1.5rem 4rem;
    }
    
    .hero-stats {
        margin-bottom: 3rem;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1 1 auto;
        min-width: 100px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Faster animations for mobile */
    .service-card:nth-child(1) { transition-delay: 0.05s; }
    .service-card:nth-child(2) { transition-delay: 0.1s; }
    .service-card:nth-child(3) { transition-delay: 0.15s; }
    .service-card:nth-child(4) { transition-delay: 0.2s; }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Faster animation for mobile */
    .why-item:nth-child(1) { transition-delay: 0.05s; }
    .why-item:nth-child(2) { transition-delay: 0.1s; }
    .why-item:nth-child(3) { transition-delay: 0.15s; }
    .why-item:nth-child(4) { transition-delay: 0.2s; }
    .why-item:nth-child(5) { transition-delay: 0.25s; }
    .why-item:nth-child(6) { transition-delay: 0.3s; }
    
    .calc-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .calculator-form {
        padding: 2rem 1.5rem;
    }
    
    .calculator-result {
        padding: 2rem 1.5rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .about-visual {
        display: none;
    }
    
    .nav-container {
        padding: 0.875rem 1.5rem;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .footer-logo-img {
        height: 60px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 25px;
        right: 100px; /* Positioned to the left of Tawk on mobile */
    }
    
    .whatsapp-float svg {
        width: 76px;
        height: 76px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.875rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .hero {
        padding: 7rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .service-card,
    .why-item {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.9375rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .calc-options {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .calc-option {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
        min-height: 48px;
    }
    
    .calc-option:active {
        transform: scale(0.98);
    }
    
    .logo-img {
        height: 90px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .mobile-menu {
        padding: 2rem 1.5rem;
    }
    
    .mobile-link {
        font-size: 1.25rem;
    }
}

/* =========================================
   FLOATING PHONE BUTTON
   ========================================= */

.phone-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5a2a83, #1cb5b4);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(90, 42, 131, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.phone-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(90, 42, 131, 0.6);
}

.phone-float svg {
    width: 28px;
    height: 28px;
    color: white;
}

.phone-tooltip {
    position: absolute;
    right: 70px;
    background: #0f172a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    font-family: inherit;
}

.phone-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #0f172a;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.phone-float:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes phonePulse {
    0% {
        box-shadow: 0 4px 14px rgba(90, 42, 131, 0.4), 0 0 0 0 rgba(90, 42, 131, 0.5);
    }
    50% {
        box-shadow: 0 4px 14px rgba(90, 42, 131, 0.4), 0 0 0 12px rgba(90, 42, 131, 0);
    }
    100% {
        box-shadow: 0 4px 14px rgba(90, 42, 131, 0.4), 0 0 0 0 rgba(90, 42, 131, 0);
    }
}

.phone-float {
    animation: phonePulse 2.5s infinite;
}

.phone-float:hover {
    animation: none;
}

/* Adjust whatsapp position now Tawk is gone - move to right edge */
.whatsapp-float {
    right: 90px;
}

@media (max-width: 768px) {
    .phone-float {
        width: 52px;
        height: 52px;
        bottom: 18px;
        right: 18px;
    }
    .phone-float svg {
        width: 24px;
        height: 24px;
    }
    .phone-tooltip {
        display: none;
    }
    .whatsapp-float {
        right: 80px;
        bottom: 18px;
    }
}