/* Fresh Spaces Clean & Restore - Modern Geometric Design */

/* ===================================
   BASE STYLES & RESET
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
}

/* ===================================
   DECORATIVE GEOMETRIC ELEMENTS
   =================================== */

/* Animated Corner Chevrons - Top Right */
.corner-chevrons-top-right {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 5;
}

.corner-chevrons-top-right::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 280px;
    border: 6px solid #41C5D9;
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);
    animation: chevron-pulse 3s ease-in-out infinite;
    opacity: 0.6;
}

.corner-chevrons-top-right::after {
    content: '';
    position: absolute;
    top: 40px;
    right: 40px;
    width: 200px;
    height: 200px;
    border: 4px solid #5DD9EC;
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);
    animation: chevron-pulse 3s ease-in-out infinite 0.5s;
    opacity: 0.5;
}

/* Animated Corner Chevrons - Bottom Left */
.corner-chevrons-bottom-left {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 5;
}

.corner-chevrons-bottom-left::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 280px;
    height: 280px;
    border: 6px solid #1E3A5F;
    border-right: none;
    border-top: none;
    transform: rotate(45deg);
    animation: chevron-pulse 3s ease-in-out infinite;
    opacity: 0.6;
}

.corner-chevrons-bottom-left::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 200px;
    height: 200px;
    border: 4px solid #234567;
    border-right: none;
    border-top: none;
    transform: rotate(45deg);
    animation: chevron-pulse 3s ease-in-out infinite 0.5s;
    opacity: 0.5;
}

/* Flowing Wave Decoration - Left Side */
.wave-decoration-left {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 500px;
    pointer-events: none;
    z-index: 5;
}

.wave-decoration-left::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: #41C5D9;
    border-radius: 0 100% 100% 0;
    opacity: 0.35;
    animation: wave-float 4s ease-in-out infinite;
}

.wave-decoration-left::after {
    content: '';
    position: absolute;
    top: 150px;
    width: 180px;
    height: 180px;
    background: #1E3A5F;
    border-radius: 0 100% 100% 0;
    opacity: 0.25;
    animation: wave-float 4s ease-in-out infinite 0.8s;
}

/* Flowing Wave Decoration - Right Side */
.wave-decoration-right {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 500px;
    pointer-events: none;
    z-index: 5;
}

.wave-decoration-right::before {
    content: '';
    position: absolute;
    right: 0;
    width: 220px;
    height: 220px;
    background: #5DD9EC;
    border-radius: 100% 0 0 100%;
    opacity: 0.35;
    animation: wave-float 4s ease-in-out infinite;
}

.wave-decoration-right::after {
    content: '';
    position: absolute;
    right: 0;
    top: 150px;
    width: 180px;
    height: 180px;
    background: #234567;
    border-radius: 100% 0 0 100%;
    opacity: 0.25;
    animation: wave-float 4s ease-in-out infinite 0.8s;
}

/* Diagonal Lines Decoration */
.diagonal-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

.diagonal-lines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #41C5D9, transparent);
    transform: rotate(45deg) translateX(-50%);
    animation: diagonal-slide 8s ease-in-out infinite;
}

.diagonal-lines::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #5DD9EC, transparent);
    transform: rotate(-45deg) translateX(50%);
    animation: diagonal-slide 8s ease-in-out infinite 2s;
}

/* Animated Chevron Arrow - Left */
.chevron-arrow-left {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    border-right: 45px solid #41C5D9;
    opacity: 0.5;
    pointer-events: none;
    z-index: 5;
    animation: chevron-slide-left 3s ease-in-out infinite;
}

/* Animated Chevron Arrow - Right */
.chevron-arrow-right {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    border-left: 45px solid #5DD9EC;
    opacity: 0.5;
    pointer-events: none;
    z-index: 5;
    animation: chevron-slide-right 3s ease-in-out infinite;
}

/* Gradient Corner Fade - Top Right */
.corner-fade-top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle at top right, rgba(65, 197, 217, 0.35), transparent 70%);
    pointer-events: none;
    z-index: 5;
}

