﻿/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */

/* Section Subheadings */
.section-subheading {
    font-size: 22px;
    font-weight: 500;
    color: #555;
    position: relative;
    padding-left: 24px;
}

.subheading-decoration {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 32px;
    background: linear-gradient(180deg, #c68a1f 0%, #f7b02e 100%);
    border-radius: 2px;
}


/* ============================================
   IMAGE WRAPPER UTILITY
   ============================================ */

.image-wrapper img {
    border: 1px solid rgba(0, 0, 0, 0.08);
}


/* ============================================
   ABOUT SECTION
   ============================================ */

.about-image-wrapper {
    position: relative;
}


/* ============================================
   4 STEPS SECTION
   ============================================ */

.step-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--card-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}


.step-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(198, 138, 31, 0.15);
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.step-card:hover .step-number {
    color: rgba(198, 138, 31, 0.25);
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #24190a;
    margin-bottom: 12px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .services-list li {
        margin-bottom: 12px;
        padding-left: 24px;
        position: relative;
    }

        .services-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #c68a1f;
            font-weight: bold;
        }

        .services-list li a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }

            .services-list li a:hover {
                color: #f7b02e;
                padding-left: 8px;
            }

.services-image-wrapper img {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.feature-card {
    background: #fafaf8;
    padding: 24px;
    padding-left: 28px;
    border-radius: var(--card-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 4px solid #c68a1f;
    height: 100%;
    transition: all 0.3s ease;
}

    .feature-card:hover {
        border-left-color: #f7b02e;
        background: #fff;
    }

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #24190a;
    margin-bottom: 12px;
}

.feature-card:hover .feature-title {
    color: #c68a1f;
}


/* ============================================
   NRI SECTION
   ============================================ */

.nri-content {
    max-width: 900px;
}

.nri-subheading {
    font-size: 20px;
    font-weight: 500;
    color: #c68a1f;
}

.nri-feature {
    background: #fff;
    padding: 20px 16px;
    border-radius: var(--card-radius);
    border: 1px solid rgba(198, 138, 31, 0.2);
    transition: all 0.3s ease;
}

.nri-feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #c68a1f;
    margin-bottom: 6px;
}


/* ============================================
   PRACTICE AREA SECTION
   ============================================ */

.practice-service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fafaf8;
    border-radius: var(--card-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

    .practice-service-item:hover {
        background: #fff;
    }

.service-icon-wrapper {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

    .service-icon-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.service-content-wrapper {
    flex: 1;
}

.service-item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

    .service-item-title a {
        color: #24190a;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .service-item-title a:hover {
            color: #c68a1f;
        }


/* ============================================
   LEGAL NOTICE SECTION
   ============================================ */

.legal-notice-content {
    max-width: 800px;
}

.legal-notice-subheading {
    font-size: 24px;
    font-weight: 600;
    color: #24190a;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-content {
    max-width: 1000px;
}

.why-choose-intro {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.why-point {
    padding: 24px;
    background: #fafaf8;
    border-radius: var(--card-radius);
    border-left: 4px solid #c68a1f;
    height: 100%;
    transition: all 0.3s ease;
}

    .why-point:hover {
        background: #fff;
        border-left-color: #f7b02e;
    }

.why-point-title {
    font-size: 18px;
    font-weight: 600;
    color: #24190a;
    margin-bottom: 12px;
}

.why-point:hover .why-point-title {
    color: #c68a1f;
}


/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-benefit-item {
    padding-left: 20px;
    position: relative;
}

    .contact-benefit-item::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 2px;
        color: #4caf50;
        font-weight: bold;
        font-size: 16px;
    }

.benefit-title {
    font-size: 16px;
    font-weight: 600;
    color: #24190a;
    margin-bottom: 6px;
}


.contact-cta-box {
    padding: 20px;
    background: rgba(198, 138, 31, 0.08);
    border-left: 4px solid #c68a1f;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.6;
}

/* Form Styles */
.contact-form-wrapper {
    background: #fff;
    padding: 32px;
    border-radius: var(--card-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-header {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.form-heading {
    font-size: 24px;
    font-weight: 600;
    color: #24190a;
    margin-bottom: 6px;
}

.form-subheading {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.contact-form-content .form-control {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .contact-form-content .form-control:focus {
        border-color: #c68a1f;
        box-shadow: 0 0 0 3px rgba(198, 138, 31, 0.1);
        outline: none;
    }

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

.tooltipval {
    font-size: 12px;
    color: #dc3545;
    display: block;
    margin-top: 4px;
}

/* ============================================
   RESPONSIVE - GROUPED MEDIA QUERIES
   ============================================ */

/* Tablet & Below (991px) */
@media (max-width: 991px) {
    .section-subheading {
        font-size: 20px;
    }

    .step-card {
        padding: 28px 20px;
    }

    .step-number {
        font-size: 40px;
    }

    .step-title,
    .feature-title,
    .service-item-title,
    .why-point-title {
        font-size: 18px;
    }

    .nri-subheading {
        font-size: 18px;
    }

    .legal-notice-subheading {
        font-size: 22px;
    }

    .why-choose-intro {
        font-size: 17px;
    }

    .contact-form-wrapper {
        padding: 28px 24px;
    }

    .form-heading {
        font-size: 22px;
    }

    .services-list li a {
        font-size: 15px;
    }

    .nri-feature,
    .practice-service-item {
        padding: 18px;
    }

    .feature-card,
    .why-point {
        padding: 20px;
    }

    .feature-card {
        padding-left: 24px;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .section-heading {
        font-size: 24px;
    }

    .section-subheading {
        font-size: 18px;
        padding-left: 20px;
    }

    .why-choose-intro {
        font-size: 15px;
    }

    .step-card,
    .feature-card,
    .practice-service-item,
    .nri-feature,
    .why-point {
        padding: 18px;
    }

    .feature-card {
        padding-left: 22px;
    }

    .step-number {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .step-title {
        font-size: 18px;
        margin-bottom: 10px;
    }


    .service-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .service-item-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .nri-subheading {
        font-size: 17px;
    }

    .nri-feature-title {
        font-size: 14px;
    }

    .legal-notice-subheading {
        font-size: 20px;
    }

    .why-point-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .benefit-title {
        font-size: 15px;
    }

    .contact-cta-box {
        padding: 16px;
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .form-heading {
        font-size: 20px;
    }

    .form-subheading {
        font-size: 13px;
    }

    .services-list li {
        margin-bottom: 10px;
    }

        .services-list li a {
            font-size: 14px;
        }
}
