/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rose: #d4a0a0;
    --rose-dark: #c08080;
    --rose-light: #e8c4c4;
    --blush: #fdf2f0;
    --blush-dark: #f5e0dc;
    --charcoal: #2d2d2d;
    --dark: #1e1e1e;
    --text: #5a5555;
    --text-light: #9a9090;
    --white: #ffffff;
    --gold: #c9a96e;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 36px rgba(0, 0, 0, 0.1);
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    background-color: var(--blush);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-pink {
    background-color: var(--white);
}

.text-center {
    text-align: center;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--rose);
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.6rem;
    color: var(--charcoal);
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.15;
}

.section-title span {
    color: var(--rose);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 50px;
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}

.btn-primary:hover {
    background-color: var(--rose-dark);
    border-color: var(--rose-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 160, 160, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--charcoal);
}

.navbar.scrolled .logo span {
    color: var(--rose);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--rose);
}

.navbar.scrolled .nav-toggle span {
    background-color: var(--charcoal);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.logo span {
    color: var(--rose-light);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--rose);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition);
}

/* ===== HERO ===== */
.hero, .page-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero {
    min-height: 100vh;
}

.page-header {
    min-height: 50vh;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(45, 45, 45, 0.6) 0%,
        rgba(212, 160, 160, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 20px;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--rose-light);
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 3.8rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
}

.hero-content h1 span {
    font-style: italic;
    color: var(--rose-light);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons .btn {
    margin: 0 8px 10px;
}

/* ===== INTRO / ABOUT ===== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text p {
    margin-bottom: 18px;
    font-size: 1.02rem;
    line-height: 1.8;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.feature-icon {
    color: var(--rose);
    font-size: 1rem;
}

.intro-images {
    position: relative;
    height: 480px;
}

.image-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: absolute;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-card-1 {
    width: 60%;
    height: 70%;
    top: 0;
    right: 0;
    z-index: 2;
}

.image-card-2 {
    width: 55%;
    height: 60%;
    bottom: 0;
    left: 0;
    z-index: 1;
    border: 4px solid var(--rose);
}

/* ===== SERVICES PREVIEW ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background-color: var(--blush);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-info {
    padding: 22px;
}

.service-info h3 {
    color: var(--charcoal);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.service-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-from {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--rose-dark);
}

/* ===== WHY US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.why-card:hover {
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.why-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rose-light);
    margin-bottom: 15px;
    line-height: 1;
}

.why-card h3 {
    color: var(--charcoal);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border-top: 3px solid var(--rose);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card > p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--charcoal);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 100%);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta h2 span {
    color: var(--rose-light);
    font-style: italic;
}

.cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--rose-light);
}

.category-icon {
    font-size: 1.6rem;
}

.pricing-category-title {
    font-size: 1.8rem;
    color: var(--charcoal);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background-color: var(--white);
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.price-item:hover {
    border-color: var(--rose-light);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.price-item.featured {
    border-color: var(--rose);
    background: linear-gradient(135deg, var(--white) 0%, var(--blush) 100%);
}

.price-info h3 {
    color: var(--charcoal);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.price-info p {
    font-size: 0.88rem;
    color: var(--text-light);
}

.price-amount {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rose-dark);
    white-space: nowrap;
    margin-left: 20px;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background-color: var(--white);
    border-radius: 12px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    border-color: var(--rose-light);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    width: 42px;
    flex-shrink: 0;
    text-align: center;
}

.contact-card h3 {
    color: var(--charcoal);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-card a {
    color: var(--rose-dark);
    font-size: 0.92rem;
}

.contact-card a:hover {
    color: var(--rose);
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== FORM ===== */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-wrapper .section-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    background-color: var(--blush);
    border: 1px solid var(--blush-dark);
    border-radius: 10px;
    color: var(--charcoal);
    font-size: 0.92rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--rose);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239a9090' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    font-size: 3rem;
    color: var(--rose);
    margin-bottom: 15px;
}

.form-success h3 {
    color: var(--charcoal);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-light);
}

/* ===== MAP ===== */
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--charcoal);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer .logo {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 12px;
    display: inline-block;
}

.footer .logo span {
    color: var(--rose-light);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-col ul li a:hover {
    color: var(--rose-light);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-images {
        height: 350px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: var(--charcoal);
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--rose);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 12px 28px;
        font-size: 0.82rem;
    }

    .intro-images {
        height: 280px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .price-amount {
        margin-left: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
