/* ==========================================================================
   JODII About Us Stylesheet (about.css)
   Premium aesthetics for the About Us page
   ========================================================================== */

/* Hero Banner */
.about-hero {
    background: linear-gradient(135deg, rgba(74, 8, 26, 0.85) 0%, rgba(123, 19, 49, 0.7) 50%, rgba(233, 30, 99, 0.85) 100%),
                url('../images/hero.png') center/cover no-repeat;
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    color: #FFF;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 60%);
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: #F5C542;
    margin-bottom: 15px;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.4);
}

.about-hero p {
    font-size: 18px;
    color: #FCE4EC;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

.about-breadcrumb {
    font-size: 14px;
    color: #F8BBD0;
    margin-top: 20px;
}

.about-breadcrumb a {
    color: #F5C542;
    text-decoration: none;
    transition: color 0.2s;
}

.about-breadcrumb a:hover {
    color: #FFF;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 50px 15px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero p {
        font-size: 15px;
    }

    .about-breadcrumb {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 40px 10px;
    }

    .about-hero h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .about-hero p {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
    }
}

/* Our Story Section */
.about-story {
    padding: 80px 20px;
    background-color: #FFF;
}

.story-container {
    max-width: 1100px;
    margin: 0 auto;
}

.story-grid {
    display: flex;
    align-items: center;
    gap: 70px;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background-color: #FFF0F5;
    border-radius: 20px;
    z-index: 0;
}

.story-image .img-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.story-img-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 70px;
    height: 70px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.15);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.story-img-badge i {
    color: #E91E63;
    font-size: 26px;
    background: linear-gradient(180deg, #E91E63 0%, #C2185B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-content {
    flex: 1;
    text-align: left;
}

.about-story .section-title,
.about-mission .section-title,
.about-vision .section-title,
.about-why .section-title,
.about-steps .section-title,
.about-values .section-title,
.about-stories .section-title,
.about-team .section-title,
.about-faq .section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #4A081A;
    margin-bottom: 12px;
    display: block;
    width: 100%;
}

.about-story .section-title {
    text-align: left;
}

.about-mission .section-title,
.about-vision .section-title,
.about-why .section-title,
.about-steps .section-title,
.about-values .section-title,
.about-stories .section-title,
.about-team .section-title,
.about-faq .section-title {
    text-align: center;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.title-divider .line {
    height: 2px;
    width: 50px;
    background: linear-gradient(90deg, #D4AF37, transparent);
}

.title-divider i {
    color: #E91E63;
    font-size: 16px;
}

.story-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 992px) {
    .story-grid {
        flex-direction: column;
        gap: 40px;
    }
    .story-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    .story-image img {
        height: 350px;
    }
    .story-content {
        text-align: left;
    }
    .section-title, .text-center.section-title {
        text-align: left !important;
    }
    .title-divider {
        justify-content: flex-start !important;
    }
    .center-divider .line:first-child {
        display: none !important;
    }
    .center-divider .line:last-child {
        background: linear-gradient(90deg, #D4AF37, transparent) !important;
        width: 80px;
    }
    .story-text {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .about-story {
        padding: 50px 20px;
    }
    .about-story .section-title {
        font-size: 30px;
    }
    .story-text {
        font-size: 15px;
    }
    .story-image img {
        height: 250px;
    }
    .story-image::before {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 576px) {
    .about-story, .about-mission, .about-vision, .about-why, 
    .about-steps, .about-values, .about-stories, .about-team, .about-faq {
        padding: 40px 15px;
    }
    .about-story .section-title, .about-mission .section-title, 
    .about-vision .section-title, .about-why .section-title, 
    .about-steps .section-title, .about-values .section-title, 
    .about-stories .section-title, .about-team .section-title, 
    .about-faq .section-title {
        font-size: 26px;
        margin-bottom: 5px;
        text-align: left;
    }
    .title-divider {
        justify-content: flex-start !important;
    }
    .title-divider .line {
        background: linear-gradient(90deg, #D4AF37, transparent) !important;
    }
    .story-text {
        font-size: 14px;
        line-height: 1.5;
        text-align: justify;
        margin-top: 25px;
    }
    .story-image img {
        height: 200px;
    }
    .story-img-badge {
        width: 50px;
        height: 50px;
        bottom: -10px;
        right: -10px;
    }
    .story-img-badge i {
        font-size: 18px;
    }
}

/* Our Mission Section */
.about-mission {
    padding: 80px 20px;
    background-color: #FAFAFA;
    text-align: center;
}

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

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

.center-divider {
    justify-content: center !important;
}

.center-divider .line {
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    width: 60px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px auto 0;
    max-width: 1000px;
}

.mission-card {
    background: #FFF;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.04);
    border: 1px solid rgba(233, 30, 99, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mission-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E91E63, #F48FB1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: center;
}

.mission-card:hover::after {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.12);
    border-color: rgba(233, 30, 99, 0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #FFF0F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E91E63;
    font-size: 28px;
    transition: all 0.4s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.05);
    background: #D81B60;
    color: #FFF;
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2);
}

.mission-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #4A081A;
    margin-bottom: 10px;
}

.mission-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 576px) {
    .story-img-wrapper {
        padding-bottom: 80%;
    }
    
    .story-img-badge {
        width: 60px;
        height: 60px;
    }
    
    .why-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .about-mission {
        padding: 50px 20px;
    }
}

/* Why Choose Us Section */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-item {
    background: #FFF;
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(233, 30, 99, 0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.08);
    border-color: rgba(233, 30, 99, 0.15);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: #FFF0F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E91E63;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    background: #D81B60;
    color: #FFF;
    transform: scale(1.1);
}

.why-text h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #4A081A;
    margin-bottom: 5px;
}

.why-text p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
    line-height: 1.5;
    text-align: justify;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
}

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