/* Gradient Corner Fade - Bottom Left */
.corner-fade-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle at bottom left, rgba(30, 58, 95, 0.35), transparent 70%);
    pointer-events: none;
    z-index: 5;
}

/* Abstract Geometric Shape - Floating */
.floating-geometric {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #41C5D9 0%, #1E3A5F 100%);
    opacity: 0.2;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    pointer-events: none;
    z-index: 5;
    animation: float-rotate 10s ease-in-out infinite;
}

.floating-geometric.top-left {
    top: 10%;
    left: 5%;
}

.floating-geometric.top-right {
    top: 15%;
    right: 8%;
    animation-delay: 2s;
}

.floating-geometric.bottom-left {
    bottom: 15%;
    left: 8%;
    animation-delay: 4s;
}

.floating-geometric.bottom-right {
    bottom: 10%;
    right: 5%;
    animation-delay: 6s;
}

/* Animations */
@keyframes chevron-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: rotate(45deg) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: rotate(45deg) scale(1.08);
    }
}

@keyframes wave-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes diagonal-slide {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes chevron-slide-left {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-50%) translateX(-15px);
        opacity: 0.7;
    }
}

@keyframes chevron-slide-right {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-50%) translateX(15px);
        opacity: 0.7;
    }
}

@keyframes float-rotate {
    0%, 100% {
        transform: rotate(0deg) translateY(0);
    }
    50% {
        transform: rotate(180deg) translateY(-20px);
    }
}

/* ===================================
   GEOMETRIC BACKGROUND ELEMENTS
   =================================== */

/* Global Geometric Elements */
.geometric-bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
}

.geo-element {
    position: absolute;
    background: linear-gradient(135deg, #41C5D9, #1E3A5F);
}

.geo-chevron-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -100px;
    clip-path: polygon(0 0, 75% 0, 100% 50%, 75% 100%, 0 100%, 25% 50%);
    animation: float 20s ease-in-out infinite;
}

.geo-chevron-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: -80px;
    clip-path: polygon(0 0, 75% 0, 100% 50%, 75% 100%, 0 100%, 25% 50%);
    animation: float 25s ease-in-out infinite reverse;
}

.geo-line-1 {
    width: 600px;
    height: 3px;
    top: 30%;
    right: 0;
    transform: rotate(-25deg);
    animation: slide-right 15s ease-in-out infinite;
}

.geo-line-2 {
    width: 500px;
    height: 3px;
    bottom: 40%;
    left: 0;
    transform: rotate(25deg);
    animation: slide-left 18s ease-in-out infinite;
}

/* ===================================
   HERO SECTION GEOMETRIC OVERLAYS
   =================================== */

.hero-geometric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.hero-chevron {
    position: absolute;
    background: linear-gradient(135deg, rgba(65, 197, 217, 0.15), rgba(93, 217, 236, 0.1));
    clip-path: polygon(0 0, 75% 0, 100% 50%, 75% 100%, 0 100%, 25% 50%);
    animation: float 15s ease-in-out infinite;
}

.hero-chevron-1 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -150px;
    animation-delay: 0s;
}

.hero-chevron-2 {
    width: 400px;
    height: 400px;
    bottom: -50px;
    right: 20%;
    animation-delay: -5s;
}

.hero-chevron-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: -80px;
    animation-delay: -10s;
}

.hero-diagonal-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(65, 197, 217, 0.3), transparent);
    height: 2px;
    width: 100%;
    transform-origin: left center;
}

.hero-line-1 {
    top: 20%;
    transform: rotate(-15deg);
    animation: pulse-line 8s ease-in-out infinite;
}

.hero-line-2 {
    top: 60%;
    transform: rotate(15deg);
    animation: pulse-line 10s ease-in-out infinite;
    animation-delay: -2s;
}

.hero-line-3 {
    bottom: 20%;
    transform: rotate(-20deg);
    animation: pulse-line 12s ease-in-out infinite;
    animation-delay: -4s;
}

