/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #05CAD6;
    --primary-dark: #04b3be;
    --secondary: #F1B60A;
    --secondary-dark: #e0a800;
    --dark: #1e2a3a;
    --dark-light: #2c3e50;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --mid-gray: #e9ecef;
    --white: #ffffff;
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #089ea8 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #f39c12 100%);
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo h1, .nav-links a, .btn-primary {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.gallery-info{
    margin-top: 20px;
}
/* Remove all underlines */
a, .nav-link, .footer-links a, .footer-contact a, .contact-item a {
    text-decoration: none !important;
}


/* ===== STICKY HEADER ===== */

/* Logo image & text visibility */
.logo-img {
    display: block;
    width: auto;
}

.logo-text {
    display: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* On mobile, hide image and show text */
@media (max-width: 768px) {
    .logo-img {
        display: none;
    }
    .logo-text {
        display: block;
    }
}
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.offer-top-bar {
    background: var(--gradient-secondary);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.offer-top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    100% { left: 100%; }
}

.offer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.offer-text-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.offer-text {
    font-weight: 800;
    color: var(--dark);
    font-size: 0.95rem;
}

.countdown-timer {
    background: rgba(0,0,0,0.15);
    padding: 5px 15px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
}

.countdown-numbers {
    font-weight: 800;
    margin-left: 8px;
    color: var(--dark);
    font-family: monospace;
    font-size: 1rem;
}

/* .offer-buttons a {
    background: var(--dark);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin: 0 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.offer-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    background: #000;
} */

.pulse-animation {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.main-header {
    background: var(--white);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.header-container .logo {
    width: 8%;
}

.header-container .logo img{
    width: 100%;
    height: auto;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo h1 {
    font-size: 1.7rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.logo-tag {
    font-size: 0.7rem;
    color: var(--secondary);
    display: block;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--dark);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

.header-buttons {
    display: flex;
    gap: 12px;
}

.btn-call-header, .btn-wa-header {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-call-header {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-wa-header {
    background: #25D366;
    color: var(--white);
}

.btn-call-header:hover, .btn-wa-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    border-top: 1px solid var(--mid-gray);
}

.mobile-nav a {
    padding: 12px;
    color: var(--dark);
    font-weight: 500;
    border-bottom: 1px solid var(--mid-gray);
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary);
    padding-left: 20px;
    background: rgba(5, 202, 214, 0.05);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 80px 0 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(5, 202, 214, 0.12);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(5, 202, 214, 0.2);
}

.badge-pulse {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge-pulse::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.trust-badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.trust-item i {
    color: var(--primary);
    font-size: 1rem;
}

.stats-row {
    display: flex;
    gap: 50px;
    padding-top: 20px;
    border-top: 2px solid var(--mid-gray);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Josefin Sans', sans-serif;
}

.stat-icon {
    font-size: 1.25rem;
    color: var(--primary);
    margin-left: 5px;
}
.stat p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 5px;
    font-weight: 500;
}

.hero-img {
    flex: 1;
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 40px;
    box-shadow: var(--shadow-xl);
    animation: float 4s ease-in-out infinite;
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 40px;
}

.hero-img-wrapper:hover img {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 60px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}

.card-1 {
    top: 20px;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--white);
}

.card-2 {
    bottom: 30px;
    left: -20px;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* ===== TRUST MARQUEE - FIXED VERSION ===== */
.trust-marquee {
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
    padding: 16px 0;
    position: relative;
    white-space: nowrap;
    margin-top: 80px;
}

.marquee-track {
    display: inline-flex;
    animation: scrollMarquee 25s linear infinite;
    width: auto;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 35px;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.marquee-track i {
    font-size: 1rem;
    color: var(--secondary);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate content for seamless loop */
.marquee-track {
    animation: scrollMarquee 30s linear infinite;
}

/* ===== OFFER SECTION ===== */
.offer-highlight {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #fef5e7 0%, #fff4e6 100%);
    overflow: hidden;
}

.offer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(241, 182, 10, 0.08) 2px, transparent 2px);
    background-size: 30px 30px;
}

.offer-card {
    background: var(--white);
    border-radius: 50px;
    text-align: center;
    padding: 60px 50px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    border: 1px solid rgba(241, 182, 10, 0.2);
    width: 60%;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.offer-flash {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-secondary);
    padding: 10px 28px;
    border-radius: 60px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.offer-flash i {
    font-size: 1.2rem;
    color: var(--dark);
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.offer-tag {
    font-weight: 800;
    color: var(--dark);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.offer-card h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.discount-number {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 800;
}

.offer-sub {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 35px;
}

.offer-timer {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.timer-block {
    text-align: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 18px 25px;
    border-radius: 20px;
    min-width: 90px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--mid-gray);
}

.timer-block span {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Josefin Sans', sans-serif;
    display: block;
}

.timer-block label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 5px;
    display: block;
    font-weight: 600;
}

.offer-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-offer-primary, .btn-offer-whatsapp {
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-offer-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-offer-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-offer-primary:hover, .btn-offer-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}


/* ===== ENHANCED OFFER SECTION BACKGROUND ===== */
.offer-highlight {
    position: relative;
    background: linear-gradient(135deg, #fef5e7 0%, #fff4e6 100%);
    overflow: hidden;
}

/* Animated gradient overlay that moves */
.offer-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(241, 182, 10, 0.15) 0%, rgba(255, 244, 230, 0) 70%);
    animation: rotateBg 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Floating particle animation for .offer-particles */
.offer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 40%, rgba(241, 182, 10, 0.2) 2px, transparent 2px),
                      radial-gradient(circle at 80% 70%, rgba(5, 202, 214, 0.15) 1.5px, transparent 1.5px);
    background-size: 50px 50px, 40px 40px;
    background-repeat: repeat;
    animation: floatParticles 40s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Additional floating blobs */
.offer-highlight::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(241, 182, 10, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Second blob */
.offer-highlight .offer-card {
    position: relative;
    z-index: 2;
}

/* Optional: Add a floating blob on the left */
.offer-highlight {
    --blob-left: radial-gradient(circle at 30% 60%, rgba(5, 202, 214, 0.08) 0%, transparent 70%);
}

.offer-highlight {
    position: relative;
}


/* Add another pseudo-element for left blob */
.offer-highlight .offer-bg-blob {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(5, 202, 214, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 18s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

/* Keyframes */
@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatParticles {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Optional: Add a subtle glow to the offer card on hover */
.offer-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.12);
}



/* ===== WHY CHOOSE US - PREMIUM STYLE ===== */
.why-us {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    overflow: hidden;
    z-index: 1;
}

/* Abstract shape background */
.why-us::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5,202,214,0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(241,182,10,0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Subtle moving pattern overlay */
.why-us {
    background-image: repeating-linear-gradient(45deg, rgba(5,202,214,0.02) 0px, rgba(5,202,214,0.02) 2px, transparent 2px, transparent 8px);
    background-size: 12px 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.feature {
    text-align: center;
    padding: 45px 30px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(5,202,214,0.1);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(5,202,214,0.2);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(5,202,214,0.1) 0%, rgba(5,202,214,0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.feature:hover .feature-icon {
    background: var(--gradient-primary);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(5,202,214,0.2);
}

.feature-icon i {
    font-size: 2.8rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.feature:hover .feature-icon i {
    color: var(--white);
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--dark);
}

.feature p {
    color: var(--gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature {
        padding: 35px 25px;
    }
    
    .why-us::before,
    .why-us::after {
        width: 300px;
        height: 300px;
    }
}
/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.service-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.service-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-card h3 {
    padding: 22px 22px 12px;
    font-size: 1.4rem;
}

.service-card p {
    padding: 0 22px;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-buttons {
    padding: 22px;
    display: flex;
    gap: 12px;
}

.service-buttons a {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-service-call {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-service-wa {
    background: #25D366;
    color: var(--white);
}

.service-buttons a:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
    box-shadow: var(--shadow-sm);
}

/* ===== REVIEWS SECTION - PREMIUM GRID ===== */
.reviews {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    overflow: hidden;
}

.reviews-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 40%, rgba(5,202,214,0.02) 0%, transparent 50%),
                      radial-gradient(circle at 70% 60%, rgba(241,182,10,0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.review-card {
    background: var(--white);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(5,202,214,0.1);
    position: relative;
    backdrop-filter: blur(2px);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(5,202,214,0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: var(--shadow-sm);
}

.review-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.review-info .review-role {
    font-size: 0.8rem;
    color: var(--gray);
}

.review-stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
}

.review-text.expandable {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.review-text.expanded {
    max-height: 500px;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 5px;
    display: inline-block;
    font-size: 0.85rem;
}

.read-more-btn i {
    margin-left: 5px;
    transition: transform 0.2s;
}

.read-more-btn:hover {
    color: var(--primary-dark);
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--mid-gray);
}

.review-date {
    font-size: 0.75rem;
    color: var(--gray);
}

.verified-badge {
    background: rgba(5,202,214,0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.reviews-footer {
    text-align: center;
    margin-top: 20px;
}

.btn-review-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s ease;
}

.btn-review-link:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.reviews {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f9f5ff 0%, #ffffff 50%, #fef7e8 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Soft, flowing shape (top-left) */
.reviews::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse at 30% 40%, rgba(5,202,214,0.08) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* Soft shape (bottom-right) */
.reviews::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(ellipse at 70% 60%, rgba(241,182,10,0.06) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

/* Optional: wavy line pattern (adds texture) */
.reviews .reviews-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, rgba(5,202,214,0.02) 0px, rgba(5,202,214,0.02) 2px, transparent 2px, transparent 12px);
    pointer-events: none;
    z-index: 0;
}

/* Content stays above */
.reviews .container {
    position: relative;
    z-index: 2;
}

/* Review cards – keep existing styles */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    border-radius: 30px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(5,202,214,0.1);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(5,202,214,0.3);
    background: white;
}

.review-stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 15px;
}

.review-author {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.05rem;
}

.review-role {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 5px;
}

.reviews-footer {
    text-align: center;
    margin-top: 50px;
}

.btn-review-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s ease;
}

.btn-review-link:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .reviews {
        padding: 70px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 25px;
    }
}

/* ===== BEFORE & AFTER GALLERY - SINGLE COLUMN ===== */
.before-after {
    padding: 100px 0;
    background: linear-gradient(112deg, #fefaf5 0%, #f9f7f3 100%);
    position: relative;
    overflow: hidden;
}

/* Diagonal stripe pattern (moving) */
.before-after::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(5, 202, 214, 0.02) 20px,
        rgba(5, 202, 214, 0.02) 40px
    );
    animation: slideStripe 60s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes slideStripe {
    from { transform: translateX(0) translateY(0); }
    to { transform: translateX(100px) translateY(100px); }
}

/* Light spot (follows mouse) */
.gallery-light-spot {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(5,202,214,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
    transition: transform 0.08s linear;
    will-change: transform;
}

/* Container and grid */
.before-after .container {
    position: relative;
    z-index: 1;
}

/* Gallery grid – single column */
.gallery-grid {
    display: flex;
    gap: 40px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

/* Card styling */
.gallery-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 15px 35px -10px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 45px -15px rgba(0,0,0,0.15);
}

/* Image wrapper */
.gallery-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image-wrapper img {
    transform: scale(1.03);
}

/* Text info */
.gallery-info {
    padding: 25px 30px 30px;
    text-align: center;
}

.gallery-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 700;
}

.gallery-info p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Hide old compare-card elements if they exist */
.compare-card,
.compare-images,
.image-wrapper,
.badge {
    display: none;
}

/* CTA section */
.gallery-cta {
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(5,202,214,0.08);
    padding: 10px 24px;
    border-radius: 60px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--primary);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(5,202,214,0.2);
}

.stats-badge i {
    font-size: 1.2rem;
}

.btn-gallery-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: white;
    padding: 14px 42px;
    border-radius: 60px;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(5,202,214,0.3);
}

.btn-gallery-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5,202,214,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        gap: 30px;
        max-width: 95%;
    }
    .gallery-info {
        padding: 20px 20px 25px;
    }
    .gallery-info h3 {
        font-size: 1.2rem;
    }
    .gallery-info p {
        font-size: 0.85rem;
    }
    .btn-gallery-cta {
        padding: 12px 32px;
        font-size: 0.9rem;
    }
    .stats-badge {
        font-size: 0.85rem;
        padding: 6px 18px;
    }
}
/* ===== URGENCY SECTION - PREMIUM ===== */
.urgency {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, #F1B60A 0%, #FF8C00 50%, #F1B60A 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Floating particles (dots) */
.urgency-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,200,0.3) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: floatParticles 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Soft glow behind the content */
.urgency-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(255,255,200,0.4) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* Animations */
@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatParticles {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

/* Content box */
.urgency-box {
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgb(7 164 174 / 18%);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 6px 20px;
    border-radius: 40px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(5px);
}

.urgency-badge i {
    font-size: 1rem;
}

.urgency-box h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.urgency-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

/* Timer (optional) */
.urgency-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.timer-unit {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
    padding: 12px 20px;
    border-radius: 20px;
    min-width: 80px;
    text-align: center;
}

.timer-unit span {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    font-family: 'Josefin Sans', monospace;
    display: block;
    line-height: 1;
}

.timer-unit label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
}

/* Buttons */
.urgency-buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-urgent-call, .btn-urgent-wa {
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-urgent-call {
    background: white;
    color: var(--secondary-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-urgent-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    background: #fff5e6;
}

.btn-urgent-wa {
    background: #25D366;
    color: white;
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}

.btn-urgent-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    background: #20b859;
}

/* Responsive */
@media (max-width: 768px) {
    .urgency {
        padding: 60px 0;
    }
    .urgency-box {
        padding: 35px 25px;
        margin: 0 20px;
    }
    .urgency-box h3 {
        font-size: 1.8rem;
    }
    .timer-unit {
        min-width: 60px;
        padding: 8px 12px;
    }
    .timer-unit span {
        font-size: 1.4rem;
    }
    .urgency-buttons a {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}

.step {
    flex: 1;
    min-width: 240px;
    text-align: center;
    position: relative;
    padding: 40px 25px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border-radius: 30px;
    transition: all 0.4s ease;
    border: 1px solid var(--mid-gray);
}

.step:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
}

.step i {
    font-size: 2.8rem;
    color: var(--primary);
    margin: 25px 0 20px;
}

.step h4 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.step p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 18px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-question:hover {
    background: rgba(5, 202, 214, 0.03);
}

.faq-question i {
    transition: transform 0.4s ease;
    color: var(--primary);
    font-size: 1.1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 28px 25px;
    max-height: 250px;
}

/* ===== CONTACT SECTION ===== */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #0f1a24 100%);
    color: var(--white);
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details {
    margin: 35px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: var(--primary);
    transform: scale(1.05);
}

.contact-item a {
    color: var(--white);
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--secondary);
}

.contact-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-contact-call, .btn-contact-wa {
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-contact-call {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-contact-wa {
    background: #25D366;
    color: var(--white);
}

.btn-contact-call:hover, .btn-contact-wa:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-map {
    flex: 1;
}

.contact-map iframe {
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.contact-map iframe:hover {
    transform: scale(1.02);
}

/* ===== FOOTER - PREMIUM ===== */
footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    color: #aaa;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

/* Decorative gradient line at top */
.footer-top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    z-index: 1;
}

/* Subtle radial glow behind content */
footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: radial-gradient(ellipse at 50% 100%, rgba(5,202,214,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo .logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.footer-logo .logo-icon:hover {
    transform: rotate(5deg) scale(1.02);
}

.footer-logo h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.6rem;
    font-weight: 700;
}

.footer-logo p {
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-links h4, 
.footer-contact h4, 
.footer-social h4 {
    color: var(--white);
    margin-bottom: 22px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.footer-links h4::after, 
.footer-contact h4::after, 
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.footer-links a, 
.footer-contact a {
    display: block;
    color: #aaa;
    margin: 12px 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover, 
.footer-contact a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-social a {
    display: inline-block;
    margin-right: 20px;
    color: #aaa;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.footer-social a:hover {
    color: white;
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(5,202,214,0.3);
}

.footer-bottom {
    text-align: center;
    padding: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
    gap: 15px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-contact p{
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding-top: 50px;
    }
    .footer-grid {
        gap: 35px;
        text-align: center;
    }
    .footer-links h4::after, 
    .footer-contact h4::after, 
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links a:hover, 
    .footer-contact a:hover {
        transform: translateX(0);
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-call, .float-wa {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.float-call {
    background: var(--gradient-primary);
    color: var(--white);
}

.float-wa {
    background: #25D366;
    color: var(--white);
}

.float-call:hover, .float-wa:hover {
    transform: scale(1.12);
    box-shadow: var(--shadow-xl);
}

.tooltip {
    position: absolute;
    right: 80px;
    background: var(--dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.float-call:hover .tooltip,
.float-wa:hover .tooltip {
    opacity: 1;
}

.pulse-ring {
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(5, 202, 214, 0.7);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(5, 202, 214, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(5, 202, 214, 0);
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    display: flex;
}

/* ===== CUSTOM SCROLLBAR ===== */
/* Webkit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #1e2a3a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #1e2a3a;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .review-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .nav-links, .header-buttons {
        display: none;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .offer-timer {
        gap: 15px;
    }
    
    .timer-block {
        min-width: 75px;
        padding: 12px 18px;
    }
    
    .timer-block span {
        font-size: 1.6rem;
    }
    
    .review-card {
        flex: 0 0 100%;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .prev {
        left: -5px;
    }
    
    .next {
        right: -5px;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .offer-timer {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .timer-block {
        min-width: 70px;
        padding: 10px 15px;
    }
    
    .timer-block span {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .floating-buttons {
        right: 20px;
        bottom: 20px;
    }
    
    .float-call, .float-wa {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .back-to-top {
        left: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .offer-top-bar{
        padding-inline: 20px;
    }

    .offer-text-wrapper i{
        display: none;
    }

    .countdown-timer{
        margin: 0 auto;
    }

    .main-header{
        padding-inline: 20px;
    }

    .header-container .logo{
        width: 50%;
    }

    .offer-text{
        font-size: 0.80rem;
        margin: 0 auto;
    }

    .offer-card{
        width: 90%;
    }

    .contact-map{
        width: 100%;
        height: 300px;
    }

    .contact-info h2{
        line-height: 1.2;
    }

    .footer-logo img{
        width: 50%;
    }

    .footer-links,
    .footer-social{
        text-align: left;
    }

    .footer-links h4, .footer-contact h4, .footer-social h4{
        text-align: left;
        display: inherit;
    }

    .footer-links h4::after, .footer-contact h4::after, .footer-social h4::after{
        left: 20px;
    }

}



@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .offer-card {
        padding: 40px 20px;
    }
    
    .discount-number {
        font-size: 2rem;
    }
    
    .service-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}