/* Our Values Section */
.values-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    background: #FFF;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 2px solid #FFF0F5;
    transition: all 0.4s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
    border-color: #E91E63;
}

.value-icon {
    font-size: 40px;
    color: #E91E63;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-item h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #4A081A;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .values-flex {
        gap: 20px;
    }
    .value-item {
        width: 140px;
        height: 140px;
    }
    .value-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .value-item h3 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .about-values {
        padding: 40px 5px !important;
    }
    .values-flex {
        gap: 5px;
    }
    .value-item {
        width: 90px;
        height: 90px;
    }
    .value-icon {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .value-item h3 {
        font-size: 11px;
    }
}

/* Statistics Section */
.about-stats {
    padding: 80px 20px;
    background: linear-gradient(135deg, #4A081A 0%, #7B1331 50%, #E91E63 100%);
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: #FFF;
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 48px;
    color: #F5C542;
    margin-bottom: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #FFF;
}

.stat-text {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 576px) {
    .about-stats {
        padding: 40px 15px !important;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }
    .stat-item {
        padding: 5px;
    }
    .stat-icon {
        font-size: 26px;
        margin-bottom: 8px;
    }
    .stat-number {
        font-size: 24px;
        margin-bottom: 2px;
    }
    .stat-text {
        font-size: 10px;
        letter-spacing: 0px;
    }
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.step-card {
    background: #FFF;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(233, 30, 99, 0.05);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.08);
}

.step-number {
    width: 44px;
    height: 44px;
    background: #E91E63;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #FFF;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.15);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 20px auto 20px;
    background: linear-gradient(135deg, #FFF0F5 0%, #FCE4EC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E91E63;
    font-size: 28px;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    color: #FFF;
    transform: scale(1.1);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #4A081A;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Success Stories Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: #FFF;
    padding: 25px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(233, 30, 99, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.08);
}

.quote-icon {
    font-size: 30px;
    color: rgba(233, 30, 99, 0.2);
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
    text-align: justify;
}

.couple-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #F0F0F0;
    padding-top: 15px;
}

.couple-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    font-family: var(--font-heading);
}

.couple-name {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #4A081A;
    margin-bottom: 5px;
}

.couple-stars {
    color: #F5C542;
    font-size: 12px;
}

@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Meet Our Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 60px auto 0;
    gap: 40px;
}

