/* === VARIABLES & RESET === */
:root {
    --royal-purple: #7C3AED;
    --light-purple: #A78BFA;
    --pink-accent: #F472B6;
    --bg-light: #FAF5FF;
    --dark-indigo: #312E81;
    --white: #ffffff;
    --text-dark: #1e1b4b;
    --text-gray: #4b5563;
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text-dark); background: var(--bg-light); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: 12px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }
.full-width { width: 100%; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { color: var(--dark-indigo); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
p { color: var(--text-gray); margin-bottom: 15px; }
.section-tag { display: inline-block; color: var(--royal-purple); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 10px; }
.gradient-text { background: linear-gradient(135deg, var(--royal-purple), var(--pink-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* === BUTTONS === */
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 600; cursor: pointer; border: none; font-size: 1rem; transition: var(--transition); }
.btn-primary { background: var(--royal-purple); color: var(--white); box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3); }
.btn-primary:hover { background: var(--dark-indigo); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4); }
.btn-outline { border: 2px solid var(--royal-purple); color: var(--royal-purple); background: transparent; }
.btn-outline:hover { background: var(--royal-purple); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* === NAVBAR === */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: var(--transition); background: rgba(250, 245, 255, 0.8); backdrop-filter: blur(12px); }
.navbar.scrolled { padding: 12px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--dark-indigo); display: flex; align-items: center; gap: 8px; }
.logo-icon { color: var(--royal-purple); font-size: 1.8rem; }
.nav-menu { display: flex; gap: 30px; }
.nav-menu a { font-weight: 500; color: var(--text-dark); position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--royal-purple); transition: var(--transition); }
.nav-menu a:hover::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: var(--dark-indigo); border-radius: 2px; transition: var(--transition); }

/* === HERO === */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 80px; overflow: hidden; }
.hero-content { max-width: 700px; position: relative; z-index: 2;}
.sub-heading { color: var(--royal-purple); font-weight: 600; letter-spacing: 1px;  display: block; }
.hero-desc { font-size: 1.15rem; margin-bottom: 30px; max-width: 600px; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-shape { position: absolute; right: -10%; top: 10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(167,139,250,0.2) 0%, rgba(244,114,182,0.1) 70%); border-radius: 50%; z-index: 1; filter: blur(60px); animation: pulse 6s infinite alternate; }

/* === GRIDS === */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.section-header { margin-bottom: 60px; }

/* === ABOUT === */
.about-img img { width: 100%; height: 500px; object-fit: cover; box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15); }
.vmission-grid { display: grid; gap: 20px; margin-top: 30px; }
.vm-item { padding: 20px; background: var(--white); border-radius: 12px; border-left: 4px solid var(--royal-purple); box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.vm-item h4 { margin-bottom: 8px; color: var(--royal-purple); }

/* === STATS === */
.stats-section { background: var(--dark-indigo); padding: 80px 0; color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-number { font-size: 3.5rem; font-weight: 700; color: var(--light-purple); display: block; }
.stats-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-top: 10px; }

/* === FEATURES & SERVICES CARDS === */
.feature-card, .service-card, .review-card { background: var(--white); padding: 40px 30px; border-radius: 16px; transition: var(--transition); border: 1px solid rgba(124, 58, 237, 0.08); }
.feature-card:hover, .service-card:hover, .review-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(124, 58, 237, 0.12); border-color: var(--light-purple); }
.icon-box { font-size: 2.5rem; margin-bottom: 20px; }
.service-card h3 { color: var(--royal-purple); }

/* === PROCESS === */
.process-steps { display: flex; justify-content: space-between; align-items: flex-start; position: relative; margin-top: 50px; }
.step { text-align: center; flex: 1; position: relative; z-index: 2; padding: 0 15px; }
.step-num { width: 60px; height: 60px; background: var(--royal-purple); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; margin: 0 auto 20px; }
.connector { flex: 1; height: 3px; background: linear-gradient(90deg, var(--royal-purple), var(--pink-accent)); margin-top: 30px; opacity: 0.3; }

/* === BOOKING FORM === */
.booking-section { background: var(--white); }
.booking-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; background: var(--bg-light); padding: 60px; border-radius: 24px; }
.contact-list-mini li { margin-bottom: 12px; font-weight: 500; color: var(--dark-indigo); }
.form-group { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
input, select, textarea { width: 100%; padding: 16px 20px; border: 2px solid rgba(124, 58, 237, 0.1); border-radius: 12px; font-family: var(--font-main); font-size: 1rem; transition: var(--transition); background: var(--white); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--royal-purple); box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1); }

/* === FAQ === */
.faq-grid { max-width: 800px; margin: 0 auto; display: grid; gap: 15px; }
.faq-item { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid rgba(124, 58, 237, 0.08); transition: var(--transition); }
.faq-item[open] { border-color: var(--royal-purple); box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08); }
.faq-item summary { padding: 22px 30px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--dark-indigo); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--royal-purple); transition: var(--transition); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 30px 22px; color: var(--text-gray); }

/* === REVIEWS === */
.stars { color: #FBBF24; font-size: 1.2rem; margin-bottom: 15px; }
.review-card strong { display: block; margin-top: 15px; color: var(--royal-purple); }

/* === CONTACT === */
.info-block { margin-bottom: 25px; }
.info-block h4 { margin-bottom: 5px; color: var(--royal-purple); }
.info-block a:hover { color: var(--royal-purple); }

/* === FOOTER === */
.footer { background: var(--dark-indigo); color: #ffffff; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer h3 { color: var(--white); margin-bottom: 25px; font-size: 1.2rem; }
.footer ul li { margin-bottom: 12px; }
.footer ul a:hover { color: var(--light-purple); padding-left: 5px; }
.subscribe-form { display: flex; gap: 10px; margin-top: 15px; }
.subscribe-form input { padding: 12px 15px; font-size: 0.9rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 25px 0; font-size: 0.9rem; }
.legal-links { display: flex; gap: 25px; }
.legal-links a:hover { color: var(--light-purple); }

/* === ANIMATIONS === */
@keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.1); opacity: 0.8; } }
.fade-in-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0); }

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .grid-2, .grid-3, .stats-grid, .footer-grid, .booking-wrapper { grid-template-columns: 1fr 1fr; }
    .process-steps { flex-wrap: wrap; gap: 30px; }
    .connector { display: none; }
    .step { flex: 0 0 calc(50% - 15px); }
    .hero-shape { width: 400px; height: 400px; }
}

@media (max-width: 768px) {
    .nav-menu { position: fixed; top: 0; right: -100%; width: 80%; height: 100vh; background: var(--white); flex-direction: column; justify-content: center; align-items: center; gap: 30px; transition: var(--transition); box-shadow: -5px 0 30px rgba(0,0,0,0.1); }
    .nav-menu.active { right: 0; }
    .hamburger { display: flex; z-index: 1001; }
    .cta-nav { display: none; }
    .grid-2, .grid-3, .stats-grid, .footer-grid, .booking-wrapper, .form-group { grid-template-columns: 1fr; }
    .step { flex: 0 0 100%; }
    .hero { text-align: center; justify-content: center; }
    .hero-content { margin: 0 auto; }
    .hero-btns { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .about-img img { height: 350px; }
    .booking-wrapper { padding: 30px; }
}