/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', sans-serif;
    color: #3a2030;
    background: #fffaf8;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
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; font-weight: 700; line-height: 1.25; color: #781f37; }
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c4728a;
    margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: #6b4a5c; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.lead { font-size: 1.05rem; color: #6b4a5c; line-height: 1.8; margin-bottom: 24px; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: #781f37;
    color: #fff;
    border-color: #781f37;
}
.btn-primary:hover { background: #5e1730; border-color: #5e1730; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(120,31,55,0.25); }
.btn-white { background: #fff; color: #781f37; border-color: #fff; }
.btn-white:hover { background: #fff5f7; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #781f37; border-color: #781f37; }
.btn-ghost:hover { background: #781f37; color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,250,248,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(120,31,55,0.08);
    transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(120,31,55,0.08); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: #781f37; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a:not(.btn) { font-size: 0.9rem; font-weight: 500; color: #6b4a5c; transition: color 0.2s; }
.nav a:not(.btn):hover { color: #781f37; }

/* Mobile toggle */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #781f37; border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,250,248,0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid rgba(120,31,55,0.1);
    z-index: 999;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: #3a2030; padding: 8px 0; }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #781f37 0%, #a84362 30%, #d4849a 60%, #f2c4ce 100%);
    padding-top: 72px;
}
.hero-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%); }
.hero-pattern {
    position: absolute; inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c3 3 6 6 6 10a6 6 0 0 1-12 0c0-4 3-7 6-10z' fill='%23fff'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0 100px;
    position: relative;
    z-index: 1;
}
.hero-content { color: #fff; }
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; line-height: 1.8; max-width: 500px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500; }
.trust-item svg { opacity: 0.8; }

/* Hero images */
.hero-image-wrap { position: relative; height: 640px; }
.hero-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
    position: absolute;
    bottom: 40px;
    left: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
    z-index: 2;
    border: 4px solid rgba(255,255,255,0.5);
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-accent-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 32px rgba(120,31,55,0.15);
    z-index: 3;
}
.accent-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f2c4ce, #d4849a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #781f37;
    flex-shrink: 0;
}
.hero-accent-card strong { display: block; font-size: 0.9rem; color: #781f37; }
.hero-accent-card span { font-size: 0.78rem; color: #8a6070; }

/* Hero wave */
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ========== SERVICES ========== */
.services {
    padding: 100px 0;
    background: #fffaf8;
}
.services .section-label, .services .section-title, .services .section-sub { text-align: center; display: block; }
.services .section-sub { margin: 0 auto 48px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(120,31,55,0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #781f37, #d4849a);
    opacity: 0;
    transition: opacity 0.35s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(120,31,55,0.1); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fdf0f3, #fce4e9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #781f37; }
.service-card p { font-size: 0.92rem; color: #6b4a5c; line-height: 1.7; }

/* ========== ABOUT ========== */
.about {
    padding: 100px 0;
    background: #fff;
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images { position: relative; height: 560px; }
.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(120,31,55,0.12);
    position: relative;
    z-index: 1;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(120,31,55,0.15);
    z-index: 2;
    border: 5px solid #fff;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-label { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; }
.about-stats {
    display: flex;
    gap: 32px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid rgba(120,31,55,0.1);
    border-bottom: 1px solid rgba(120,31,55,0.1);
}
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #781f37; }
.stat span { font-size: 0.85rem; color: #8a6070; }

/* ========== WHY US ========== */
.why-us {
    padding: 100px 0;
    background: linear-gradient(180deg, #fffaf8 0%, #fdf0f3 100%);
}
.why-us .section-sub { margin: 0 auto 48px; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid rgba(120,31,55,0.06);
    transition: all 0.3s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(120,31,55,0.08); }
.why-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #f2c4ce;
    line-height: 1;
    margin-bottom: 12px;
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: #781f37; }
.why-card p { font-size: 0.9rem; color: #6b4a5c; line-height: 1.7; }

/* ========== CTA BANNER ========== */
.cta-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #781f37 0%, #a84362 50%, #d4849a 100%);
}
.cta-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 60%); }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: #fff; margin-bottom: 16px; }
.cta-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ========== CONTACT ========== */
.contact {
    padding: 100px 0;
    background: #fff;
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info .section-label { margin-bottom: 12px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-details { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fdf0f3, #fce4e9);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; color: #8a6070; margin-bottom: 2px; font-weight: 500; }
.contact-item a, .contact-item span { font-size: 0.95rem; color: #3a2030; }
.contact-item a:hover { color: #781f37; }
.contact-map { border-radius: 16px; overflow: hidden; margin-top: 8px; box-shadow: 0 8px 24px rgba(120,31,55,0.08); }

/* Contact form */
.contact-form-wrap {
    background: #fffaf8;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(120,31,55,0.08);
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.9rem; color: #8a6070; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: #6b4a5c; margin-bottom: 6px; letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(120,31,55,0.15);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #3a2030;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #781f37;
    box-shadow: 0 0 0 3px rgba(120,31,55,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #c4a0ac; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Success state */
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.active { display: block; }
.form-success svg { margin: 0 auto 16px; }
.form-success h4 { font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; color: #6b4a5c; }

/* ========== FOOTER ========== */
.footer { background: #2a0f18; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer .logo-text { color: #fff; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-links strong, .footer-contact strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f2c4ce;
    margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #f2c4ce; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { font-size: 0.9rem; transition: color 0.2s; }
.footer-contact a:hover { color: #f2c4ce; }
.footer-contact span { font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); }

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-wrap { height: 480px; order: -1; }
    .hero-content { text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-img-float { left: -10px; }
    .hero-accent-card { right: 0; }
    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-images { height: 400px; }
    .about-img-secondary { right: -10px; bottom: -20px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero { padding-top: 72px; }
    .hero-inner { padding: 40px 0 80px; }
    .hero-image-wrap { height: 360px; }
    .hero-img-float { display: none; }
    .hero-accent-card { top: auto; bottom: 20px; right: 10px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 16px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-headline { font-size: 1.7rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
