/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--rose-pink);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.site-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--rose-pink), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.desktop-nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--rose-pink);
}

.desktop-nav a.nav-contact-link,
#mobile-menu a.nav-contact-link {
    background: var(--charcoal);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.desktop-nav a.nav-contact-link:hover,
#mobile-menu a.nav-contact-link:hover {
    background: var(--rose-pink);
    color: white;
}

/* Mobile Menu Toggle */
#mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
}

#mobile-menu {
    display: none;
    padding: 1rem 2rem 2rem;
    flex-direction: column;
    gap: 1rem;
}

#mobile-menu a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0;
}

#mobile-menu .nav-contact-link {
    text-align: center;
}

@media (max-width: 768px) {
    #mobile-menu-button {
        display: block;
    }

    .desktop-nav {
        display: none !important;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--warm-white);
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1400px;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: #999;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--rose-pink);
}

.breadcrumb li:last-child {
    color: var(--charcoal);
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 1.5rem;
    }

    .breadcrumb ol {
        font-size: 0.85rem;
    }
}

/* Inline accent links (used inside section-description copy) */
.link-accent {
    color: var(--rose-pink);
    font-weight: 600;
    text-decoration: none;
}

.link-accent:hover {
    text-decoration: underline;
}

/* Stats */
.stats {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 4px solid var(--rose-pink);
}

.stat {
    text-align: center;
    padding: 1rem 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rose-pink);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    font-weight: 600;
}

@media (max-width: 968px) {
    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .stat:last-child {
        border-bottom: none;
    }
}

/* FAQ */
.faq-section {
    background: white;
    padding: 6rem 2rem;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #FFF5F7, #FFF9E6);
    border-radius: 15px;
    border-left: 4px solid var(--rose-pink);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Blog Cards */
.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rose-pink);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.blog-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    color: var(--rose-pink);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .blog-cards {
        grid-template-columns: 1fr;
    }
}

/* Coming Soon Box (category index pages) */
.coming-soon-box {
    background: linear-gradient(135deg, var(--rose-pink), var(--sunset-orange));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.coming-soon-box .cta-button {
    background: white;
    color: var(--rose-pink);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--rose-pink);
    transform: scale(1.2);
}
