/* --- CSS Reset & Global Styles --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --lotus-pink: #E56399;      /* Vibrant pink from lotus petals */
    --lotus-deep-pink: #D81B60; /* A deeper pink for accents/hovers */
    --lotus-gold: #FFD700;      /* Gold for the lotus center */
    --lotus-cream: #FFF9F0;     /* Soft off-white */
    
    --base-bg: #1a1a1a;         /* Dark background for contrast */
    --text-light: #EAEAEA;
    --text-dark: #333;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(229, 99, 153, 0.1);
    --glass-border: rgba(229, 99, 153, 0.3);
    --glass-shadow: rgba(0, 0, 0, 0.25);
    --glass-blur: 12px;
    
    --font-heading: 'Exo 2', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --header-height: 80px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { 
    font-family: var(--font-body); 
    background-color: var(--base-bg); 
    color: var(--text-light); 
    line-height: 1.7; 
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(229, 99, 153, 0.15), transparent 30%),
        radial-gradient(circle at 80% 90%, rgba(255, 215, 0, 0.1), transparent 35%);
    background-attachment: fixed;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
img { max-width: 100%; height: auto; display: block; }
section { padding: 6rem 0; position: relative; overflow: hidden; }

/* Typography */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; text-transform: uppercase; letter-spacing: 1px; }
h1 { font-size: clamp(3rem, 5vw, 5rem); text-shadow: 0 0 20px rgba(229, 99, 153, 0.5); }
h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); text-align: center; margin-bottom: 1rem; color: var(--lotus-pink); }
h3 { font-size: 1.6rem; margin-bottom: 0.8rem; color: var(--lotus-cream); }
.section-title p { max-width: 600px; margin: 0 auto 3rem auto; text-align: center; color: var(--text-light); font-size: 1.1rem; opacity: 0.8; }

/* Buttons */
.btn { 
    display: inline-block; padding: 0.9rem 2.2rem; border-radius: 50px; 
    text-decoration: none; font-weight: 500; transition: all 0.3s ease; 
    border: 2px solid var(--lotus-pink); font-family: var(--font-heading);
    transform: translateY(0); letter-spacing: 1px; text-transform: uppercase;
}
.btn-primary { background-color: var(--lotus-pink); color: var(--lotus-cream); }
.btn-primary:hover { 
    background-color: var(--lotus-deep-pink); border-color: var(--lotus-deep-pink);
    transform: translateY(-5px); box-shadow: 0 10px 20px rgba(229, 99, 153, 0.3);
}
.btn-secondary { background-color: transparent; color: var(--lotus-pink); }
.btn-secondary:hover { background-color: var(--lotus-pink); color: var(--lotus-cream); }

/* --- Header & Navigation (Glassy) --- */
#header { 
    position: sticky; top: 0; width: 100%; z-index: 1000; height: var(--header-height); 
    transition: background-color 0.4s ease, border-bottom-color 0.4s ease; 
    background-color: transparent; border-bottom: 1px solid transparent;
}
#header.scrolled { 
    background-color: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(var(--glass-blur));
    border-bottom-color: var(--glass-border);
}
#header .container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo img { height: 45px; width: auto; }
.main-nav ul { list-style: none; display: flex; gap: 2.5rem; }
.main-nav a { 
    text-decoration: none; color: var(--text-light); font-weight: 400; 
    position: relative; padding: 5px 0; transition: color 0.3s ease;
    font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px;
}
.main-nav a::after { 
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background-color: var(--lotus-gold); 
    transition: width 0.3s ease; 
}
.main-nav a:hover { color: var(--lotus-gold); }
.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; filter: saturate(1.1); }
.slide.active { opacity: 1; transform: scale(1.05); transition-duration: 7s; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(26,26,26,0.5) 0%, rgba(26,26,26,0.8) 100%); 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-light); font-size: 1.25rem; margin: 1.5rem 0 2.5rem; font-weight: 300; opacity: 0.9; }

/* --- About Section --- */
.about-container { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 5rem; }
.about-image-slideshow { position: relative; width: 100%; height: 500px; border-radius: 20px; overflow: hidden; }
.about-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.5s ease-in-out; }
.about-slide.active { opacity: 1; }
.about-content p { margin-bottom: 2rem; color: var(--text-light); font-size: 1.1rem; opacity: 0.8; }

