/* ===================================
   FriendsCleaningUp - Fresh & Clean UI
   Light & Airy Color Palette  
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&family=Poppins:wght@400;600;700;800;900&display=swap');

:root {
    /* Primary Brand Colors */
    --primary: #8DD9F7;
    --primary-dark: #4DC6E0;
    --primary-light: #D7F3FF;
    --secondary: #B9F3E4;
    --secondary-dark: #A6E6D3;
    --accent: #F4D175;
    --accent-dark: #F7EDE2;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-warm-sand: #F7EDE2;
    --bg-ultra-light: #F2F4F7;
    --bg-soft-mint: #B9F3E4;
    --bg-bubble-blue: #D7F3FF;
    --bg-ice-grey: #E9EFF3;
    
    /* Text Colors */
    --text-primary: #203A4B;
    --text-dark: #2A2A2A;
    --text-secondary: #6E7C86;
    --text-muted: #6E7C86;
    
    /* UI Element Colors */
    --success: #58CBA5;
    --error: #F17F7F;
    --fresh-aqua: #4DC6E0;
    --light-ocean: #A6E6D3;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8DD9F7 0%, #4DC6E0 100%);
    --gradient-secondary: linear-gradient(135deg, #B9F3E4 0%, #A6E6D3 100%);
    --gradient-hero: linear-gradient(135deg, rgba(141, 217, 247, 0.15) 0%, rgba(185, 243, 228, 0.15) 100%);
    --gradient-warm: linear-gradient(135deg, #F7EDE2 0%, #FFFFFF 100%);
    
    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Poppins', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(32, 58, 75, 0.06);
    --shadow-md: 0 4px 20px rgba(32, 58, 75, 0.08);
    --shadow-lg: 0 10px 40px rgba(32, 58, 75, 0.12);
    --shadow-xl: 0 20px 60px rgba(32, 58, 75, 0.15);
    --shadow-glow: 0 0 30px rgba(141, 217, 247, 0.3);
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ===================================
   Enhanced Smooth Animations
   =================================== */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-25px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes shimmer {
    0% { background-position: -1500px 0; }
    100% { background-position: 1500px 0; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.9; }
}

@keyframes sparkle {
    0%, 100% { box-shadow: 0 0 15px rgba(141, 217, 247, 0.4); }
    50% { box-shadow: 0 0 35px rgba(141, 217, 247, 0.9), 0 0 50px rgba(77, 198, 224, 0.6); }
}

@keyframes slideInFromBottom {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInFromTop {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 12px rgba(141, 217, 247, 0.5); }
    50% { box-shadow: 0 0 28px rgba(141, 217, 247, 1), 0 0 40px rgba(77, 198, 224, 0.8); }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
    25% { transform: translateY(-12px) scale(1.03) rotate(1deg); }
    50% { transform: translateY(-22px) scale(1.05) rotate(0deg); }
    75% { transform: translateY(-12px) scale(1.03) rotate(-1deg); }
}

@keyframes shine {
    0% { transform: rotate(0deg) translate(-50%, -50%); opacity: 0.5; }
    50% { opacity: 1; }
    100% { transform: rotate(360deg) translate(-50%, -50%); opacity: 0.5; }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 209, 117, 0.8); }
    50% { transform: scale(1.3); box-shadow: 0 0 0 15px rgba(244, 209, 117, 0); }
}

@keyframes loading {
    0% { width: 0%; opacity: 0.8; }
    50% { width: 75%; opacity: 1; }
    100% { width: 100%; opacity: 0.8; }
}

