/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Nunito', sans-serif;
    color: #2D1B36;
    background: #FAF5FF;
    line-height: 1.7;
    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; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7B2D8E;
    background: rgba(123,45,142,0.08);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #2D1B36;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #6B5470;
    max-width: 600px;
    margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, #7B2D8E, #9B4DCA);
    color: #fff;
    border-color: #7B2D8E;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #6A2478, #8A3DB8);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123,45,142,0.35);
}
.btn-amber {
    background: linear-gradient(135deg, #D97706, #F59E0B);
    color: #fff;
    border-color: #D97706;
}
.btn-amber:hover {
    background: linear-gradient(135deg, #B45309, #D97706);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217,119,6,0.35);
}
.btn-outline-light {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
    background: #fff;
    color: #7B2D8E;
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
    background: #fff;
    color: #7B2D8E;
    transform: translateY(-2px);
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,245,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123,45,142,0.08);
    transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(123,45,142,0.1); }
.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #2D1B36;
}
.logo-accent { color: #7B2D8E; }
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.nav a {
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4A3052;
    border-radius: 50px;
    transition: all 0.2s ease;
}
.nav a:hover { color: #7B2D8E; background: rgba(123,45,142,0.06); }
.header-cta { display: none; }

/* Mobile toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: #7B2D8E;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,245,255,0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid rgba(123,45,142,0.1);
    box-shadow: 0 12px 32px rgba(123,45,142,0.1);
    z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    padding: 12px 16px;
    font-weight: 600;
    color: #4A3052;
    border-radius: 12px;
    transition: all 0.2s ease;
}
.mobile-nav a:hover { background: rgba(123,45,142,0.06); color: #7B2D8E; }
.mobile-nav .btn { justify-content: center; margin-top: 8px; }

@media (max-width: 768px) {
    .nav { display: none; }
    .header-cta { display: none !important; }
    .mobile-toggle { display: flex; }
}
@media (min-width: 1024px) {
    .mobile-toggle { display: none !important; }
    .header-cta { display: inline-flex; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4A1460 0%, #7B2D8E 30%, #9B4DCA 55%, #D97706 100%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}
.hero-orb--1 {
    width: 500px; height: 500px;
    background: #D97706;
    top: -100px; right: -100px;
    opacity: 0.25;
}
.hero-orb--2 {
    width: 400px; height: 400px;
    background: #7B2D8E;
    bottom: -50px; left: -100px;
    opacity: 0.3;
}
.hero-orb--3 {
    width: 200px; height: 200px;
    background: #F59E0B;
    top: 40%; left: 10%;
    opacity: 0.15;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 28px;
}
.hero-title {
    font-size: clamp(2rem, 5.5vw, 3.8rem);
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.15;
}
.gradient-text {
    background: linear-gradient(135deg, #FDE68A, #F59E0B, #D97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    font-size: 0.9rem;
}
.hero-trust .trust-item svg { color: #FDE68A; }
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== SERVICES ===== */
.services {
    padding: 100px 24px;
    background: #FAF5FF;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid rgba(123,45,142,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7B2D8E, #D97706);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(123,45,142,0.12);
    border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(123,45,142,0.08), rgba(217,119,6,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B2D8E;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, #7B2D8E, #9B4DCA);
    color: #fff;
}
.service-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #2D1B36;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.95rem;
    color: #6B5470;
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 24px;
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(123,45,142,0.15);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(123,45,142,0.2);
    border: 4px solid #fff;
}
.about-img-float img { width: 100%; height: 200px; object-fit: cover; }
.about-experience {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, #7B2D8E, #9B4DCA);
    color: #fff;
    padding: 20px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(123,45,142,0.3);
}
.about-experience .exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
}
.about-experience .exp-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.about-content .section-subtitle { margin-bottom: 24px; }
.about-body {
    font-size: 1rem;
    color: #6B5470;
    margin-bottom: 20px;
    line-height: 1.8;
}
.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(123,45,142,0.1);
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #7B2D8E;
}
.stat-label {
    font-size: 0.8rem;
    color: #6B5470;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-float { right: 10px; bottom: -30px; }
    .about-experience { left: 10px; }
}

/* ===== WHY US ===== */
.why-us {
    padding: 100px 24px;
    background: linear-gradient(180deg, #FAF5FF 0%, #F3E8FF 100%);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(123,45,142,0.06);
    transition: all 0.3s ease;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(123,45,142,0.1);
}
.why-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7B2D8E, #D97706);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto 20px;
}
.why-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #2D1B36;
    margin-bottom: 10px;
}
.why-card p {
    font-size: 0.9rem;
    color: #6B5470;
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 24px;
    background: #fff;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: #FAF5FF;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid rgba(123,45,142,0.06);
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(123,45,142,0.1);
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 1rem;
    color: #4A3052;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7B2D8E, #D97706);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}
.author-name {
    display: block;
    font-weight: 700;
    color: #2D1B36;
    font-size: 0.95rem;
}
.author-location {
    display: block;
    font-size: 0.8rem;
    color: #6B5470;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: 100px 24px;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4A1460, #7B2D8E 50%, #D97706);
}
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.cta-orb--1 {
    width: 400px; height: 400px;
    background: #D97706;
    top: -100px; left: -100px;
    opacity: 0.3;
}
.cta-orb--2 {
    width: 300px; height: 300px;
    background: #9B4DCA;
    bottom: -80px; right: -80px;
    opacity: 0.3;
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
}
.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #fff;
    margin-bottom: 16px;
}
.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 24px;
    background: #FAF5FF;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-desc {
    font-size: 1rem;
    color: #6B5470;
    margin-bottom: 36px;
    line-height: 1.7;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(123,45,142,0.08), rgba(217,119,6,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B2D8E;
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2D1B36;
    margin-bottom: 4px;
}
.contact-item span, .contact-item a {
    font-size: 0.95rem;
    color: #6B5470;
}
.contact-item a:hover { color: #7B2D8E; }
.contact-map { border-radius: 16px; overflow: hidden; }

/* Form */
.contact-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(123,45,142,0.08);
    border: 1px solid rgba(123,45,142,0.06);
}
.form-title {
    font-size: 1.5rem;
    color: #2D1B36;
    margin-bottom: 8px;
}
.form-subtitle {
    font-size: 0.9rem;
    color: #6B5470;
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: #4A3052;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(123,45,142,0.12);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #2D1B36;
    background: #FAF5FF;
    transition: all 0.2s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #7B2D8E;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(123,45,142,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    color: #7B2D8E;
    margin: 16px 0 8px;
}
.form-success p { color: #6B5470; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-wrap { padding: 28px; }
}

/* ===== FOOTER ===== */
.footer {
    background: #1A0E22;
    color: rgba(255,255,255,0.7);
    padding: 72px 24px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-links h4, .footer-contact h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: #F59E0B; }
.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.6;
}
.footer-contact a:hover { color: #F59E0B; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

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

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
