/* About Verified Rishta Sections - Website Theme Colors */

:root {
    --gold-primary: #dd9f16;
    --gold-light: #ffd54f;
    --gold-dark: #c18913;
    --gray-dark: #292928;
    --black: #000;
    --white: #ffffff;
    --gray-light: #f8f9fa;
}

/* Common Section Styles */
.about-section,
.offers-section,
.matchmaker-section,
.why-choose-section {
    padding: 80px 0;
    position: relative;
}

.about-section {
    background: var(--white);
}

.offers-section {
    background: var(--gray-light);
}

.matchmaker-section {
    background: var(--white);
    padding: 0;
}

.why-choose-section {
    background: var(--gray-light);
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-border {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), var(--gold-light), var(--gold-primary), transparent);
    margin: 15px auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gold-primary);
    font-weight: 500;
    margin-top: 15px;
}

/* About Section - Black Background with Gold Theme */
.about-section {
    background: #000000 !important;
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(221, 159, 22, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-section .section-title {
    color: #dd9f16 !important;
    text-shadow: 0 0 20px rgba(221, 159, 22, 0.3);
}

.about-section .section-subtitle {
    color: #ffd54f !important;
}

.about-main-row {
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

/* Real Image Styling */
.about-real-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #dd9f16;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.about-real-image:hover {
    border-color: #ffd54f;
    box-shadow: 0 0 40px rgba(221, 159, 22, 0.5), 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.about-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #292928 0%, #1a1a1a 100%);
    border: 3px solid #dd9f16;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(221, 159, 22, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-image-placeholder:hover {
    border-color: #ffd54f;
    box-shadow: 0 0 40px rgba(221, 159, 22, 0.5), 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.about-image-placeholder i {
    font-size: 6rem;
    color: #dd9f16;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(221, 159, 22, 0.6));
}

.about-image-placeholder p {
    color: #ffd54f;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.about-content-wrapper {
    padding: 20px 30px;
}

.about-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
    padding-left: 25px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #dd9f16 0%, #ffd54f 50%, #dd9f16 100%);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(221, 159, 22, 0.6);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #d4d4d4;
    margin-bottom: 25px;
    text-align: justify;
}

.about-text:first-of-type {
    color: #e8e8e8;
    font-weight: 500;
}

/* Highlight key phrases */
.about-text strong,
.about-text b {
    color: #ffd54f;
    font-weight: 600;
}

/* Offers Section - Beautiful Website Theme Colors */
.offers-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #292928 100%) !important;
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(221, 159, 22, 0.05) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(255, 213, 79, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.offers-section .section-header {
    position: relative;
    z-index: 2;
}

.offers-section .section-title {
    color: #ffd54f !important;
    text-shadow: 0 0 30px rgba(255, 213, 79, 0.3);
}

.offers-section .section-subtitle {
    color: #d4d4d4 !important;
}

.offers-description-row {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.offers-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #e0e0e0;
    padding: 0 30px;
    text-align: center;
}

.offers-row {
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.offer-card {
    background: linear-gradient(145deg, #2a2a29 0%, #1f1f1f 100%);
    border-radius: 20px;
    padding: 45px 35px;
    margin-bottom: 30px;
    border: 2px solid #3a3a39;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(221, 159, 22, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    border-color: #dd9f16;
    box-shadow: 0 0 40px rgba(221, 159, 22, 0.3), 0 15px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-8px);
}

.offer-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(90deg, rgba(214, 156, 22, 1) 20%, rgba(227, 185, 59, 1) 40%, rgba(254, 244, 136, 1) 70%, rgba(255, 213, 79, 1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 30px rgba(221, 159, 22, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.offer-card:hover .offer-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 40px rgba(221, 159, 22, 0.6);
}

.offer-icon i {
    font-size: 2.8rem;
    color: #000000;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd54f;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.offer-features li {
    font-size: 1.05rem;
    color: #d4d4d4;
    margin-bottom: 18px;
    padding-left: 40px;
    position: relative;
    line-height: 1.6;
}

.offer-features li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 1.5rem;
    color: #dd9f16;
    filter: drop-shadow(0 0 8px rgba(221, 159, 22, 0.5));
}

/* Matchmaker Section - Premium Website Theme */
.matchmaker-section {
    background: #ffffff !important;
    padding: 0 !important;
    position: relative;
}

.matchmaker-section .row {
    margin: 0;
}

.matchmaker-image-wrapper {
    height: 100%;
    min-height: 550px;
    position: relative;
    overflow: hidden;
}

/* Real Matchmaker Image */
.matchmaker-real-image {
    width: 100%;
    height: 100%;
    min-height: 550px;
    object-fit: cover;
    display: block;
}

.matchmaker-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #292928 50%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.matchmaker-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(221, 159, 22, 0.1) 0%, transparent 70%);
}

.matchmaker-image-placeholder i {
    font-size: 7rem;
    color: #dd9f16;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(221, 159, 22, 0.8));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.matchmaker-image-placeholder p {
    color: #ffd54f;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
}

.matchmaker-content-wrapper {
    padding: 70px;
    background: linear-gradient(to right, #ffffff 0%, #fafafa 100%);
}

.matchmaker-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #292928;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heading-border {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 35px 0;
}

.heading-border .line-left,
.heading-border .line-right {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, transparent, #dd9f16);
}

.heading-border .line-right {
    background: linear-gradient(90deg, #dd9f16, transparent);
}

.heading-border i {
    font-size: 2rem;
    color: #dd9f16;
    margin: 0 20px;
    filter: drop-shadow(0 0 10px rgba(221, 159, 22, 0.3));
}

.matchmaker-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 25px;
    text-align: justify;
}

.matchmaker-text:first-of-type {
    font-weight: 500;
    color: #333333;
}

.matchmaker-cta {
    margin-top: 45px;
}

.btn-matchmaker {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 45px;
    background: linear-gradient(90deg, rgba(214, 156, 22, 1) 20%, rgba(227, 185, 59, 1) 40%, rgba(254, 244, 136, 1) 70%, rgba(255, 213, 79, 1) 100%);
    color: #000000 !important;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: 3px solid #dd9f16;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(221, 159, 22, 0.4);
    letter-spacing: 1px;
}

.btn-matchmaker span {
    color: #000000 !important;
}

.btn-matchmaker:hover {
    background: linear-gradient(90deg, rgba(214, 156, 22, 1) 20%, rgba(227, 185, 59, 1) 40%, rgba(254, 244, 136, 1) 70%, rgba(255, 213, 79, 1) 100%);
    color: #000000 !important;
    border-color: #ffd54f;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(221, 159, 22, 0.6);
}

.btn-matchmaker:hover span {
    color: #000000 !important;
}

.btn-matchmaker i {
    font-size: 1.5rem;
    color: #000000 !important;
    transition: transform 0.4s ease;
}

.btn-matchmaker:hover i {
    transform: translateX(5px);
    color: #000000 !important;
}

/* Contact Us Section - Black, Grey, Gold Theme */
.contact-section {
    background: #000000 !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at top left, rgba(221, 159, 22, 0.05) 0%, transparent 40%),
        radial-gradient(circle at bottom right, rgba(255, 213, 79, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.contact-section .section-header {
    position: relative;
    z-index: 2;
}

.contact-section .section-title {
    color: #dd9f16 !important;
    text-shadow: 0 0 25px rgba(221, 159, 22, 0.4);
}

.contact-section .section-subtitle {
    color: #d4d4d4 !important;
}

.contact-main-row {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Contact Info Column */
.contact-info-wrapper {
    background: linear-gradient(145deg, #1a1a1a 0%, #292928 100%);
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid #3a3a39;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(221, 159, 22, 0.05) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.contact-info-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd54f;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.contact-info-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d4d4d4;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.contact-info-items {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(41, 41, 40, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(221, 159, 22, 0.2);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(41, 41, 40, 0.8);
    border-color: #dd9f16;
    transform: translateX(5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, rgba(214, 156, 22, 1) 20%, rgba(227, 185, 59, 1) 40%, rgba(254, 244, 136, 1) 70%, rgba(255, 213, 79, 1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(221, 159, 22, 0.4);
}

.contact-icon i {
    font-size: 1.8rem;
    color: #000000;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd54f;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 1rem;
    color: #d4d4d4;
    margin: 0;
}

.contact-social {
    position: relative;
    z-index: 2;
}

.contact-social h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd54f;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(41, 41, 40, 0.8);
    border: 2px solid #dd9f16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dd9f16;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(90deg, rgba(214, 156, 22, 1) 20%, rgba(227, 185, 59, 1) 40%, rgba(254, 244, 136, 1) 70%, rgba(255, 213, 79, 1) 100%);
    color: #000000;
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 5px 20px rgba(221, 159, 22, 0.5);
}

/* Contact Form Column */
.contact-form-wrapper {
    background: linear-gradient(145deg, #292928 0%, #1f1f1f 100%);
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid #3a3a39;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.contact-form-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd54f;
    margin-bottom: 35px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    font-size: 1rem;
    font-weight: 600;
    color: #d4d4d4;
    margin-bottom: 10px;
    display: block;
}

.contact-form .required {
    color: #dd9f16;
}

.contact-form .form-control {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #3a3a39;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(0, 0, 0, 0.7);
    border-color: #dd9f16;
    outline: none;
    box-shadow: 0 0 20px rgba(221, 159, 22, 0.2);
}

.contact-form .form-control::placeholder {
    color: #666666;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-submit-contact {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(90deg, rgba(214, 156, 22, 1) 20%, rgba(227, 185, 59, 1) 40%, rgba(254, 244, 136, 1) 70%, rgba(255, 213, 79, 1) 100%);
    color: #000000;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 3px solid #dd9f16;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(221, 159, 22, 0.4);
    letter-spacing: 1px;
    width: 100%;
    justify-content: center;
}

.btn-submit-contact:hover {
    background: #292928;
    color: #ffd54f;
    border-color: #ffd54f;
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(221, 159, 22, 0.6);
}

.btn-submit-contact i {
    font-size: 1.4rem;
    transition: transform 0.4s ease;
}

.btn-submit-contact:hover i {
    transform: translateX(10px);
}

/* Error Messages */
.field-error {
    display: block;
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: 500;
}

/* Select2 Custom Styling for Contact Form */
.select2-contact {
    width: 100% !important;
}

.contact-form .select2-container {
    width: 100% !important;
}

.contact-form .select2-container--default .select2-selection--multiple {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #3a3a39;
    border-radius: 10px;
    min-height: 50px;
    padding: 8px 12px;
}

.contact-form .select2-container--default.select2-container--focus .select2-selection--multiple {
    background: rgba(0, 0, 0, 0.7);
    border-color: #dd9f16;
    box-shadow: 0 0 20px rgba(221, 159, 22, 0.2);
}

.contact-form .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: linear-gradient(90deg, rgba(214, 156, 22, 1) 20%, rgba(227, 185, 59, 1) 40%, rgba(254, 244, 136, 1) 70%, rgba(255, 213, 79, 1) 100%);
    color: #000000;
    border: none;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    margin: 3px;
}

.contact-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #000000;
    font-weight: bold;
    margin-right: 5px;
}

.contact-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ff0000;
}

.contact-form .select2-container--default .select2-search--inline .select2-search__field {
    color: #ffffff;
    padding: 5px;
}

.contact-form .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #666666;
}

/* Select2 Dropdown */
.select2-container--default .select2-results__option {
    background: #292928;
    color: #d4d4d4;
    padding: 10px 15px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #dd9f16;
    color: #000000;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: #3a3a39;
    color: #ffd54f;
}

.select2-dropdown {
    background: #1f1f1f;
    border: 2px solid #dd9f16;
    border-radius: 10px;
}

.select2-search--dropdown .select2-search__field {
    background: #292928;
    border: 1px solid #3a3a39;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #dd9f16;
    outline: none;
}

/* reCAPTCHA Styling */
.g-recaptcha {
    display: inline-block;
    margin: 10px 0;
}

/* Form Success/Error Messages */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.alert-success {
    background: rgba(40, 167, 69, 0.2);
    border: 2px solid #28a745;
    color: #28a745;
}

.alert-danger {
    background: rgba(255, 107, 107, 0.2);
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
}

/* Why Choose Section */
.why-choose-row {
    margin-top: 40px;
    align-items: center;
}

.why-choose-content {
    padding: 40px;
}

.why-choose-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 25px;
}

.why-choose-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.why-choose-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-why-choose {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.btn-login {
    background: linear-gradient(90deg, rgba(214, 156, 22, 1) 20%, rgba(227, 185, 59, 1) 40%, rgba(254, 244, 136, 1) 70%, rgba(255, 213, 79, 1) 100%);
    color: var(--black);
    border-color: var(--gold-primary);
}

.btn-login:hover {
    background: var(--gray-dark);
    color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(221, 159, 22, 0.3);
}

.btn-register {
    background: var(--gray-dark);
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-register:hover {
    background: var(--gold-primary);
    color: var(--black);
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(221, 159, 22, 0.3);
}

.why-choose-image-wrapper {
    padding: 20px;
}

.why-choose-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--gray-light) 0%, #e8e8e8 100%);
    border: 3px solid var(--gold-primary);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-choose-image-placeholder:hover {
    border-color: var(--gold-light);
    box-shadow: 0 10px 30px rgba(221, 159, 22, 0.2);
}

.why-choose-image-placeholder i {
    font-size: 5rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.why-choose-image-placeholder p {
    color: var(--gray-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design - Contact Section */
@media (max-width: 1200px) {
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 40px 30px;
    }

    .contact-info-heading,
    .contact-form-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-info-wrapper {
        margin-bottom: 30px;
    }

    .contact-info-heading,
    .contact-form-heading {
        font-size: 1.7rem;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
    }

    .contact-icon i {
        font-size: 1.6rem;
    }

    .btn-submit-contact {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-main-row {
        margin-top: 40px;
    }

    .contact-info-wrapper {
        padding: 35px 25px;
    }

    .contact-form-wrapper {
        padding: 45px 25px 35px;
    }

    .contact-info-heading,
    .contact-form-heading {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .contact-info-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }

    .contact-form .form-control {
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-section .section-title {
        font-size: 1.5rem;
    }

    .contact-section .section-subtitle {
        font-size: 0.95rem;
    }

    .contact-main-row {
        margin-top: 30px;
    }

    .contact-info-wrapper {
        padding: 30px 20px;
    }

    .contact-form-wrapper {
        padding: 45px 20px 30px;
        margin-top: 30px;
    }

    .contact-info-heading,
    .contact-form-heading {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .contact-info-text {
        font-size: 1rem;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px;
        margin-left: auto;
        margin-right: auto;
        max-width: 350px;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .btn-submit-contact {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Responsive Design - About Section Specific */

/* Tablet - Large (992px and below) */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 0 !important;
    }

    .about-section .section-title {
        font-size: 2rem;
    }

    .about-image-placeholder,
    .about-real-image {
        height: 400px;
    }

    .matchmaker-real-image {
        min-height: 450px;
    }

    .about-heading {
        font-size: 1.9rem;
    }

    .about-text {
        font-size: 1.05rem;
    }

    .about-content-wrapper {
        padding: 20px;
    }
}

/* Tablet - Medium (768px and below) */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0 !important;
    }

    .about-section .section-title {
        font-size: 1.8rem;
    }

    .about-section .section-subtitle {
        font-size: 1rem;
    }

    .about-section .section-title-border {
        width: 80px;
        height: 3px;
    }

    .about-main-row {
        margin-top: 30px;
    }

    .about-image-wrapper {
        padding: 15px;
        margin-bottom: 30px;
    }

    .about-image-placeholder,
    .about-real-image {
        height: 350px;
        border-width: 2px;
    }

    .matchmaker-real-image {
        min-height: 400px;
    }

    .about-image-placeholder i {
        font-size: 5rem;
    }

    .about-image-placeholder p {
        font-size: 1rem;
    }

    .about-content-wrapper {
        padding: 15px 20px;
    }

    .about-heading {
        font-size: 1.7rem;
        padding-left: 20px;
        margin-bottom: 25px;
    }

    .about-heading::before {
        width: 5px;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 20px;
        text-align: left;
    }
}

/* Mobile - Large (576px and below) */
@media (max-width: 576px) {
    .about-section {
        padding: 40px 0 !important;
    }

    .about-section .section-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }

    .about-section .section-subtitle {
        font-size: 0.95rem;
    }

    .about-section .section-title-border {
        width: 60px;
        height: 2px;
    }

    .about-section .section-header {
        margin-bottom: 40px;
    }

    .about-main-row {
        margin-top: 20px;
    }

    .about-image-wrapper {
        padding: 10px;
        margin-bottom: 25px;
    }

    .about-image-placeholder,
    .about-real-image {
        height: 280px;
        border-radius: 15px;
    }

    .matchmaker-real-image {
        min-height: 350px;
    }

    .about-image-placeholder i {
        font-size: 4rem;
        margin-bottom: 15px;
    }

    .about-image-placeholder p {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .about-content-wrapper {
        padding: 10px 15px;
    }

    .about-heading {
        font-size: 1.4rem;
        padding-left: 15px;
        margin-bottom: 20px;
    }

    .about-heading::before {
        width: 4px;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }
}

/* Mobile - Extra Small (400px and below) */
@media (max-width: 400px) {
    .about-section {
        padding: 35px 0 !important;
    }

    .about-section .section-title {
        font-size: 1.3rem;
    }

    .about-image-placeholder,
    .about-real-image {
        height: 250px;
    }

    .matchmaker-real-image {
        min-height: 300px;
    }

    .about-image-placeholder i {
        font-size: 3.5rem;
    }

    .about-heading {
        font-size: 1.2rem;
    }

    .about-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* General Responsive for Other Sections */
@media (max-width: 992px) {
    .offers-section,
    .why-choose-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .matchmaker-content-wrapper {
        padding: 40px;
    }

    .why-choose-heading {
        font-size: 1.7rem;
    }

    .matchmaker-heading {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .offers-section,
    .why-choose-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .why-choose-image-placeholder {
        height: 300px;
    }

    .why-choose-content {
        padding: 20px;
    }

    .why-choose-heading {
        font-size: 1.5rem;
    }

    .matchmaker-content-wrapper {
        padding: 30px 20px;
        text-align: center;
    }

    .matchmaker-heading {
        font-size: 1.7rem;
    }

    .btn-matchmaker {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        max-width: 280px;
        font-size: 0.95rem;
        padding: 15px 30px;
        white-space: nowrap;
        gap: 12px;
    }

    .matchmaker-image-wrapper {
        min-height: 300px;
    }

    .why-choose-cta {
        flex-direction: column;
    }

    .btn-why-choose {
        width: 100%;
        text-align: center;
    }

    .offer-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }

    .why-choose-image-placeholder {
        height: 250px;
    }

    .why-choose-heading {
        font-size: 1.3rem;
    }

    .matchmaker-heading {
        font-size: 1.5rem;
    }

    .why-choose-text,
    .matchmaker-text {
        font-size: 1rem;
    }

    .matchmaker-content-wrapper {
        padding: 20px 15px;
        text-align: center;
    }

    .btn-matchmaker {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        max-width: 250px;
        font-size: 0.85rem;
        padding: 12px 25px;
        white-space: nowrap;
        gap: 10px;
    }
}