@keyframes rippleWave {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rippleExpand {
    0% { 
        transform: scale(1);
        opacity: 0.6;
    }
    100% { 
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes bounceIn {
    0% { 
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    60% { 
        transform: scale(1.15) rotate(10deg);
    }
    100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes textPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.08);
        opacity: 0.9;
    }
}

@keyframes dotBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}

@keyframes loadingSlide {
    0% { 
        width: 0%;
        background-position: 0% 50%;
    }
    50% { 
        width: 80%;
        background-position: 100% 50%;
    }
    100% { 
        width: 100%;
        background-position: 200% 50%;
    }
}

@keyframes loadingShine {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* ===================================
   Base Styles - Light & Airy Theme
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-ultra-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(141, 217, 247, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(185, 243, 228, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(244, 209, 117, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===================================
   Modern Ripple Wave Preloader
   =================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #FFFFFF 0%, #D7F3FF 50%, #8DD9F7 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.logo-container {
    position: relative;
    width: 320px;
    height: 280px;
    margin-bottom: 60px;
    animation: bounceIn 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #8DD9F7 0%, #4DC6E0 50%, #B9F3E4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(141, 217, 247, 0.5),
                0 0 80px rgba(77, 198, 224, 0.3);
    animation: rippleWave 2.5s ease-in-out infinite;
    position: relative;
    overflow: visible;
}

.logo-circle::before {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    border: 4px solid rgba(141, 217, 247, 0.4);
    animation: rippleExpand 2.5s ease-out infinite;
}

.logo-circle::after {
    content: '';
    position: absolute;
    inset: -60px;
    border-radius: 50%;
    border: 3px solid rgba(77, 198, 224, 0.3);
    animation: rippleExpand 2.5s ease-out infinite 0.8s;
}

.logo-text {
    font-size: 70px;
    font-weight: 900;
    font-family: var(--font-display);
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 5px 20px rgba(32, 58, 75, 0.4);
    letter-spacing: -3px;
    animation: textPulse 2s ease-in-out infinite;
}

.logo-dot {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #F4D175, #F7EDE2);
    border-radius: 50%;
    border: 6px solid white;
    animation: dotBounce 1.5s ease-in-out infinite;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(244, 209, 117, 0.6);
}

.loading-bar {
    width: 320px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(32, 58, 75, 0.1);
    backdrop-filter: blur(10px);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #8DD9F7, #4DC6E0, #B9F3E4);
    background-size: 200% 100%;
    border-radius: 20px;
    animation: loadingSlide 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(141, 217, 247, 0.8);
    position: relative;
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 100%
    );
    animation: loadingShine 2s infinite;
}

/* ===================================
   Scroll Progress Bar
   =================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 8px rgba(141, 217, 247, 0.4);
}

/* ===================================
   Navbar - Light & Clean
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 25px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 35px rgba(32, 58, 75, 0.12),
                0 0 20px rgba(141, 217, 247, 0.1);
    padding: 18px 0;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.navbar-logo-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-logo-icon img {
    width: 100%;
    height: 100%;
    /* height: 100px; */
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(141, 217, 247, 0.3));
}

.navbar-logo-icon:hover {
    transform: rotate(360deg) scale(1.2);
}
    
    .navbar-logo-text {
        font-size: 28px;
        font-weight: 900;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -0.5px;
    }

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 10px 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(141, 217, 247, 0.5);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-bubble-blue);
    border: 2px solid rgba(141, 217, 247, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-toggle:hover {
    background: rgba(141, 217, 247, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.language-toggle i {
    color: var(--primary);
    font-size: 16px;
}

.language-toggle span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* ===================================
   Buttons - Fresh & Modern
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 6px 25px rgba(141, 217, 247, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4DC6E0 0%, #8DD9F7 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(141, 217, 247, 0.6),
                0 0 30px rgba(77, 198, 224, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-5px) rotate(2deg) scale(1.05);
    box-shadow: 0 10px 35px rgba(141, 217, 247, 0.5);
}

.btn-lg {
    padding: 20px 45px;
    font-size: 16px;
}

.btn i {
    position: relative;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

/* ===================================
   Container & Sections
   =================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 130px 0;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 90px;
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--bg-bubble-blue);
    border: 2px solid rgba(141, 217, 247, 0.3);
    border-radius: 50px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    animation: gentleFloat 3s ease-in-out infinite;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 28px;
    color: var(--text-primary);
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.9;
}

/* ===================================
   Hero Section - Light & Vibrant
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 170px 0 120px;
    overflow: hidden;
    background: var(--gradient-warm);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 0;
}

.hero[style*="background"] {
    position: relative;
}

.hero[style*="background"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(247, 237, 226, 0.85) 0%, 
        rgba(255, 255, 255, 0.7) 50%,
        rgba(215, 243, 255, 0.85) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero[style*="background"] .container {
    position: relative;
    z-index: 1;
}

.floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.25;
    animation: float 25s ease-in-out infinite;
    z-index: 0;
}

.blob-1 {
    width: 450px;
    height: 450px;
    background: var(--primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: 15%;
    right: 15%;
    animation-delay: 7s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    top: 50%;
    right: 10%;
    animation-delay: 14s;
}

.hero-content {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--bg-white);
    border: 2px solid rgba(141, 217, 247, 0.3);
    border-radius: 50px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 35px;
    animation: fadeInDown 0.9s ease;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    margin-bottom: 35px;
    line-height: 1.15;
    animation: fadeInUp 0.9s ease 0.2s both;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 55px;
    line-height: 1.9;
    animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.6s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    margin-top: 110px;
    animation: fadeInUp 0.9s ease 0.8s both;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(141, 217, 247, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-number {
    font-size: 3.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-label {
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
}

/* ===================================
   Cards - Glass Effect
   =================================== */

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(141, 217, 247, 0.2);
    border-radius: 24px;
    padding: 45px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(141, 217, 247, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.glass-card:hover::before {
    opacity: 1;
    transform: scale(1.5);
}

.glass-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 30px 70px rgba(141, 217, 247, 0.35),
                0 0 50px rgba(77, 198, 224, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

/* ===================================
   Services Section
   =================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 35px;
    margin-top: 70px;
}

.service-card {
    position: relative;
    padding: 45px 40px;
    text-align: center;
}

.service-card > img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center center;
    border-radius: 18px;
    margin-bottom: 28px;
    display: block;
    background: var(--bg-ice-grey);
    box-shadow: var(--shadow-sm);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover > img {
    transform: scale(1.12) translateY(-8px);
    box-shadow: 0 20px 50px rgba(141, 217, 247, 0.4);
    border-radius: 24px;
}

.service-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 32px;
    border-radius: 22px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: white;
    box-shadow: 0 12px 35px rgba(141, 217, 247, 0.35);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 15px 45px rgba(141, 217, 247, 0.5);
}

.service-title {
    font-size: 1.7rem;
    margin-bottom: 22px;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.service-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(88, 203, 165, 0.15);
    border-radius: 50%;
}

/* ===================================
   Portfolio / Gallery
   =================================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 45px;
    margin-top: 70px;
}

.portfolio-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-white);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(141, 217, 247, 0.15);
    box-shadow: var(--shadow-card);
}

.portfolio-item:hover {
    transform: translateY(-15px) rotate(-2deg);
    border-color: var(--primary);
    box-shadow: 0 30px 70px rgba(141, 217, 247, 0.35),
                0 0 40px rgba(77, 198, 224, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center center;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
    background: var(--bg-ice-grey);
    border-radius: 24px 24px 0 0;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.15) rotate(3deg);
    filter: brightness(1.1) saturate(1.2);
}

.portfolio-content {
    padding: 35px;
}

.portfolio-category {
    display: inline-block;
    padding: 7px 18px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    margin-bottom: 18px;
}

.portfolio-title {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.portfolio-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.portfolio-meta {
    display: flex;
    gap: 22px;
    align-items: center;
    padding-top: 22px;
    border-top: 2px solid rgba(141, 217, 247, 0.15);
}

.portfolio-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.portfolio-meta-item i {
    color: var(--primary);
}

/* Legacy overlay (keeping for backwards compatibility) */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
    padding: 35px;
    text-align: center;
    pointer-events: none;
}

/* ===================================
   About Section
   =================================== */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.about-text h3 {
    font-size: 2.4rem;
    margin-bottom: 28px;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 22px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 45px;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 18px;
    padding: 22px;
    background: rgba(141, 217, 247, 0.08);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    background: rgba(141, 217, 247, 0.12);
}

.feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===================================
   Contact Form
   =================================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 22px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(141, 217, 247, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(141, 217, 247, 0.3);
}

.contact-details h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(141, 217, 247, 0.2);
    border-radius: 14px;
    color: var(--text-dark);
    font-size: 15px;
    font-family: var(--font-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(141, 217, 247, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

/* ===================================
   Testimonials
   =================================== */

.testimonial-item img {
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto 22px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 28px;
    padding: 45px;
    position: relative;
    border: 2px solid rgba(141, 217, 247, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 35px;
    box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(141, 217, 247, 0.25);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 25px;
    left: 35px;
    font-size: 90px;
    color: var(--primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 28px;
}

.testimonial-avatar {
    width: 75px;
    height: 75px;
    min-width: 75px;
    min-height: 75px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    border: 3px solid var(--primary);
    box-shadow: 0 10px 28px rgba(141, 217, 247, 0.3);
    display: block;
    background: var(--bg-ice-grey);
}

.testimonial-info h4 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.testimonial-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.testimonial-rating {
    margin-bottom: 22px;
}

.testimonial-rating i {
    color: #FFC107;
    font-size: 1.05rem;
    margin-right: 4px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.9;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ===================================
   Scroll Popup Modal
/* ===================================
   Scroll Popup - Removed (No promotional messages)
   =================================== */

/* Popup functionality removed per user request */

/* ===================================
   Footer - Light & Elegant
   =================================== */

.footer {
    background: var(--bg-warm-sand);
    padding: 110px 0 0;
    margin-top: 130px;
    border-top: 3px solid rgba(141, 217, 247, 0.2);
}

.footer-top {
    padding-bottom: 90px;
    border-bottom: 2px solid rgba(141, 217, 247, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 70px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.footer-logo-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(141, 217, 247, 0.3));
}

.footer-logo-text {
    font-size: 34px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(141, 217, 247, 0.15);
    border: 2px solid rgba(141, 217, 247, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(141, 217, 247, 0.4);
}

.footer-widget h4 {
    font-size: 21px;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 45px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.copyright {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ===================================
   Floating Buttons
   =================================== */

.back-to-top,
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 998;
    box-shadow: 0 10px 35px rgba(32, 58, 75, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top {
    bottom: 35px;
    right: 35px;
    background: var(--gradient-primary);
    color: white;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(141, 217, 247, 0.5);
}

.whatsapp-float {
    bottom: 110px;
    right: 35px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    animation: pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.12);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.2rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .navbar-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 370px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 110px 45px 45px;
        transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 8px 0 35px rgba(32, 58, 75, 0.15);
    }

    .navbar-menu.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        padding: 22px 0;
        border-bottom: 2px solid rgba(141, 217, 247, 0.1);
        color: var(--text-primary);
    }

    .navbar-cta {
        flex-direction: column;
        width: 100%;
        margin-top: 35px;
    }

    .navbar-cta .btn {
        width: 100%;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 22px;
    }

    .section-padding {
        padding: 90px 0;
    }

    .navbar-container {
        padding: 0 22px;
    }

    .hero {
        padding: 140px 0 90px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.15rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .back-to-top,
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .whatsapp-float {
        bottom: 100px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 16px 36px;
        font-size: 15px;
    }

    .navbar-logo-text {
        font-size: 24px;
    }

    .navbar-logo-icon {
        width: 48px;
        height: 48px;
    }
}
