:root {
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-main: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated Background */
.gradient-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: -1;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: white; transition: 0.3s; }

/* Header */
.flow-header { padding: 30px 0; background: rgba(0,0,0,0.2); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; letter-spacing: 2px; }
.bold { font-weight: 900; }

.flow-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.flow-nav a { font-weight: 500; opacity: 0.8; }
.flow-nav a:hover, .flow-nav a.active { opacity: 1; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

.btn-glass { padding: 10px 25px; border: 1px solid var(--glass-border); border-radius: 30px; background: var(--glass-bg); backdrop-filter: blur(5px); font-weight: 700; }
.btn-glass:hover { background: white; color: #e73c7e; }

/* Mobile Menu */
.menu-bubble { display: none; font-size: 1.2rem; cursor: pointer; letter-spacing: 3px; }
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: 0.4s; backdrop-filter: blur(10px); }
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.close-menu { position: absolute; top: 30px; right: 30px; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }
.mobile-links a { font-size: 2.5rem; font-weight: 700; margin: 15px 0; display: block; }

/* Hero */
.hero-flow { height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content h1 { font-size: 6rem; line-height: 0.9; margin-bottom: 20px; font-weight: 900; letter-spacing: -2px; }
.hero-content p { font-size: 1.5rem; max-width: 600px; margin: 0 auto; opacity: 0.9; font-weight: 300; }
.scroll-indicator { margin-top: 50px; font-size: 0.8rem; letter-spacing: 2px; animation: bounce 2s infinite; opacity: 0.7; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }

/* Cards & Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.glass-card { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 40px; border-radius: 20px; backdrop-filter: blur(10px); transition: 0.3s; }
.glass-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.2); }
.glass-card h3 { font-size: 2rem; margin-bottom: 15px; font-weight: 700; }

/* About */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-content h2 { font-size: 3.5rem; line-height: 1; margin-bottom: 20px; }
.stats-glass { display: flex; gap: 40px; margin-top: 40px; }
.stat span { display: block; font-size: 2.5rem; font-weight: 900; }
.stat small { text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.floating-img img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); animation: float 6s ease-in-out infinite; }
@keyframes float { 0% { transform: translatey(0px); } 50% { transform: translatey(-20px); } 100% { transform: translatey(0px); } }

/* Testimonials */
.center-title { text-align: center; font-size: 3rem; margin-bottom: 60px; }
.reviews-flow { display: flex; flex-direction: column; gap: 30px; max-width: 800px; margin: 0 auto; }
.review-bubble { background: var(--glass-bg); padding: 30px; border-radius: 20px 20px 20px 0; border: 1px solid var(--glass-border); }
.review-bubble.right { border-radius: 20px 20px 0 20px; align-self: flex-end; text-align: right; background: rgba(255,255,255,0.15); }
.review-bubble p { font-size: 1.2rem; margin-bottom: 15px; font-style: italic; }

/* Contact Form */
.contact-glass-box { max-width: 600px; margin: 0 auto; background: var(--glass-bg); padding: 50px; border-radius: 30px; border: 1px solid var(--glass-border); backdrop-filter: blur(20px); text-align: center; }
.c-head { margin-bottom: 30px; }
.c-head h2 { font-size: 2.5rem; }
.mail-link { display: block; font-size: 1.2rem; font-weight: 700; margin-top: 10px; text-decoration: underline; }
.input-wrap { margin-bottom: 20px; }
input, select, textarea { width: 100%; padding: 15px; background: rgba(0,0,0,0.2); border: 1px solid var(--glass-border); border-radius: 10px; color: white; font-family: var(--font-main); font-size: 1rem; }
input:focus, select:focus, textarea:focus { outline: none; background: rgba(0,0,0,0.4); border-color: white; }
.btn-glow { width: 100%; padding: 15px; border-radius: 10px; border: none; background: white; color: #e73c7e; font-weight: 900; font-size: 1.1rem; cursor: pointer; box-shadow: 0 0 20px rgba(255,255,255,0.3); transition: 0.3s; }
.btn-glow:hover { transform: scale(1.02); box-shadow: 0 0 30px rgba(255,255,255,0.5); }

/* Legal */
.legal-glass { max-width: 800px; margin: 0 auto; background: rgba(0,0,0,0.3); padding: 50px; border-radius: 20px; }
.line { width: 50px; height: 3px; background: white; margin: 20px 0 30px; }

/* Footer */
.flow-footer { background: rgba(0,0,0,0.2); padding: 50px 0 20px; margin-top: auto; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; padding-bottom: 30px; }
.footer-right a { margin-left: 20px; font-weight: 700; }
.footer-bottom { text-align: center; border-top: 1px solid var(--glass-border); padding-top: 20px; font-size: 0.8rem; opacity: 0.6; }

@media (max-width: 900px) {
    .flow-nav { display: none; }
    .menu-bubble { display: block; }
    .hero-content h1 { font-size: 3.5rem; }
    .services-grid, .about-layout { grid-template-columns: 1fr; }
}