/* ===================================
   LANDING PAGES STYLES - checkmywed.com
   =================================== */

/* ===================================
   ASTROLOGY HUB & PREMIUM THEME
   (Imported from free-kundali-report)
   =================================== */
:root {
    --hub-gold: #D4AF37;
    --hub-purple: #6A1B9A;
    --hub-bg-light: #fdfbf7;
}

/* Page Hero */
.page-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}



.partner-hero {
    background-image: url("/assets/Images/Cropped-images/Partner\ Verification.png");
}

.astrology-hero {
    background-image: url("/assets/Images/Cropped-images/Astrology.png");
}

.marriage-hero {
    background-image: url("/assets/Images/Cropped-images/Marriage\ Counselling.png");
}

/* Dark overlay for readability */
.page-hero::before,
.astrology-hub-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Text styling */
.page-title {
    font-size: 3.2rem;
    margin-bottom: .75rem;
    position: relative;
    z-index: 2;
    color: #ffd700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, .7);
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive hero */
@media (max-width:1024px) {
    .page-hero {
        padding: 120px 0 60px
    }

    .page-title {
        font-size: 2.6rem
    }

    .page-subtitle {
        font-size: 1.05rem
    }
}

@media (max-width:768px) {
    .page-hero {
        padding: 100px 0 54px
    }

    .page-title {
        font-size: 2.2rem
    }

    .page-subtitle {
        font-size: 1rem
    }
}

@media (max-width:480px) {
    .page-hero {
        padding: 80px 0 40px
    }

    .page-title {
        font-size: 1.8rem
    }

    .page-subtitle {
        font-size: .95rem
    }
}

/* ===================================
   HUB HERO (Premium Override)
   =================================== */
.astrology-hub-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/Images/premium/astrology_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 200px 0 120px;
    color: white;
    text-align: center;
    position: relative;
}

/* Re-use page-title styles but override specific nuances if needed */
.astrology-hub-hero h1 {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Partner Verification Hero Specifics */
.partner-hub-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/Images/Cropped-images/Partner\ Verification.png');
}

.counselling-hub-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/Images/Cropped-images/Marriage\ Counselling.png');
}

.compatibility-hub-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/Images/Cropped-images/Astrology.png');
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-btn-group {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-chip i {
    color: var(--hub-gold);
}

/* ===================================
   BUTTONS
   =================================== */
.btn-gold {
    background: linear-gradient(135deg, #ff7a8e, #f8bf45);
    color: white;
    border: none;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 122, 142, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 142, 0.5);
    background: linear-gradient(135deg, #ff7a8e, #f8bf45);
}

.btn-purple {
    background: linear-gradient(135deg, #ff7a8e, #f8bf45);
    color: white;
    border: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 122, 142, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    width: 100%;
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 142, 0.5);
    background: linear-gradient(135deg, #ff7a8e, #f8bf45);
}

/* ===================================
   LAYOUT & SECTIONS
   =================================== */
.hub-split-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    padding-bottom: 4rem;
}

@media (min-width: 992px) {
    .hub-split-section {
        grid-template-columns: 1.2fr 1fr;
        /* Form slightly wider */
        align-items: start;
    }
}

.hub-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

/* Right Column Info */
.hub-info-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.benefit-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #555;
}

.benefit-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--hub-purple);
}

/* Trust Grid (Under Hero) */
.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
    background: white;
    padding: 2rem !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(212, 175, 55, 0.1) !important;
    margin-top: -3rem !important;
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
}

.trust-item {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--hub-gold), #fdb931);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}


/* ===================================
   FORMS (Premium Style)
   =================================== */
.hub-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.hub-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--hub-gold), var(--hub-purple));
}

.input-pill {
    border-radius: 50px;
    padding: 1rem 1.5rem !important;
    border: 2px solid #e0e0e0;
    background: #fff;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    font-family: inherit;
}

.input-pill:focus {
    border-color: var(--hub-purple);
    box-shadow: 0 4px 12px rgba(106, 27, 154, 0.15);
    background: #fff;
}

.input-pill::placeholder {
    color: #aaa;
    font-weight: 400;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    font-weight: 600;
    color: #444;
    margin-bottom: 0.5rem;
    display: block;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ensure select matches input-pill */
select.input-pill {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media(max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* ===================================
   FAQ & TESTIMONIALS
   =================================== */
.faq-section {
    padding: 4rem 1rem;
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--hub-purple);
}

.faq-item p {
    color: #666;
    margin: 0;
}

.testimonial-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-style: italic;
    border: 1px solid #eee;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.testimonial-avatar {
    min-width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #555;
    flex-shrink: 0;
}

.verified-badge {
    color: green;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===================================
   COMPATIBILITY RESULT
   =================================== */
.score-circle-premium {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: conic-gradient(var(--hub-gold) 0% 70%, #eee 70% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.score-inner {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.score-total {
    font-size: 0.9rem;
    color: #888;
}


/* ===================================
   PREMIUM SERVICES PAGE STYLES
   =================================== */

.services-overview {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fdfbf7, #fff);
    /* Subtle fade */
}

/* Services Hero Parallax */
.services-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/Images/Cropped-images/Services.png");
    /* background-attachment: fixed;  <-- Removed to prevent zooming/cropping issues */
    background-position: center center;
    /* Centered as requested */
    /* Align to top to show phone notches */
    background-size: cover;
    padding: 220px 0 100px;
    /* Increased height to show more image */
}

/* Service Detail Cards - Alternating Layout */
.service-detail {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    position: relative;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-media {
    flex: 1;
    position: relative;
}

.service-media img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Soft Premium Shadow */
    transition: transform 0.4s ease;
    border: 4px solid #fff;
}

.service-detail:hover .service-media img {
    transform: scale(1.02);
}

.service-media::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--hub-gold);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.service-detail:hover .service-media::before {
    top: -20px;
    left: -20px;
    opacity: 1;
}

/* Text Content */
.service-detail-content {
    flex: 1;
}

.service-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.service-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--hub-gold);
    bottom: -10px;
    left: 0;
}

.service-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Feature List */
.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #444;
}

.feature-item i {
    color: var(--hub-gold);
    margin-top: 4px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Why Choose Us Section */
.why-choose {
    background-color: #FAFAFA;
    background-image: radial-gradient(#e5e5f7 1px, transparent 1px);
    background-size: 20px 20px;
    /* Subtle dot pattern */
    padding: 100px 0;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: #fffcf5;
    /* Light Gold Tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--hub-gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.why-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* CTA Box */
.cta-section {
    padding: 80px 0;
    background: white;
}

.cta-box {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(51, 51, 51, 0.6) 100%), url("/assets/Images/Cropped-images/Contact.png") center center / cover no-repeat;
    border-radius: 30px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    transform: translate(30%, -30%);
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-box p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .service-detail {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .service-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .service-features {
        text-align: left;
        max-width: 500px;
        margin: 0 auto 2.5rem;
    }

    .service-media::before {
        display: none;
        /* Simplify on mobile */
    }
}