/* Hero Image Frame */
.hero-image-frame {
    position: relative;
    animation: float-subtle 6s ease-in-out infinite;
}

.hero-image-frame img {
    position: relative;
    z-index: 10;
}

/* ===================================
   SATISFACTION SECTION GEOMETRIC
   =================================== */

.satisfaction-geometric-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(65, 197, 217, 0.03) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.satisfaction-image-frame {
    position: relative;
}

/* ===================================
   PROCESS SECTION GEOMETRIC
   =================================== */

.process-geometric-bg::before,
.process-geometric-bg::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, rgba(65, 197, 217, 0.05), transparent);
}

.process-geometric-bg::before {
    width: 400px;
    height: 400px;
    top: 50px;
    left: -100px;
    clip-path: polygon(0 0, 75% 0, 100% 50%, 75% 100%, 0 100%, 25% 50%);
    animation: float 20s ease-in-out infinite;
}

.process-geometric-bg::after {
    width: 350px;
    height: 350px;
    bottom: 50px;
    right: -80px;
    clip-path: polygon(25% 0, 100% 0, 75% 50%, 100% 100%, 25% 100%, 0 50%);
    animation: float 25s ease-in-out infinite reverse;
}

/* Phase Cards */
.phase-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.phase-card::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(65, 197, 217, 0.1), transparent);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phase-card:hover::before {
    opacity: 1;
}

.phase-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(30, 58, 95, 0.2);
}

/* ===================================
   FAST & EFFICIENT ANGULAR DESIGN
   =================================== */

.fast-efficient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.angular-chevron {
    position: absolute;
    border: 3px solid rgba(65, 197, 217, 0.3);
    clip-path: polygon(0 0, 75% 0, 100% 50%, 75% 100%, 0 100%, 25% 50%);
}

.angular-chevron-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -150px;
    animation: rotate-chevron 30s linear infinite;
}

.angular-chevron-2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    right: -100px;
    animation: rotate-chevron 35s linear infinite reverse;
}

.angular-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(93, 217, 236, 0.5), transparent);
    height: 3px;
    width: 100%;
}

.angular-line-1 {
    top: 20%;
    transform: rotate(-25deg);
    animation: pulse-line 6s ease-in-out infinite;
}

.angular-line-2 {
    top: 50%;
    transform: rotate(25deg);
    animation: pulse-line 8s ease-in-out infinite;
    animation-delay: -2s;
}

.angular-line-3 {
    bottom: 20%;
    transform: rotate(-20deg);
    animation: pulse-line 10s ease-in-out infinite;
    animation-delay: -4s;
}

/* ===================================
   MOVE-IN SECTION GEOMETRIC
   =================================== */

.move-in-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(225deg, transparent 0%, rgba(65, 197, 217, 0.03) 100%);
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
}

.move-in-image-frame {
    position: relative;
}

.move-in-image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 4px solid rgba(65, 197, 217, 0.3);
    clip-path: polygon(0 0, 75% 0, 100% 50%, 75% 100%, 0 100%, 25% 50%);
    z-index: -1;
}

.move-in-image-frame::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(65, 197, 217, 0.1), transparent);
    clip-path: polygon(25% 0, 100% 0, 75% 50%, 100% 100%, 25% 100%, 0 50%);
    z-index: -1;
}

/* ===================================
   PETS & KIDS SECTION GEOMETRIC
   =================================== */

.pets-kids-geometric-bg::before,
.pets-kids-geometric-bg::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, rgba(65, 197, 217, 0.05), transparent);
}

.pets-kids-geometric-bg::before {
    width: 300px;
    height: 300px;
    top: 100px;
    left: 50px;
    border-radius: 50%;
    animation: float 18s ease-in-out infinite;
}

.pets-kids-geometric-bg::after {
    width: 250px;
    height: 250px;
    bottom: 100px;
    right: 50px;
    border-radius: 50%;
    animation: float 22s ease-in-out infinite reverse;
}

/* ===================================
   CONTACT SECTION GEOMETRIC
   =================================== */

