       *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --orange: #FC501D;
        --orange-dark: #d93e00;
        --orange-light: rgba(252, 80, 29, 0.08);
        --dark: #111111;
        --muted: #797E88;
        --white: #ffffff;
        --bg: #F8F8F8;
        --font: 'Plus Jakarta Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
        font-family: var(--font);
        background: var(--bg);
        color: var(--dark);
    }

    /* ══════════════════════════════════
       BANNER
    ══════════════════════════════════ */
    .contact-banner {
        position: relative;
        width: 100%;
        height:670px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-banner__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        z-index: 0;
    }

    .contact-banner__overlay {
        position: absolute;
        inset: 0;
        background: rgba(10, 14, 24, 0.75);
        z-index: 1;
    }

    .contact-banner__accent {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 420px;
        height: 220px;
        background: var(--orange);
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
        opacity: 0.13;
        z-index: 2;
    }

    .contact-banner__content {
        position: relative;
        z-index: 3;
        text-align: center;
        padding: 0 20px;
    }

    .contact-banner__eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--orange);
        margin-bottom: 18px;
    }

    .contact-banner__eyebrow::before,
    .contact-banner__eyebrow::after {
        content: '';
        display: block;
        width: 28px;
        height: 2px;
        background: var(--orange);
        border-radius: 2px;
    }

    .contact-banner__title {
        font-size: clamp(42px, 6.5vw, 76px);
        font-weight: 800;
        color: #fff;
        line-height: 1.05;
        letter-spacing: -1.5px;
        margin-bottom: 20px;
    }

    .contact-banner__title span { color: var(--orange); }

    .contact-banner__breadcrumb {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 17px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85);
    }

    .contact-banner__breadcrumb a {
        color: var(--orange);
        text-decoration: none;
        font-weight: 600;
        transition: opacity 0.2s;
    }

    .contact-banner__breadcrumb a:hover { opacity: 0.75; }
    .contact-banner__breadcrumb .sep { font-size: 13px; opacity: 0.6; }

    @media (max-width: 768px) {
        .contact-banner { height: 320px; }
        .contact-banner__title { font-size: 38px; }
        .contact-banner__breadcrumb { font-size: 14px; }
    }

    @media (max-width: 480px) {
        .contact-banner { height: 270px; }
        .contact-banner__title { font-size: 30px; }
    }

    /* ══════════════════════════════════
       INFO STRIP (3 cards top)
    ══════════════════════════════════ */
    .info-strip {
        background: #fff;
        padding: 70px 0 60px;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .wrap {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .section-eyebrow {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 14px;
    }

    .section-eyebrow span {
        color: var(--orange);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .section-title {
        text-align: center;
        font-size: clamp(28px, 3.5vw, 44px);
        font-weight: 750;
        color: var(--dark);
        line-height: 1.12;
        margin-bottom: 50px;
    }

    .section-title em {
        color: var(--orange);
        font-style: normal;
    }

    .info-top-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    .info-top-card {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        background: var(--bg);
        border-radius: 18px;
        padding: 26px 28px;
        border: 1.5px solid transparent;
        transition: border-color 0.25s, box-shadow 0.25s, transform 0.3s;
    }

    .info-top-card:hover {
        border-color: rgba(252, 80, 29, 0.22);
        box-shadow: 0 12px 40px rgba(252, 80, 29, 0.08);
        transform: translateY(-5px);
    }

    .info-top-icon {
        width: 56px;
        height: 56px;
        border-radius: 15px;
        background: var(--orange);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .info-top-icon i { font-size: 22px; color: #fff; }

    .info-top-body h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 8px;
        letter-spacing: 0.2px;
    }

    .info-top-body p,
    .info-top-body a {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.8;
        text-decoration: none;
        display: block;
    }

    .info-top-body a:hover { color: var(--orange); }

    @media (max-width: 1024px) {
        .info-top-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 640px) {
        .info-top-grid { grid-template-columns: 1fr; }
        .wrap { padding: 0 20px; }
        .info-strip { padding: 50px 0 40px; }
    }

    /* ══════════════════════════════════
       CONTACT SECTION — INFO LEFT + FORM RIGHT
    ══════════════════════════════════ */
    .contact-section {
        background: #fff;
        padding: 100px 0 90px;
    }

    .contact-wrap {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.45fr;
        gap: 80px;
        align-items: start;
    }

    /* — Left column — */
    .contact-section-eyebrow {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
    }

    .contact-section-eyebrow h5 {
        color: var(--orange);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font);
    }

    .contact-heading {
        font-size: clamp(28px, 3.2vw, 42px);
        font-weight: 750;
        color: var(--dark);
        line-height: 1.12;
        margin-bottom: 18px;
    }

    .contact-heading em {
        color: var(--orange);
        font-style: normal;
    }

    .contact-subtext {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.85;
        margin-bottom: 38px;
        max-width: 420px;
    }

    /* Vertical info cards on left */
    .info-cards {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 38px;
    }

    .info-card {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        background: var(--bg);
        border-radius: 16px;
        padding: 20px 22px;
        border: 1.5px solid transparent;
        transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }

    .info-card:hover {
        border-color: rgba(252, 80, 29, 0.2);
        box-shadow: 0 8px 32px rgba(252, 80, 29, 0.07);
        transform: translateX(6px);
    }

    .info-icon {
        width: 48px;
        height: 48px;
        border-radius: 13px;
        background: var(--orange);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .info-icon i { font-size: 19px; color: #fff; }

    .info-card-body h4 {
        font-size: 14px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 5px;
        letter-spacing: 0.2px;
    }

    .info-card-body p,
    .info-card-body a {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.75;
        text-decoration: none;
        display: block;
    }

    .info-card-body a:hover { color: var(--orange); }

    /* Social */
    .social-row {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .social-label {
        font-size: 13px;
        font-weight: 700;
        color: var(--dark);
        margin-right: 4px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1.5px solid rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--dark);
        transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    }

    .social-btn:hover {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
        transform: translateY(-3px);
    }

    .social-btn i { font-size: 15px; }

    /* — Right Form Card — */
    .form-card {
        background: #fff;
        border-radius: 24px;
        border: 1px solid rgba(0, 0, 0, 0.07);
        padding: 44px 42px;
        box-shadow: 0 16px 64px rgba(0, 0, 0, 0.07);
    }

    .form-card-heading {
        font-size: 22px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 6px;
    }

    .form-card-sub {
        font-size: 14px;
        color: var(--muted);
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 7px;
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 13px;
        font-weight: 700;
        color: var(--dark);
        letter-spacing: 0.2px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 13px 16px;
        border: 1.5px solid rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        font-family: var(--font);
        font-size: 14px;
        color: var(--dark);
        background: #fff;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--orange);
        box-shadow: 0 0 0 3px rgba(252, 80, 29, 0.1);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder { color: #bbb; }

    .form-group textarea {
        resize: vertical;
        min-height: 110px;
    }

    .form-group select {
        appearance: none;
        cursor: pointer;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23797E88' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
    }

    .error-msg {
        font-size: 12px;
        color: #e53e3e;
        margin-top: 2px;
        display: none;
    }

    .form-group.has-error input,
    .form-group.has-error textarea,
    .form-group.has-error select { border-color: #e53e3e; }

    .form-group.has-error .error-msg { display: block; }

    /* Input with icon */
    .input-icon-wrap {
        position: relative;
    }

    .input-icon-wrap input,
    .input-icon-wrap select {
        padding-left: 44px;
    }

    .input-icon-wrap .field-icon {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 16px;
        color: var(--orange);
        pointer-events: none;
    }

    .btn-submit {
        width: 100%;
        padding: 16px;
        background: var(--orange);
        color: #fff;
        font-family: var(--font);
        font-size: 15px;
        font-weight: 700;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
        letter-spacing: 0.3px;
        margin-top: 8px;
    }

    .btn-submit:hover {
        background: var(--orange-dark);
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(252, 80, 29, 0.3);
    }

    .btn-submit i {
        font-size: 16px;
        transition: transform 0.2s;
    }

    .btn-submit:hover i { transform: translateX(4px); }

    /* Form Success */
    .form-success {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 60px 20px;
        gap: 16px;
    }

    .form-success .success-icon {
        width: 76px;
        height: 76px;
        border-radius: 50%;
        background: rgba(252, 80, 29, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .form-success .success-icon i { font-size: 36px; color: var(--orange); }

    .form-success h3 {
        font-size: 22px;
        font-weight: 800;
        color: var(--dark);
    }

    .form-success p {
        font-size: 14.5px;
        color: var(--muted);
        line-height: 1.75;
        max-width: 360px;
    }

    @media (max-width: 1024px) {
        .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    }

    @media (max-width: 768px) {
        .contact-section { padding: 70px 0 60px; }
        .contact-wrap { padding: 0 20px; }
        .form-card { padding: 30px 22px; }
        .form-row { grid-template-columns: 1fr; }
    }

    /* ══════════════════════════════════
       MAP SECTION
    ══════════════════════════════════ */
    .map-section {
        padding: 0 0 90px;
        background: #fff;
    }

    .map-wrap {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .map-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 22px;
    }

    .map-header h3 {
        font-size: 22px;
        font-weight: 800;
        color: var(--dark);
    }

    .map-open-link {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 13px;
        font-weight: 700;
        color: var(--orange);
        text-decoration: none;
        transition: gap 0.2s;
    }

    .map-open-link:hover { gap: 11px; }
    .map-open-link i { font-size: 13px; }

    .map-frame {
        width: 100%;
        height: 380px;
        border-radius: 22px;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    }

    .map-frame iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

    @media (max-width: 768px) {
        .map-wrap { padding: 0 20px; }
        .map-frame { height: 260px; }
    }

    /* ══════════════════════════════════
       FAQ SECTION
    ══════════════════════════════════ */
    .faq-section {
        padding: 100px 0 110px;
        background: var(--bg);
    }

    .faq-wrap {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .faq-inner {
        display: grid;
        grid-template-columns: 480px 1fr;
        gap: 70px;
        align-items: start;
    }

    /* ── FAQ LEFT — Sticky image card (exact screenshot style) ── */
    .faq-left {
        position: sticky;
        top: 100px;
    }

    .faq-img-block {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        height: 600px;
        cursor: pointer;
    }

    .faq-img-block img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .faq-img-block:hover img { transform: scale(1.05); }

    /* Dark gradient overlay at bottom */
    .faq-img-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(10, 5, 5, 0.82) 0%,
            rgba(160, 30, 10, 0.45) 45%,
            transparent 72%
        );
    }

    /* Big bold heading on image — "MANUFACTURED EXCELLENCE" style */
    .faq-img-title {
        position: absolute;
        top: 28px;
        left: 28px;
        right: 28px;
        font-size: clamp(26px, 3.2vw, 38px);
        font-weight: 800;
        color: rgba(255, 255, 255, 0.15);
        line-height: 1.1;
        letter-spacing: -0.5px;
        text-transform: uppercase;
        pointer-events: none;
    }

    /* Badge pill — "REAL ESTATE — NAGPUR" */
    .faq-img-badge {
        position: absolute;
        bottom: 80px;
        left: 24px;
        background: var(--orange);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 7px 14px;
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    /* Caption below badge */
    .faq-img-caption {
        position: absolute;
        bottom: 26px;
        left: 24px;
        right: 24px;
        font-size: 19px;
        font-weight: 700;
        color: #fff;
        line-height: 1.35;
    }

    /* ── FAQ RIGHT — Accordion (exact screenshot style) ── */
    .faq-right-heading {
        font-size: clamp(22px, 2.8vw, 34px);
        font-weight: 750;
        color: var(--dark);
        line-height: 1.2;
        margin-bottom: 28px;
    }

    .faq-right-eyebrow {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--orange);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .faq-right-eyebrow i { font-size: 14px; }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* Each item: card with border, rounded corners */
    .faq-item {
        background: #fff;
        border: 1.5px solid rgba(0, 0, 0, 0.08);
        border-radius: 14px;
        margin-bottom: 10px;
        overflow: hidden;
        transition: border-color 0.25s, box-shadow 0.25s;
    }

    .faq-item:hover {
        border-color: rgba(252, 80, 29, 0.18);
    }

    /* Open state — orange border + soft red bg */
    .faq-item.open {
        border-color: var(--orange);
        background: #fff8f6;
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 20px 22px;
        cursor: pointer;
        text-align: left;
        font-family: var(--font);
    }

    .faq-question span {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark);
        line-height: 1.4;
        transition: color 0.2s;
    }

    /* Icon button — dark circle for closed, orange for open */
    .faq-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--dark);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: background 0.25s, transform 0.35s;
    }

    .faq-icon i {
        font-size: 14px;
        color: #fff;
        transition: transform 0.35s;
    }

    /* Open state changes */
    .faq-item.open .faq-question span {
        color: var(--orange);
    }

    .faq-item.open .faq-icon {
        background: var(--orange);
        transform: rotate(0deg);
    }

    .faq-item.open .faq-icon i {
        transform: rotate(45deg);
    }

    /* Answer area — left orange border line like screenshot */
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .faq-answer-inner {
        margin: 0 22px 20px 22px;
        padding: 14px 18px;
        border-left: 3px solid var(--orange);
        background: rgba(252, 80, 29, 0.03);
        border-radius: 0 8px 8px 0;
    }

    .faq-answer-inner p {
        font-size: 14.5px;
        color: var(--muted);
        line-height: 1.85;
    }

    /* Hover lift on closed items */
    .faq-item:not(.open):hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
        transform: translateY(-1px);
    }

    @media (max-width: 1100px) {
        .faq-inner { grid-template-columns: 1fr; gap: 44px; }
        .faq-left { position: static; }
        .faq-img-block { height: 300px; }
        .faq-img-title { font-size: 26px; }
    }

    @media (max-width: 768px) {
        .faq-wrap { padding: 0 20px; }
        .faq-section { padding: 60px 0; }
        .faq-img-block { height: 240px; }
    }

    /* ══════════════════════════════════
       CTA STRIP
    ══════════════════════════════════ */
    .cta-strip {
        background: var(--orange);
        padding: 64px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
    }

    .cta-strip-text h2 {
        font-size: clamp(20px, 3vw, 34px);
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 6px;
    }

    .cta-strip-text p { font-size: 15px; color: rgba(255, 255, 255, 0.82); }

    .cta-strip-btns {
        display: flex;
        gap: 14px;
        flex-shrink: 0;
        flex-wrap: wrap;
    }

    .cta-btn-white {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        color: var(--orange);
        font-size: 14px;
        font-weight: 800;
        padding: 14px 28px;
        border-radius: 50px;
        text-decoration: none;
        border: 2px solid #fff;
        transition: background 0.2s, color 0.2s, transform 0.2s;
    }

    .cta-btn-white:hover {
        background: transparent;
        color: #fff;
        transform: translateY(-2px);
    }

    .cta-btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: #fff;
        font-size: 14px;
        font-weight: 800;
        padding: 14px 28px;
        border-radius: 50px;
        text-decoration: none;
        border: 2px solid rgba(255, 255, 255, 0.5);
        transition: border-color 0.2s, background 0.2s, transform 0.2s;
    }

    .cta-btn-outline:hover {
        border-color: #fff;
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .cta-strip { padding: 44px 24px; flex-direction: column; align-items: flex-start; }
        .cta-strip-btns { flex-direction: column; width: 100%; }
        .cta-btn-white, .cta-btn-outline { justify-content: center; }
    }

    /* ══════════════════════════════════
       AOS custom tweaks
    ══════════════════════════════════ */
    [data-aos] { will-change: transform, opacity; }
    /* ═══════════════════════════════════════
   RD CONTACT SECTION — NAYE CLASS NAMES
═══════════════════════════════════════ */
.rd-contact-sec {
    background: #fff;
    padding: 100px 0 90px;
}
.rd-contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.rd-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
    gap: 60px;
    align-items: start;
}

/* — Left col — */
.rd-info-eyebrow h5 {
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-family: var(--font);
}
.rd-info-heading {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 750;
    color: var(--dark);
    line-height: 1.12;
    margin-bottom: 18px;
}
.rd-info-heading em { color: var(--orange); font-style: normal; }
.rd-info-subtext {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 38px;
    max-width: 420px;
}
.rd-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 38px;
}
.rd-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--bg);
    border-radius: 16px;
    padding: 20px 22px;
    border: 1.5px solid transparent;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.rd-info-card:hover {
    border-color: rgba(252,80,29,0.2);
    box-shadow: 0 8px 32px rgba(252,80,29,0.07);
    transform: translateX(6px);
}
.rd-ic-icon {
    width: 48px; height: 48px;
    border-radius: 13px;
    background: var(--orange);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.rd-ic-icon i { font-size: 19px; color: #fff; }
.rd-ic-body h4 {
    font-size: 14px; font-weight: 700;
    color: var(--dark); margin-bottom: 5px;
}
.rd-ic-body p,
.rd-ic-body a {
    font-size: 14px; color: var(--muted);
    line-height: 1.75; text-decoration: none; display: block;
}
.rd-ic-body a:hover { color: var(--orange); }

.rd-social-row {
    display: flex; align-items: center;
    gap: 10px; flex-wrap: wrap;
}
.rd-social-label {
    font-size: 13px; font-weight: 700;
    color: var(--dark); margin-right: 4px;
}
.rd-social-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.1);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: var(--dark);
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.rd-social-btn:hover {
    background: var(--orange); border-color: var(--orange);
    color: #fff; transform: translateY(-3px);
}
.rd-social-btn i { font-size: 15px; }

/* — Right Form Card — */
.rd-form-col { min-width: 0; width: 100%; }
.rd-form-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.07);
    padding: 44px 42px;
    box-shadow: 0 16px 64px rgba(0,0,0,0.07);
    width: 100%;
    box-sizing: border-box;
}
.rd-form-heading {
    font-size: 22px; font-weight: 700;
    color: var(--dark); margin-bottom: 6px;
}
.rd-form-sub {
    font-size: 14px; color: var(--muted);
    margin-bottom: 30px; line-height: 1.6;
}
.rd-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px; margin-bottom: 16px;
}
.rd-fg {
    display: flex; flex-direction: column;
    gap: 7px; margin-bottom: 16px;
}
.rd-fg label {
    font-size: 13px; font-weight: 700;
    color: var(--dark); letter-spacing: 0.2px;
}
.rd-input-wrap { position: relative; }
.rd-input-wrap input,
.rd-input-wrap select,
.rd-fg textarea {
    width: 100%;
    padding: 13px 16px 13px 44px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    font-family: var(--font);
    font-size: 14px; color: var(--dark);
    background: #fff; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.rd-fg textarea {
    padding: 13px 16px;
    resize: vertical; min-height: 110px;
}
.rd-input-wrap input:focus,
.rd-input-wrap select:focus,
.rd-fg textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(252,80,29,0.1);
}
.rd-input-wrap input::placeholder,
.rd-fg textarea::placeholder { color: #bbb; }
.rd-input-wrap select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23797E88' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
.rd-field-icon {
    position: absolute; left: 14px; top: 50%;
    transform: translateY(-50%);
    font-size: 16px; color: var(--orange);
    pointer-events: none;
}
.rd-err {
    font-size: 12px;
    color: #e53e3e;
    margin-top: 2px;
    display: none;
}
.rd-fg.has-error .rd-err { display: block; }
.rd-fg.has-error .rd-input-wrap input,
.rd-fg.has-error .rd-input-wrap select,
.rd-fg.has-error textarea { border-color: #e53e3e; }

.rd-btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--orange);
    color: #fff;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    letter-spacing: 0.3px;
    margin-top: 8px;
}
.rd-btn-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(252,80,29,0.3);
}
.rd-btn-submit i { font-size: 16px; transition: transform 0.2s; }
.rd-btn-submit:hover i { transform: translateX(4px); }

.rd-form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    gap: 16px;
}
.rd-success-icon {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: rgba(252,80,29,0.1);
    display: flex; align-items: center; justify-content: center;
}
.rd-success-icon i { font-size: 36px; color: var(--orange); }
.rd-form-success h3 { font-size: 22px; font-weight: 800; color: var(--dark); }
.rd-form-success p { font-size: 14.5px; color: var(--muted); line-height: 1.75; }
    @media (max-width: 1024px) {
    .rd-contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .rd-contact-container { padding: 0 20px; }
}
@media (max-width: 768px) {
    .rd-contact-sec { padding: 60px 0 50px; }
    .rd-form-card { padding: 24px 18px; }
    .rd-form-row { grid-template-columns: 1fr; gap: 0; }
}