/* --- CSS Reset & Global Styles --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --bg-color: #257c58; --primary-text: #3D3D3D; --secondary-text: #707070;
    --accent-color: #6B8E8E; --accent-hover: #567171; --white: #FFFFFF;
    --pink-accent: #E91E63; --pink-accent-dark: #d81b60; --pink-glow: rgba(233, 30, 99, 0.4);
    --font-heading: 'Lora', serif; --font-body: 'Nunito Sans', sans-serif;
    --header-height: 80px;
}
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { font-family: var(--font-body); background-color: var(--bg-color); color: var(--primary-text); line-height: 1.7; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--white); }
h2 { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 1rem;}
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.section-title p { max-width: 600px; margin: 0 auto 3rem auto; text-align: center; color: var(--secondary-text); }
.btn { display: inline-block; padding: 0.8rem 1.8rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; border: 2px solid transparent; }
.btn-primary { background-color: var(--accent-color); color: var(--white); }
.btn-primary:hover { background-color: var(--accent-hover); transform: translateY(-3px); }
.btn-secondary { color: var(--accent-color); border-color: var(--accent-color); }
.btn-secondary:hover { background-color: var(--accent-color); color: var(--white); }

/* --- 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, 245, 242, 0.9); backdrop-filter: blur(10px); box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
#header .container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo { font-family: var(--font-heading); font-size: 1.8rem; font-style: italic; color: var(--white); text-decoration: none; transition: color 0.3s ease; }
#header.scrolled .logo { color: var(--primary-text); }
.main-nav ul { list-style: none; display: flex; gap: 2rem; }
.main-nav a { text-decoration: none; color: var(--white); font-weight: 600; position: relative; padding-bottom: 5px; transition: color 0.3s ease; }
#header.scrolled .main-nav a { color: var(--primary-text); }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--accent-color); 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: rgba(0,0,0,0.4); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; max-width: 800px; padding: 0 2rem; }
.hero-content p { color: var(--white); font-size: 1.2rem; margin: 1.5rem 0 2.5rem; }

/* --- Section Styling --- */
section { padding: 6rem 0; }
.about-section { background-color: var(--white); }
.about-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
.about-image img { border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 100%; height: 500px; object-fit: cover; }
.about-content p { margin-bottom: 2rem; color: var(--secondary-text); }
.services-section { background-color: var(--bg-color); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.service-card { background-color: var(--white); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.service-prices { list-style: none; margin-top: auto; padding-top: 1rem; border-top: 1px solid #ddd; }
.service-prices li { display: flex; justify-content: space-between; align-items: center; color: var(--secondary-text); padding: 0.5rem 0; }
.service-prices li span:last-child { font-weight: 600; color: var(--accent-color); }

/* --- Gallery Section --- */
.gallery-section { background-color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.gallery-item { overflow: hidden; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); 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.1); filter: brightness(0.8); }

/* --- Contact Section --- */
.contact-section { background-color: var(--bg-color); }
.contact-info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.info-card { background-color: var(--white); text-align: center; padding: 2rem; border-radius: 10px; border: 2px solid var(--pink-accent); }
.info-card .icon { font-size: 2rem; color: var(--pink-accent); margin-bottom: 1rem; }
.info-card h3 { color: var(--primary-text); }
.info-card p { color: var(--secondary-text); font-size: 1rem; word-wrap: break-word; }
.contact-map iframe { width: 100%; height: 450px; border-radius: 10px; border: none; }

/* --- Footer --- */
footer { padding: 4rem 0; text-align: center; background-color: var(--pink-accent); color: var(--white); }
footer h3 { color: var(--white); }
.social-links { margin-top: 1rem; }
.social-links a { color: var(--white); margin: 0 1rem; font-size: 1.5rem; transition: transform 0.3s ease; display: inline-block; }
.social-links a:hover { transform: scale(1.2); }
footer p { margin-top: 2rem; font-size: 0.9rem; opacity: 0.8; }

/* --- UPDATED 3D Floating Action Button --- */
@keyframes breathing { 0%, 100% { transform: scale(0.95); box-shadow: 0 8px 25px var(--pink-glow); } 50% { transform: scale(1.05); box-shadow: 0 12px 40px var(--pink-glow); } }
.fab-container { position: fixed; bottom: 30px; right: 30px; z-index: 1000; }
.fab-main {
    width: 65px; height: 65px;
    background: linear-gradient(145deg, var(--pink-accent), var(--pink-accent-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 8px 25px var(--pink-glow), 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 3s ease-in-out infinite;
}
.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.1);
    box-shadow: 0 12px 40px var(--pink-glow), 0 8px 15px rgba(0,0,0,0.3), inset 0 2px 2px rgba(255,255,255,0.4);
}
.fab-options { position: absolute; bottom: 80px; right: 5px; display: flex; flex-direction: column; gap: 15px; list-style: none; transition: all 0.3s ease; opacity: 0; transform: translateY(10px); pointer-events: none; }
.fab-container.active .fab-options { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab-option { width: 50px; height: 50px; background-color: var(--pink-dark); color: var(--white); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; text-decoration: none; box-shadow: 0 3px 10px rgba(0,0,0,0.2); transition: transform 0.3s ease; }
.fab-option:hover { background-color: var(--pink-accent); transform: scale(1.1) rotate(10deg); }
.fab-option[href*="wa.me"] { background-color: #25D366; }
.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; } .about-image { margin-bottom: 2rem; text-align: center; } .about-image img { height: auto; max-height: 400px; } }
@media (max-width: 768px) {
    .main-nav { display: none; position: absolute; top: var(--header-height); left: 0; right: 0; background-color: var(--bg-color); 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(--primary-text); border-bottom: 1px solid #e0e0e0; }
    #header .btn-primary { display: none; }
    .nav-toggle { display: block; background: transparent; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001; }
    .hamburger { display: block; position: relative; width: 25px; height: 2px; background-color: var(--white); transition: all 0.3s ease; }
    #header.scrolled .hamburger, .nav-open .hamburger { background-color: var(--primary-text); }
    .hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; width: 100%; height: 2px; background-color: inherit; transition: all 0.3s ease; }
    .hamburger::before { top: -8px; } .hamburger::after { top: 8px; }
    .nav-open .hamburger { background-color: transparent; }
    .nav-open .hamburger::before { top: 0; transform: rotate(45deg); }
    .nav-open .hamburger::after { top: 0; transform: rotate(-45deg); }
}