:root {
    /* Color Palette (Soft, Modern, Trustworthy) */
    --color-bg: #FCFBF9;
    --color-text: #2A363B;
    --color-text-muted: #64748B;
    --color-primary: #8E9EA2;
    /* Muted Sage/Blue */
    --color-primary-dark: #738488;
    --color-accent: #E5B29B;
    /* Soft Blush */
    --color-border: #E2E8F0;
    --color-white: #FFFFFF;

    /* Service card background variants */
    --bg-sand: #F7EFE5;
    --bg-sage: #E8EDE6;
    --bg-blush: #FDE8E1;

    /* Typography */
    --font-main: 'Nunito', sans-serif;

    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--color-text);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    text-align: center;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(115, 132, 136, 0.4);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-text);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
}

.btn-outline:hover {
    background-color: var(--color-text);
    color: var(--color-white);
}

.btn-pink {
    background-color: #FE7EF2;
    color: var(--color-white);
    font-size: 24px;
    font-weight: 900;
    /* Black */
    padding-top: 30px;
    padding-bottom: 30px;
}

.btn-pink:hover {
    background-color: #f768e9;
    /* Slightly darker pink for hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(254, 126, 242, 0.5);
}

.btn-blue {
    background-color: #2AABEE;
    color: var(--color-white);
    border: none;
}

.btn-blue:hover {
    background-color: #2298D4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(42, 171, 238, 0.4);
}

.btn-outline-blue {
    background-color: rgba(20, 143, 205, 0.15);
    /* #148FCD at 15% opacity */
    color: #29A8EA;
    border: none;
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline-blue:hover {
    background-color: rgba(20, 143, 205, 0.25);
    color: #29A8EA;
}

.btn-icon {
    width: 32px;
    height: 32px;
    margin-right: -4px;
    /* Pull icon closer due to 32px size */
    flex-shrink: 0;
}

/* Glare Animation */
.btn-glare {
    position: relative;
    overflow: hidden;
}

.btn-glare::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: glare 3s infinite;
}

