/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #2D1B4E;
    background: #FFFAF5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; top: -100%; left: 16px; background: #6B3FA0; color: #fff; padding: 8px 16px; border-radius: 8px; z-index: 200; font-weight: 600; }
.skip-link:focus { top: 16px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; color: #2D1B4E; }
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6B3FA0;
    background: rgba(107, 63, 160, 0.08);
    border: 1px solid rgba(107, 63, 160, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 16px; }
.section-desc { font-size: 1.1rem; color: #5A4672; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; padding: 16px 24px; font-size: 1rem; }
.btn-amber {
    background: #F5C518;
    color: #2D1B4E;
    border-color: #F5C518;
}
.btn-amber:hover { background: #E6B800; border-color: #E6B800; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245, 197, 24, 0.35); }
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 250, 245, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(107, 63, 160, 0.08);
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(107, 63, 160, 0.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { flex-shrink: 0; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; color: #6B3FA0; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger { display: block; width: 24px; height: 2px; background: #6B3FA0; position: relative; transition: all 0.3s ease; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 24px; height: 2px; background: #6B3FA0; left: 0; transition: all 0.3s ease; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }
#nav-menu ul { display: flex; align-items: center; gap: 8px; }
#nav-menu a { padding: 8px 16px; border-radius: 50px; font-weight: 500; font-size: 0.95rem; color: #4A3266; transition: all 0.2s ease; }
#nav-menu a:hover { background: rgba(107, 63, 160, 0.08); color: #6B3FA0; }
#nav-menu li:last-child a { background: #F5C518; color: #2D1B4E; font-weight: 700; margin-left: 8px; }
#nav-menu li:last-child a:hover { background: #E6B800; }

@media (max-width: 860px) {
    .nav-toggle { display: block; }
    #nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 250, 245, 0.98);
        backdrop-filter: blur(16px);
        padding: 24px;
        border-bottom: 1px solid rgba(107, 63, 160, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.35s ease;
        pointer-events: none;
    }
    #nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    #nav-menu ul { flex-direction: column; gap: 4px; }
    #nav-menu a { display: block; padding: 12px 16px; border-radius: 12px; }
    #nav-menu li:last-child a { margin-left: 0; text-align: center; margin-top: 8px; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #3D1F6B 0%, #6B3FA0 50%, #8B5FBF 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle at 25% 25%, #F5C518 1px, transparent 1px), radial-gradient(circle at 75% 75%, #fff 1px, transparent 1px);
    background-size: 48px 48px, 32px 32px;
    pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 197, 24, 0.15);
    border: 1px solid rgba(245, 197, 24, 0.3);
    color: #F5C518;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.25rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-cards { position: relative; min-height: 480px; }
.hero-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-card-main { width: 100%; max-width: 420px; }
.hero-card-main img { width: 100%; height: 320px; object-fit: cover; }
.hero-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 27, 78, 0.9) 0%, rgba(45, 27, 78, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: #fff;
}
.hero-card-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #F5C518; margin-bottom: 8px; }
.hero-card-title { font-size: 1.5rem; margin-bottom: 8px; color: #fff; }
.hero-card-overlay p { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.6; }
.hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}
.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(107, 63, 160, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: #6B3FA0; line-height: 1; }
.stat-label { font-size: 0.8rem; color: #7A6490; margin-top: 4px; }
.stat-card-1 { top: 20px; right: -20px; }
.stat-card-2 { bottom: 120px; left: -30px; }
.stat-card-3 { bottom: -10px; right: 20px; }

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-cards { display: none; }
}

/* ===== SERVICES ===== */
.services { background: #FFFAF5; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px;
    border: 1px solid rgba(107, 63, 160, 0.07);
    transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(107, 63, 160, 0.12); border-color: rgba(107, 63, 160, 0.15); }
.service-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(107,63,160,0.08) 0%, rgba(107,63,160,0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #2D1B4E; }
.service-card p { font-size: 0.95rem; color: #5A4672; line-height: 1.7; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== WHY US ===== */
.why-us { background: linear-gradient(160deg, #F8F0FF 0%, #FFFAF5 100%); }
.why-us-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-us-content .section-desc { margin-bottom: 36px; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-check {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(107, 63, 160, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.why-item strong { display: block; font-size: 1.05rem; color: #2D1B4E; margin-bottom: 4px; }
.why-item p { font-size: 0.9rem; color: #5A4672; line-height: 1.65; }
.image-collage { position: relative; min-height: 500px; }
.image-collage img {
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(107, 63, 160, 0.15);
    object-fit: cover;
}
.image-collage img:first-child { width: 100%; height: 300px; }
.image-collage img:nth-child(2) {
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 55%;
    height: 200px;
    border: 4px solid #FFFAF5;
}
.image-collage img:nth-child(3) {
    position: absolute;
    top: 60px;
    right: -20px;
    width: 55%;
    height: 200px;
    border: 4px solid #FFFAF5;
}
.collage-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.2);
    bottom: 40px;
    right: 40px;
    z-index: -1;
}

@media (max-width: 860px) {
    .why-us-inner { grid-template-columns: 1fr; }
    .image-collage { min-height: 360px; margin-top: 40px; }
    .image-collage img:nth-child(2) { left: -10px; }
    .image-collage img:nth-child(3) { right: -10px; }
}

/* ===== GALLERY ===== */
.gallery { background: #FFFAF5; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(45, 27, 78, 0.85), transparent);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ===== TESTIMONIALS ===== */
.testimonials { background: linear-gradient(160deg, #3D1F6B 0%, #6B3FA0 100%); position: relative; overflow: hidden; }
.testimonials .section-tag { background: rgba(245, 197, 24, 0.15); color: #F5C518; border-color: rgba(245, 197, 24, 0.25); }
.testimonials .section-title { color: #fff; }
.testimonials .section-desc { color: rgba(255,255,255,0.75); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 32px 28px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.testimonial-text { font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5C518, #E6B800);
    color: #2D1B4E;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.author-name { display: block; font-weight: 600; color: #fff; font-size: 0.95rem; }
.author-location { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

@media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ===== CTA ===== */
.cta { background: #FFFAF5; padding: 80px 0; }
.cta-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(145deg, #6B3FA0, #8B5FBF);
    padding: 72px 60px;
    text-align: center;
}
.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle, #F5C518 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: #fff; margin-bottom: 16px; }
.cta-text { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ===== CONTACT ===== */
.contact { background: #FFFAF5; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-desc { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(107, 63, 160, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 1rem; color: #2D1B4E; margin-bottom: 4px; }
.contact-item p { font-size: 0.9rem; color: #5A4672; line-height: 1.6; }
.contact-item a { color: #6B3FA0; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.contact-item a:hover { color: #4A2D70; }

.contact-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(107, 63, 160, 0.08);
    box-shadow: 0 12px 40px rgba(107, 63, 160, 0.07);
}
.form-title { font-size: 1.5rem; margin-bottom: 8px; }
.form-sub { font-size: 0.9rem; color: #7A6490; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: #2D1B4E; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(107, 63, 160, 0.15);
    border-radius: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #2D1B4E;
    background: #FFFAF5;
    transition: all 0.2s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #6B3FA0;
    box-shadow: 0 0 0 4px rgba(107, 63, 160, 0.08);
    background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B8A4C9; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(107, 63, 160, 0.06);
    border: 1px solid rgba(107, 63, 160, 0.12);
    font-size: 0.9rem;
    color: #2D1B4E;
    line-height: 1.6;
}

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.footer { background: #2D1B4E; color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo-text { color: #fff; }
.footer-tagline { font-size: 0.9rem; margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-links strong, .footer-contact strong { display: block; color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: #F5C518; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }

@media (max-width: 700px) {
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
    .reveal[data-reveal] {
        opacity: 0;
        transform: translateY(30px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}
