*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --primary-color: #cc3366; /* Fresh pink */
    --primary-color-dark: #a8033a; /* Darker pink */
    --secondary-color: #fc60c3; /* Warm pink */
    --secondary-color-dark: #E64A19; /* Darker Orange */
    
    --text-dark: #1c1b1b;
    --text-light: #666666;
    --text-white: #fc88d8;
    
    --background-light: #F8F9FA; /* Very light gray */
    --background-med: #edd1ed; /* Slightly darker gray */
    --background-dark: #233b47; /* Dark grey for footer */
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
    
    --header-height: 80px;
    --shadow-light: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 25px rgba(0,0,0,0.15);
}
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { font-family: var(--font-body); background-color: var(--background-light); color: var(--text-dark); line-height: 1.7; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); color: var(--text-white); text-shadow: 2px 2px 8px rgba(0,0,0,0.3); }
h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); text-align: center; margin-bottom: 1rem;}
h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.section-title p { max-width: 600px; margin: 0 auto 3rem auto; text-align: center; color: var(--text-light); font-size: 1.1rem; }

/* Buttons */
.btn { 
    display: inline-block; 
    padding: 0.9rem 2.2rem; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: all 0.3s ease; 
    border: none;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-light);
    transform: translateY(0);
}
.btn-primary { 
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color-dark)); 
    color: var(--text-white); 
}
.btn-primary:hover { 
    background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color)); 
    transform: translateY(-5px) scale(1.02); 
    box-shadow: var(--shadow-medium);
}
.btn-secondary { 
    background: var(--text-white);
    color: var(--primary-color); 
    border: 2px solid var(--primary-color);
}
.btn-secondary:hover { 
    background-color: var(--primary-color); 
    color: var(--text-white); 
    transform: translateY(-5px) scale(1.02); 
    box-shadow: var(--shadow-medium);
}

/* --- Header & Navigation --- */
#header { 
    position: sticky; 
    top: 0; 
    width: 100%; 
    z-index: 1000; 
    height: var(--header-height); 
    background-color: transparent; 
    transition: background-color 0.4s ease, box-shadow 0.4s ease; 
}
#header.scrolled { 
    background-color: rgba(248, 249, 250, 0.95); /* Adjusted to match background-light */
    backdrop-filter: blur(8px); 
    box-shadow: 0 2px 15px rgba(0,0,0,0.08); 
}
#header .container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: #4CAF50; text-decoration: none; transition: color 0.3s ease; }
#header.scrolled .logo { color: var(--primary-color); } /* Logo color on scroll */
.main-nav ul { list-style: none; display: flex; gap: 2rem; }
.main-nav a { 
    text-decoration: none; 
    color: var(--text-white); 
    font-weight: 600; 
    position: relative; 
    padding-bottom: 5px; 
    transition: color 0.3s ease;
    font-family: var(--font-body);
}
#header.scrolled .main-nav a { color: var(--text-dark); } /* Nav link color on scroll */
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background-color: var(--secondary-color); border-radius: 2px; transition: width 0.3s ease; }
.main-nav a:hover::after { width: 100%; }
.nav-toggle { display: none; } 

/* --- Hero Slideshow Section --- */
.hero-slideshow { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.slideshow-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; }
.slide.active { opacity: 1; transform: scale(1.1); transition-duration: 6s; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; max-width: 900px; padding: 0 2rem; }
.hero-content p { color: var(--text-white); font-size: 1.25rem; margin: 1.5rem 0 2.5rem; font-weight: 300; }

/* --- Section Styling --- */
section { padding: 6rem 0; }
.about-section { background-color: var(--background-light); }
.about-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 5rem; }
.about-image img { border-radius: 12px; box-shadow: var(--shadow-medium); width: 100%; height: 500px; object-fit: cover; }
.about-content p { margin-bottom: 2rem; color: var(--text-light); font-size: 1.05rem; }