@keyframes glare {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn.lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background-color: rgba(252, 251, 249, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.nav-links {
    display: flex;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 16px;
    font-weight: 900;
    color: #677489;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-btn {
        padding: 8px 16px;
        font-size: 14px;
        line-height: 1;
        display: inline-flex;
    }

    .nav-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background-color: var(--bg-sand);
    color: #A37F5D;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 40px;
    line-height: 42px;
    font-weight: 900;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 30px;
    font-weight: 900;
    color: #393939;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Prevents cropping of a transparent png */
    /* Removed background/shadow/border to keep it clean */
}

/* Decorative Star Below Hero */
.decorative-star-hero {
    margin-bottom: 24px;
}

.hero-star-icon {
    width: 130px;
    height: 148px;
    opacity: 0.9;
}

/* Approaches */
.approaches {
    padding: 80px 0 40px;
    background-color: var(--color-white);
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.approaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.approach-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: none;
    /* User specifically requested no shadows */
    border: none;
    transition: transform 0.3s ease;
    text-align: center;
    /* Center alignment */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bg-light-gray {
    background-color: #F4F6F8;
    /* Light gray box */
}

.approach-card h3 {
    font-size: 1.125rem;
    /* Smaller H3 */
    margin-bottom: 12px;
}

.approach-card p {
    font-size: 0.95rem;
    /* Smaller paragraph */
    margin-bottom: 0;
    line-height: 1.35;
    /* Tighter line height */
    color: var(--color-text-muted);
}

.approach-card:hover {
    transform: translateY(-4px);
}

.approach-icon {
    width: 230px;
    height: 230px;
    display: block;
    margin: 0 auto 24px;
    object-fit: contain;
}

/* Services */
.services {
    padding: 100px 0 160px;
    background-color: var(--color-white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.section-header p {
    margin-top: 16px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 32px;
    /* Bigger rounding */
    border: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 120px;
    transition: transform 0.3s ease;
}

/* Creating a stacking overlap effect */
.service-card:nth-child(1) {
    top: 120px;
    z-index: 1;
    background-color: var(--color-white);
}

.service-card:nth-child(2) {
    top: 140px;
    z-index: 2;
    background-color: var(--color-white);
}

.service-card:nth-child(3) {
    top: 160px;
    z-index: 3;
    background-color: var(--color-white);
}

.service-card.reverse .service-image {
    order: 2;
}

.service-card.reverse .service-info {
    order: 1;
}

.service-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.card-img-1 {
    background-color: #ECF9FF;
}

.card-img-2 {
    background-color: #EEFFED;
}

.card-img-3 {
    background-color: #FFEDF3;
}

.service-svg {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.bg-sand {
    background-color: var(--bg-sand);
}

.bg-sage {
    background-color: var(--bg-sage);
}

.bg-blush {
    background-color: var(--bg-blush);
}

.service-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    border: none;
}

.badge-sand {
    background-color: #ECF9FF;
    color: #4BAADD;
}

.badge-sage {
    background-color: #EEFFED;
    color: #8CAC1D;
}

.badge-blush {
    background-color: #FFEDF3;
    color: #D04B78;
}

.service-title {
    margin-bottom: 16px;
}

.service-desc {
    margin-bottom: 32px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    width: 100%;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-text);
}

.service-features .check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 4px;
    /* Align nicely with text */
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
}

/* Gift Certificate */
.gift-certificate {
    padding: 0 0 100px;
    background-color: var(--color-white);
}

.gift-card {
    padding: 80px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.gift-bg-pink {
    background-color: #FFEAF9;
}

.gift-card h2 {
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gift-card p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-muted);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.about-title-container {
    position: sticky;
    top: 120px;
    /* Offset to not overlap with fixed navbar */
}

.about-text-container {
    display: flex;
    flex-direction: column;
}

.about-lead {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 32px;
}

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

.mb-4 {
    margin-bottom: 24px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
}



.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-primary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding: 0 32px;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Active State */
.faq-item.active {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-color: transparent;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-text);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    /* arbitrary large value */
    padding-bottom: 24px;
}

/* Reviews Section */
.reviews-section {
    position: relative;
    background-color: var(--color-white);
    padding-bottom: 80px;
}

.reviews-cards-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.review-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: 24px;
    border-bottom-left-radius: 8px;
    /* Consistent chat bubble tail */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    max-width: 100%;
    border: none;
}



.review-text {
    flex: 1;
}

/* Capitalize the first letter of names */
.review-text strong::first-letter {
    text-transform: uppercase;
}

.review-text strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

/* Capitalize the first letter of the review proper */
.review-text p::first-letter {
    text-transform: uppercase;
}

.review-text p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: #5BA1E0;
}

.cta-section p {
    margin: 24px auto 40px;
    max-width: 500px;
    color: var(--color-white);
}

.cta-section h2 {
    color: var(--color-white);
}

/* Custom CTA Button */
.btn-cta-blue {
    background-color: var(--color-white);
    color: #5BA1E0;
}

.btn-cta-blue:hover {
    background-color: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .hero-content {
        display: contents;
    }

    .decorative-star-hero {
        order: 1;
    }

    .hero-title {
        order: 2;
    }

    .hero-subtitle {
        order: 3;
    }

    .hero-description {
        order: 4;
    }

    .hero-title,
    .hero-subtitle,
    .hero-description,
    .hero-star-icon {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .decorative-star-hero {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        order: 6;
        width: 100%;
    }

    .hero-image-wrapper {
        justify-content: center;
        margin-top: 0;
        order: 5;
    }

    .service-card {
        grid-template-columns: 1fr !important;
        gap: 40px;
        padding: 24px;
        position: relative;
        top: auto !important;
    }

    .service-card.reverse .service-info {
        order: -1;
    }

    .gift-card {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .about-title-container {
        position: relative;
        top: 0;
    }

    .about-title-container .section-title {
        text-align: center;
    }

    .transparent-photo {
        max-width: 300px;
    }

    .review-card {
        max-width: 100%;
        padding: 24px;
        flex-direction: column;
    }

    .review-card.right {
        flex-direction: column;
    }

    .review-card.right .review-text {
        text-align: left;
    }
}