.contact-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.contact-geometric-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: linear-gradient(135deg, rgba(65, 197, 217, 0.1), transparent);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.contact-geometric-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    border: 3px solid rgba(65, 197, 217, 0.2);
    clip-path: polygon(0 0, 75% 0, 100% 50%, 75% 100%, 0 100%, 25% 50%);
    animation: rotate-chevron 40s linear infinite;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(-10px);
    }
    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

@keyframes float-subtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slide-right {
    0%, 100% {
        transform: translateX(0) rotate(-25deg);
    }
    50% {
        transform: translateX(100px) rotate(-25deg);
    }
}

@keyframes slide-left {
    0%, 100% {
        transform: translateX(0) rotate(25deg);
    }
    50% {
        transform: translateX(-100px) rotate(25deg);
    }
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.1);
    }
}

@keyframes rotate-chevron {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

/* ===================================
   HEADER STYLES
   =================================== */

#header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

#header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-container img {
    transition: transform 0.3s ease;
}

.logo-container:hover img {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-link {
    position: relative;
    color: #1E3A5F;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #41C5D9;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #41C5D9, #5DD9EC);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Navigation */
.mobile-nav-link {
    color: #1E3A5F;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    padding-left: 1rem;
}

.mobile-nav-link:hover {
    color: #41C5D9;
    border-left-color: #41C5D9;
    padding-left: 1.5rem;
    background: rgba(65, 197, 217, 0.05);
}

/* Language Toggle */
.lang-btn {
    color: #6B7280;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: #1E3A5F;
    background-color: rgba(65, 197, 217, 0.1);
}

.lang-btn.active {
    color: #FFFFFF;
    background: linear-gradient(135deg, #41C5D9, #2BA5C1);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(65, 197, 217, 0.3);
}

/* ===================================
   BUTTONS & CTA
   =================================== */

.btn-primary {
    background: linear-gradient(135deg, #41C5D9, #2BA5C1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.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-cta-primary {
    background: linear-gradient(135deg, #41C5D9, #5DD9EC);
    box-shadow: 0 10px 30px rgba(65, 197, 217, 0.4);
}

.btn-cta-primary:hover {
    box-shadow: 0 15px 40px rgba(65, 197, 217, 0.6);
}

.btn-cta-secondary {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ===================================
   SERVICE CARDS
   =================================== */

.service-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(65, 197, 217, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.15);
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #1EBE57);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #1EBE57, #128C7E);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .hero-chevron-1 {
        width: 400px;
        height: 400px;
    }
    
    .hero-chevron-2 {
        width: 300px;
        height: 300px;
    }
    
    .angular-chevron-1,
    .angular-chevron-2 {
        width: 300px;
        height: 300px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-chevron {
        display: none;
    }
    
    .hero-diagonal-line {
        opacity: 0.3;
    }
    
    .angular-chevron,
    .geo-chevron-1,
    .geo-chevron-2 {
        display: none;
    }
    
    .phase-card:hover {
        transform: scale(1.02) translateY(-5px);
    }
    
    .service-card:hover {
        transform: translateY(-10px) scale(1.01);
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.transition-all {
    transition: all 0.3s ease;
}

/* Ensure sections maintain proper stacking */
section {
    position: relative;
    z-index: 1;
}

/* Smooth scrolling offset for fixed header */
section[id] {
    scroll-margin-top: 100px;
}

/* ===================================
   ACCESSIBILITY
   =================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid #41C5D9;
    outline-offset: 2px;
}

/* ===================================
   HERO SWIPER SLIDESHOW
   =================================== */

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: white;
    background: rgba(30, 58, 95, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(65, 197, 217, 0.9);
    transform: scale(1.1);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 20px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #41C5D9;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Hero Swiper */
@media (max-width: 768px) {
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 16px;
    }
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 170px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20BA5A;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
}

/* Scroll to Top Button Positioning */
#scroll-top {
    bottom: 90px;
    right: 30px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 150px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    #scroll-top {
        bottom: 80px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

/* Gallery Grid Responsive */
@media (max-width: 640px) {
    .gallery-item img {
        height: 200px;
    }
}