.team-card {
    background: #FFF;
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(233, 30, 99, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.08);
}

.team-image-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.15);
    border: 4px solid #FFF0F5;
    transition: all 0.4s ease;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.team-card:hover .team-image-wrapper {
    border-color: #E91E63;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.25);
}

.team-card:hover .team-image-wrapper img {
    transform: scale(1.1);
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #4A081A;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: #FFF;
    border: 1px solid rgba(233, 30, 99, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.05);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #FFF;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: #4A081A;
    margin-bottom: 0;
}

.faq-question i {
    color: #E91E63;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #FAFAFA;
}

.faq-answer p {
    padding: 20px 0;
    margin-bottom: 0;
    color: #666;
    font-size: 14.5px;
    line-height: 1.6;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question {
    background: #FFF0F5;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Global Mobile Alignment Overrides (Must be at the very end to win specificity) */
@media (max-width: 992px) {
    .about-story .section-title,
    .about-mission .section-title,
    .about-vision .section-title,
    .about-why .section-title,
    .about-steps .section-title,
    .about-values .section-title,
    .about-stories .section-title,
    .about-team .section-title,
    .about-faq .section-title,
    .section-title,
    .text-center.section-title {
        text-align: left !important;
    }
    
    .title-divider,
    .center-divider {
        justify-content: flex-start !important;
    }
    
    .center-divider .line:first-child {
        display: none !important;
    }
    
    .center-divider .line:last-child {
        background: linear-gradient(90deg, #D4AF37, transparent) !important;
        width: 80px !important;
    }
}

@media (max-width: 768px) {
    .mission-card {
        padding: 25px 15px !important;
    }
}

@media (max-width: 576px) {
    .about-why {
        padding: 40px 15px !important;
    }
    .why-grid {
        grid-template-columns: 1fr !important;
    }
    .why-item {
        padding: 15px !important;
        gap: 15px !important;
    }
    .why-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
    .why-text h3 {
        font-size: 16px !important;
    }
    .about-steps {
        padding: 40px 15px !important;
    }
    .steps-grid {
        grid-template-columns: 1fr !important;
    }
    .step-card {
        padding: 30px 15px !important;
    }
}

/* Slider Styles for Mobile */
@media (max-width: 768px) {
    .about-team {
        padding: 40px 15px !important;
    }
    .testimonial-grid, .team-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 20px !important;
        padding-bottom: 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .testimonial-grid::-webkit-scrollbar, .team-grid::-webkit-scrollbar {
        display: none;
    }
    .testimonial-card, .team-card {
        flex: 0 0 100% !important;
        scroll-snap-align: center;
        margin: 0 auto;
    }
    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }
    .slider-dots .dot {
        width: 10px;
        height: 10px;
        background: #ddd;
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
    }
    .slider-dots .dot.active {
        background: #E91E63;
        width: 25px;
        border-radius: 10px;
    }
}

@media (min-width: 769px) {
    .slider-dots {
        display: none;
    }
}

/* Mobile Overrides for FAQ Section & Global About */
@media (max-width: 576px) {
    .section-title {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }
    .about-faq {
        padding: 40px 15px !important;
    }
    .faq-container {
        margin: 30px auto 0 !important;
    }
    .faq-item {
        margin-bottom: 15px !important;
    }
    .faq-question {
        padding: 15px 15px !important;
    }
    .faq-question h3 {
        font-size: 14px !important;
    }
    .faq-answer {
        padding: 0 15px !important;
    }
    .faq-answer p {
        padding: 15px 0 !important;
        font-size: 13px !important;
    }
}

/* Our Matchmaking Philosophy Section Styles */
.about-philosophy {
    padding: 80px 20px;
    background-color: #FAFAFA;
}

@media (max-width: 768px) {
    .about-philosophy .section-title {
        font-size: 28px !important;
    }
}

@media (max-width: 576px) {
    .about-philosophy {
        padding: 40px 15px;
    }
    .about-philosophy .section-title {
        font-size: 22px !important;
        line-height: 1.3;
    }
    .philosophy-content p {
        font-size: 14px !important;
    }
}