/* --- Service & Contact Cards (Robotic Lotus Glass) --- */
.service-card, .info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    backdrop-filter: blur(var(--glass-blur));
    border-radius: 40px 10px 40px 10px; /* Petal-like shape */
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}
.service-card:hover, .info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 40px rgba(229, 99, 153, 0.4);
    border-color: rgba(229, 99, 153, 0.6);
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.service-card { display: flex; flex-direction: column; }
.service-card img { width: 100%; height: 220px; object-fit: cover; filter: brightness(0.9); transition: filter 0.4s ease; }
.service-card:hover img { filter: brightness(1.1); }
.service-card-content { padding: 1.8rem; display: flex; flex-direction: column; flex-grow: 1; }
.service-prices { list-style: none; margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--glass-border); }
.service-prices li { display: flex; justify-content: space-between; align-items: center; color: var(--text-light); opacity: 0.8; padding: 0.6rem 0; font-size: 1rem; }
.service-prices li span:last-child { font-weight: 700; color: var(--lotus-gold); font-family: var(--font-heading); font-size: 1.1rem; }

/* --- Gallery Section (Robotic Hexagon/Petal Shape) --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; justify-content: center; }
.gallery-item { 
    overflow: hidden; 
    position: relative;
    /* Robotic Petal/Hexagon Shape */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform 0.4s ease;
}
.gallery-item:hover {
    transform: scale(1.05) rotate(2deg);
    z-index: 10;
}
.gallery-item img { 
    width: 100%; height: 300px; object-fit: cover; 
    transition: transform 0.4s ease-in-out;
}
.gallery-item:hover img { transform: scale(1.1); }

/* --- Contact Section --- */
.contact-info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.info-card { text-align: center; padding: 2.5rem; }
.info-card .icon { font-size: 2.5rem; color: var(--lotus-gold); margin-bottom: 1rem; text-shadow: 0 0 15px var(--lotus-gold); }
.info-card h3 { margin-bottom: 0.5rem; }
.info-card p { opacity: 0.8; font-size: 1.05rem; word-wrap: break-word; }
.contact-map iframe { width: 100%; height: 450px; border-radius: 20px; border: 1px solid var(--glass-border); filter: grayscale(80%) contrast(1.2); }

/* --- Footer --- */
footer { padding: 4rem 0; text-align: center; background-color: #111; border-top: 1px solid var(--glass-border); }
.social-links a { 
    color: var(--text-light); 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) translateY(-3px); color: var(--lotus-pink); }
footer p { margin-top: 2.5rem; font-size: 0.95rem; opacity: 0.7; letter-spacing: 1px; }

/* --- Floating Action Button (FAB) --- */
.fab-container { position: fixed; bottom: 30px; right: 30px; z-index: 1000; }
.fab-main {
    width: 65px; height: 65px;
    background: linear-gradient(145deg, var(--lotus-pink), var(--lotus-deep-pink));
    color: var(--lotus-cream);
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 1.8rem; cursor: pointer;
    box-shadow: 0 0 30px rgba(229, 99, 153, 0.6);
    transition: all 0.3s ease;
}
.fab-main:hover { transform: scale(1.1); box-shadow: 0 0 40px rgba(229, 99, 153, 0.8); }
.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(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(--lotus-deep-pink);
    color: var(--text-light); 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: all 0.3s ease; 
}
.fab-option:hover { background-color: var(--lotus-pink); transform: scale(1.1); }
.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; gap: 3rem; text-align: center; } 
    .about-image-slideshow { margin: 0 auto 2rem auto; height: 400px; }
    section { padding: 4rem 0; }
}
@media (max-width: 768px) {
    .main-nav { 
        display: none; position: absolute; top: var(--header-height); left: 0; right: 0; 
        background: rgba(26, 26, 26, 0.9);
        backdrop-filter: blur(var(--glass-blur));
        border-bottom: 1px solid var(--glass-border);
    }
    .main-nav.active { display: block; } .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav a { display: block; padding: 1.2rem 2rem; border-bottom: 1px solid var(--glass-border); }
    #header .btn-primary { display: none; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; background: transparent; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001; }
    .hamburger { display: block; position: relative; width: 28px; height: 2px; background-color: var(--lotus-pink); transition: all 0.3s ease; }
    .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); }
}