.services-section { background-color: var(--background-med); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.service-card { 
    background-color: var(--text-white); 
    border-radius: 12px; 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    box-shadow: var(--shadow-light); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}
.service-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-medium); 
}
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-content { padding: 1.8rem; display: flex; flex-direction: column; flex-grow: 1; }
.service-card-content h3 { color: var(--primary-color-dark); margin-bottom: 1.2rem; }
.service-prices { list-style: none; margin-top: auto; padding-top: 1.2rem; border-top: 1px solid #e0e0e0; }
.service-prices li { display: flex; justify-content: space-between; align-items: center; color: var(--text-light); padding: 0.6rem 0; font-size: 1.05rem; }
.service-prices li span:last-child { font-weight: 700; color: var(--secondary-color); font-family: var(--font-heading); }

/* --- Gallery Section --- */
.gallery-section { background-color: var(--background-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.gallery-item { 
    overflow: hidden; 
    border-radius: 12px; 
    box-shadow: var(--shadow-light); 
    position: relative; 
}
.gallery-item img { 
    width: 100%; 
    height: 280px; 
    object-fit: cover; 
    transition: transform 0.4s ease-in-out, filter 0.4s ease; 
}
.gallery-item:hover img { 
    transform: scale(1.08); 
    filter: brightness(0.8); 
}

/* --- Contact Section --- */
.contact-section { background-color: var(--background-med); }
.contact-info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.info-card { 
    background-color: var(--text-white); 
    text-align: center; 
    padding: 2.5rem; 
    border-radius: 12px; 
    border: 2px solid var(--primary-color); /* Green border */
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}
.info-card .icon { 
    font-size: 2.2rem; 
    color: var(--secondary-color); /* Orange icon */
    margin-bottom: 1rem; 
}
.info-card h3 { color: var(--primary-color-dark); margin-bottom: 0.5rem; }
.info-card p { color: var(--text-light); font-size: 1.05rem; word-wrap: break-word; }
.contact-map iframe { width: 100%; height: 450px; border-radius: 12px; border: none; box-shadow: var(--shadow-medium); }

/* --- Footer --- */
footer { padding: 4rem 0; text-align: center; background-color: var(--background-dark); color: var(--text-white); }
footer h3 { color: var(--text-white); margin-bottom: 1.5rem; }
.social-links { margin-top: 1rem; }
.social-links a { 
    color: var(--text-white); 
    margin: 0 1rem; 
    font-size: 1.6rem; 
    transition: transform 0.3s ease, color 0.3s ease; 
    display: inline-block; 
}
.social-links a:hover { 
    transform: scale(1.3); 
    color: var(--secondary-color); /* Orange on hover */
}
footer p { margin-top: 2.5rem; font-size: 0.95rem; opacity: 0.8; }

/* --- Floating Action Button (FAB) --- */
@keyframes breathing-fab { 
    0%, 100% { transform: scale(0.98) translateY(0); box-shadow: 0 8px 25px rgba(255,112,67,0.4), 0 4px 10px rgba(0,0,0,0.2); } 
    50% { transform: scale(1.02) translateY(-3px); box-shadow: 0 12px 40px rgba(255,112,67,0.6), 0 8px 15px rgba(0,0,0,0.3); } 
}
.fab-container { position: fixed; bottom: 30px; right: 30px; z-index: 1000; }
.fab-main {
    width: 68px; height: 68px;
    background: linear-gradient(145deg, var(--secondary-color), var(--secondary-color-dark));
    color: var(--text-white);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 2rem;
    cursor: pointer;
    border: 3px solid var(--text-white);
    box-shadow: 0 8px 25px rgba(255,112,67,0.4), 0 4px 10px rgba(0,0,0,0.2), inset 0 2px 2px rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    animation: breathing-fab 3s ease-in-out infinite;
    font-family: var(--font-heading);
}
.fab-main i { text-shadow: 0 2px 3px rgba(0,0,0,0.2); }
.fab-main:hover {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255,112,67,0.6), 0 8px 15px rgba(0,0,0,0.3), inset 0 2px 2px rgba(255,255,255,0.4);
}
.fab-options { position: absolute; bottom: 85px; right: 0; display: flex; flex-direction: column; gap: 15px; list-style: none; transition: all 0.3s ease; opacity: 0; transform: translateY(15px); pointer-events: none; }
.fab-container.active .fab-options { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab-option { 
    width: 55px; height: 55px; 
    background-color: var(--secondary-color-dark); /* Darker orange for options */
    color: var(--text-white); 
    border-radius: 50%; 
    display: flex; justify-content: center; align-items: center; 
    font-size: 1.6rem; 
    text-decoration: none; 
    box-shadow: 0 3px 10px rgba(0,0,0,0.2); 
    transition: transform 0.3s ease, background-color 0.3s ease; 
}
.fab-option:hover { background-color: var(--secondary-color); transform: scale(1.1) rotate(5deg); }
.fab-option[href*="tel"] { background-color: var(--primary-color); } /* Green for phone */
.fab-option[href*="tel"]:hover { background-color: var(--primary-color-dark); }
.fab-option[href*="wa.me"] { background-color: #25D366; } /* WhatsApp green */
.fab-option[href*="wa.me"]:hover { background-color: #128C7E; }

/* --- Scroll Animations --- */
.js-animate-up, .js-animate-left, .js-animate-right { opacity: 0; transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.js-animate-up { transform: translateY(50px); }
.js-animate-left { transform: translateX(-50px); }
.js-animate-right { transform: translateX(50px); }
.visible { opacity: 1; transform: translate(0, 0); }

/* --- Responsive Design --- */
@media (max-width: 992px) { 
    .about-container { grid-template-columns: 1fr; gap: 3rem; } 
    .about-image { margin-bottom: 2rem; text-align: center; } 
    .about-image img { height: auto; max-height: 450px; } 
    h1 { font-size: clamp(2.2rem, 8vw, 4rem); }
    .hero-content p { font-size: 1.1rem; }
    section { padding: 4rem 0; }
}
@media (max-width: 768px) {
    .main-nav { display: none; position: absolute; top: var(--header-height); left: 0; right: 0; background-color: var(--background-light); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
    .main-nav.active { display: block; } .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav a { display: block; padding: 1rem 2rem; color: var(--text-dark); border-bottom: 1px solid #e0e0e0; }
    #header .btn-primary { display: none; }
    .nav-toggle { background: transparent; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
    .hamburger { display: block; position: relative; width: 28px; height: 3px; background-color: var(--text-white); border-radius: 2px; transition: all 0.3s ease; }
    #header.scrolled .hamburger, .nav-open .hamburger { background-color: var(--primary-color); }
    .hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; width: 100%; height: 3px; background-color: inherit; border-radius: 2px; transition: all 0.3s ease; }
    .hamburger::before { top: -9px; } .hamburger::after { top: 9px; }
    .nav-open .hamburger { background-color: transparent; }
    .nav-open .hamburger::before { top: 0; transform: rotate(45deg); }
    .nav-open .hamburger::after { top: 0; transform: rotate(-45deg); }

    .fab-main { width: 60px; height: 60px; font-size: 1.8rem; }
    .fab-options { bottom: 75px; right: 0; gap: 10px; }
    .fab-option { width: 48px; height: 48px; font-size: 1.4rem; }
    .contact-info-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .fab-container { bottom: 20px; right: 20px; }
}