/* ===== Homepage-Specific Styles ===== */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Hero video background */
.hero-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 200px;
    z-index: 0;
}

/* Fallback for browsers without video support */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-color: #B8C5BD;
    background-image: url('../images/hero-poster.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 0 200px;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, var(--warm-white) 0%, transparent 30%);
    z-index: 1;
}

.hero-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
    padding: 0 2.5rem;
}

.hero-text {
    padding: 3rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(127, 166, 147, 0.15);
    color: var(--eucalyptus);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--charcoal-green);
}

.hero-highlight {
    color: var(--eucalyptus);
    position: relative;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Trust Section */
.trust-section {
    background-color: var(--sandstone);
    padding: 4rem 2.5rem;
    text-align: center;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.trust-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--eucalyptus), var(--charcoal-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(127, 166, 147, 0.3);
    color: white;
}

.trust-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal-green);
}

.trust-subtext {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Services Section */
.services-section {
    padding: 6rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background-color: white;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 2px solid var(--eucalyptus);
    box-shadow: 0 8px 20px rgba(127, 166, 147, 0.15);
}

.service-card.featured:hover {
    transform: translateY(-8px);
}

.service-icon {
    margin-bottom: 1rem;
    color: var(--eucalyptus);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-badge {
    display: inline-block;
    background-color: var(--eucalyptus);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.service-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--charcoal-green);
    font-weight: 600;
    margin: 1rem 0;
}

.service-price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-family: 'Lato', sans-serif;
}

.service-description {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.9rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: "\2713  ";
    color: var(--eucalyptus);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Service section layout */
.base-package-wrapper {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.addon-header {
    margin-top: 3rem;
}

.addon-header h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.addon-price {
    margin-top: 1rem;
    color: var(--eucalyptus);
    font-weight: 600;
}

.services-cta-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary-lg {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.services-cta-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-gray);
    margin-top: 0.75rem;
}

/* Why Section */
.why-section {
    background: linear-gradient(135deg, var(--charcoal-green) 0%, #2C3F34 100%);
    padding: 6rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127, 166, 147, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-label {
    display: inline-block;
    color: var(--eucalyptus);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-intro .section-title {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-intro .section-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    line-height: 1.8;
}

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

.why-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.why-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.why-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--eucalyptus), var(--bronze));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.why-card h3 {
    color: var(--eucalyptus);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 2.5rem;
}

.contact-wrapper {
    background: linear-gradient(135deg, var(--sandstone), #DED5C8);
    border-radius: 50px;
    padding: 5rem;
    position: relative;
    overflow: hidden;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(127, 166, 147, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-divider {
    text-align: center;
    margin: 2rem 0;
    color: var(--text-gray);
    font-weight: 600;
}

.contact-direct {
    text-align: center;
    font-size: 1.1rem;
}

.contact-direct a {
    color: var(--charcoal-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
}

.contact-direct a:hover {
    color: var(--eucalyptus);
}

/* FAQ Section */
.faq-section {
    background-color: var(--sandstone);
    padding: 6rem 2.5rem;
}

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

.faq-intro {
    text-align: center;
    margin-bottom: 3.5rem;
}

.faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--charcoal-green);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-description {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background-color: white;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item[open] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
    list-style: none;
    padding: 1.5rem 1.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%237FA693' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.25rem 1.75rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    border-top: 1px solid var(--light-gray);
}

/* ===== Homepage Responsive ===== */
@media (max-width: 1024px) {
    /* Full-width video on mobile with overlay */
    .hero-video {
        width: 100%;
        height: 100%;
        border-radius: 0;
        opacity: 1;
    }

    .hero::before {
        width: 100%;
        height: 100%;
        border-radius: 0;
        opacity: 1;
    }

    .hero::after {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 3rem 2.5rem;
    }

    .hero-text {
        text-align: center;
        background: rgba(250, 250, 248, 0.5);
        backdrop-filter: blur(12px) saturate(180%);
        -webkit-backdrop-filter: blur(12px) saturate(180%);
        padding: 3rem 2rem;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    /* Make text fully opaque and bolder on frosted glass */
    .hero-text h1 {
        opacity: 1;
        color: var(--charcoal-green);
        font-weight: 700;
    }

    .hero-text p {
        opacity: 1;
        color: var(--charcoal-green);
        font-weight: 600;
    }

    .hero-text .hero-badge {
        opacity: 1;
        color: var(--charcoal-green);
        font-weight: 700;
    }

    .hero-text .hero-highlight {
        color: var(--eucalyptus);
    }

    .service-tiers {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        transform: scale(1);
    }

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

@media (max-width: 768px) {
    .services-section {
        padding: 3.5rem 1.25rem;
    }

    .hero {
        min-height: calc(100vh - 80px);
        min-height: calc(100dvh - 80px);
    }

    .hero-content {
        padding: 1.5rem 1.25rem;
    }

    .hero-text {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

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

    .hero p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .trust-section {
        padding: 2.5rem 1.25rem;
    }

    .trust-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .trust-badge {
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
    }

    .trust-icon-circle {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .trust-icon-circle svg {
        width: 26px;
        height: 26px;
    }

    .trust-text {
        font-size: 1.1rem;
        text-align: left;
    }

    .trust-subtext {
        font-size: 0.8rem;
        text-align: left;
    }

    .service-tiers {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .addon-header h3 {
        font-size: 1.6rem;
    }

    .btn-primary-lg {
        font-size: 0.95rem;
        padding: 0.9rem 1.75rem;
    }

    .services-cta-subtitle {
        font-size: 0.75rem;
    }

    .why-section {
        padding: 3.5rem 1.25rem;
    }

    .why-intro {
        margin-bottom: 3rem;
    }

    .why-intro .section-title {
        font-size: 2.2rem;
    }

    .why-intro .section-description {
        font-size: 1.05rem;
    }

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

    .why-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .why-card h3 {
        font-size: 1.35rem;
    }

    .faq-section {
        padding: 3.5rem 1.25rem;
    }

    .faq-title {
        font-size: 2.2rem;
    }

    .faq-question {
        font-size: 1.15rem;
        padding: 1.25rem;
    }

    .faq-answer {
        padding: 1rem 1.25rem 1.25rem;
    }

    .contact-section {
        padding: 3.5rem 1.25rem;
    }

    .contact-wrapper {
        padding: 2.5rem 1.5rem;
        border-radius: 18px;
    }

    .contact-header h2 {
        font-size: 2.2rem;
    }

    .contact-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
    }

    .hero-text {
        padding: 1.75rem 1.25rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .services-section {
        padding: 3rem 1rem;
    }

    .why-section {
        padding: 3rem 1rem;
    }

    .trust-section {
        padding: 2rem 1rem;
    }

    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-title {
        font-size: 1.9rem;
    }

    .faq-question {
        font-size: 1.05rem;
    }

    .contact-wrapper {
        padding: 2rem 1.25rem;
        border-radius: 14px;
    }

    .contact-header h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .why-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .why-intro .section-title {
        font-size: 1.9rem;
    }

    .btn-primary-lg {
        font-size: 0.9rem;
        padding: 0.85rem 1.5rem;
    }
}
