/* ==========================================================================
   Chinese Translation Services - Redesign Stylesheet
   Matches .net.au modern design aesthetic
   ========================================================================== */

/* ---------- Font Faces (reuse existing Futura) ---------- */
@font-face {
    font-family: 'Futura';
    src: url('/Fonts/FuturaBT-BoldCondensed.woff2') format('woff2'),
        url('/Fonts/FuturaBT-BoldCondensed.woff') format('woff'),
        url('/Fonts/FuturaBT-BoldCondensed.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Futura Std';
    src: url('/Fonts/FuturaStd-Book.woff2') format('woff2'),
        url('/Fonts/FuturaStd-Book.woff') format('woff'),
        url('/Fonts/FuturaStd-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: #d02622; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

.rd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Material Icons (fallback) ---------- */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* ---------- Top Contact Bar ---------- */
.rd-topbar {
    background: #7c1010;
    border-bottom: 2px solid #bd0303;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}
.rd-topbar .rd-container {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.rd-topbar a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.rd-topbar a:hover { text-decoration: underline; }
.rd-topbar .material-icons { color: #fff; font-size: 18px; }
.rd-topbar-right { margin-left: auto; }

/* ---------- Navigation ---------- */
.rd-navbar {
    background: #fff;
    border-bottom: 1px solid #e3e3e3;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.rd-navbar .rd-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}
.rd-logo {
    font-family: Futura, Arial, sans-serif;
    font-size: 20px;
    color: #111;
    font-weight: bold;
    white-space: nowrap;
}
.rd-logo a { color: #111; text-decoration: none; }
.rd-logo span { color: #d02622; }
.rd-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.rd-nav-links li { position: relative; }
.rd-nav-links a {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s;
}
.rd-nav-links a:hover { color: #d02622; text-decoration: none; }
.rd-nav-cta {
    background: #d02622;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 4px;
    font-weight: 700;
    transition: background 0.2s;
}
.rd-nav-cta:hover { background: #b50f0b; color: #fff !important; }

/* Dropdown */
.rd-dropdown { position: relative; }
.rd-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -10px;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    min-width: 240px;
    padding: 8px 0;
    z-index: 200;
}
.rd-dropdown:hover .rd-dropdown-menu { display: block; }
.rd-dropdown-menu a {
    display: block;
    padding: 8px 18px;
    font-weight: 400;
    font-size: 14px;
    color: #333;
}
.rd-dropdown-menu a:hover { background: #f7f7f7; color: #d02622; }

/* Mobile Nav Toggle */
.rd-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.rd-nav-toggle .material-icons { font-size: 28px; color: #333; }

/* ---------- Hero Section ---------- */
.rd-hero {
    position: relative;
    background: url('/bg.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
}
.rd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.rd-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    width: 100%;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.rd-hero-split {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 40px;
    align-items: center;
    text-align: left;
}
.rd-hero-left {}
.rd-hero h1 {
    font-family: Futura, Arial, sans-serif;
    font-size: 38px;
    margin: 0 0 10px;
    line-height: 1.2;
}
.rd-hero .rd-hero-subtitle {
    font-size: 18px;
    margin: 0 0 20px;
    opacity: 0.95;
    font-weight: 400;
}
.rd-hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.rd-hero-checklist li {
    padding: 6px 0 6px 30px;
    position: relative;
    font-size: 15px;
    opacity: 0.95;
}
.rd-hero-checklist li::before {
    content: 'check_circle';
    font-family: 'Material Icons';
    position: absolute;
    left: 0;
    top: 6px;
    color: #4caf50;
    font-size: 18px;
}
.rd-hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}
.rd-hero-stat {
    text-align: center;
}
.rd-hero-stat-value {
    display: block;
    font-family: Futura, Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
}
.rd-hero-stat-label {
    font-size: 13px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.rd-hero-form-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    padding: 28px;
    color: #111;
}
.rd-hero-form-card h3 {
    font-family: Futura, Arial, sans-serif;
    font-size: 20px;
    margin: 0 0 5px;
    color: #111;
}
.rd-hero-form-card > p {
    color: #666;
    margin: 0 0 10px;
    font-size: 14px;
}
.rd-hero-breadcrumb {
    font-size: 14px;
    margin: 0 0 12px;
    opacity: 0.8;
}
.rd-hero-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.rd-hero-breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}
.rd-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.rd-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
    text-align: center;
}
.rd-btn-primary {
    background: #d02622;
    color: #fff;
}
.rd-btn-primary:hover { background: #b50f0b; color: #fff; text-decoration: none; }
.rd-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.rd-btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; text-decoration: none; }

/* ---------- Section Shared ---------- */
.rd-section {
    padding: 60px 0;
}
.rd-section-gray {
    background: #f7f8f8;
}
.rd-section-title {
    font-family: Futura, Arial, sans-serif;
    font-size: 32px;
    text-align: center;
    margin: 0 0 12px;
    color: #111;
}
.rd-section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin: 0 0 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Quote Form Section ---------- */
.rd-quote-section {
    padding: 60px 0;
    background: #f7f8f8;
}
.rd-quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.rd-quote-info h2 {
    font-family: Futura, Arial, sans-serif;
    font-size: 32px;
    color: #111;
    margin: 0 0 15px;
}
.rd-quote-info p {
    color: #555;
    line-height: 1.7;
    margin: 0 0 20px;
}
.rd-quote-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rd-quote-checklist li {
    padding: 8px 0 8px 32px;
    position: relative;
    color: #333;
    font-size: 15px;
}
.rd-quote-checklist li::before {
    content: 'check_circle';
    font-family: 'Material Icons';
    position: absolute;
    left: 0;
    top: 8px;
    color: #d02622;
    font-size: 20px;
}
.rd-quote-form-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 30px;
}
.rd-quote-form-card h3 {
    font-family: Futura, Arial, sans-serif;
    font-size: 22px;
    margin: 0 0 5px;
    color: #111;
}
.rd-quote-form-card > p {
    color: #666;
    margin: 0 0 10px;
    font-size: 14px;
}

/* Override form.js injected form styles within the card */
.rd-quote-form-card #formRight form {
    width: 100%;
    padding: 10px 0;
}
.rd-quote-form-card .drivingLicenseForm {
    max-width: 100%;
    float: none;
    margin: 0;
}
.rd-quote-form-card input,
.rd-quote-form-card textarea,
.rd-quote-form-card select {
    border: 1px solid #d0d0d0;
    color: #333;
    float: left;
    margin: 0 0 8px;
    padding: 11px 12px;
    width: 100%;
    font-size: 15px;
    border-radius: 6px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.rd-quote-form-card input:focus,
.rd-quote-form-card textarea:focus,
.rd-quote-form-card select:focus {
    border-color: #d02622;
    outline: none;
}
.rd-quote-form-card textarea {
    height: 100px;
    font-family: Arial, sans-serif;
}
.rd-quote-form-card #btnSubmit {
    background: #d02622;
    border: 0 none;
    display: block;
    height: 48px;
    width: 100%;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 3px 0 11px;
    border-radius: 6px;
    transition: background 0.2s;
}
.rd-quote-form-card #btnSubmit:hover { background: #b50f0b; }
.rd-quote-form-card label.error {
    color: #ac0000;
    display: block;
    font-size: 12px;
    padding: 0 0 0 2px;
    position: relative;
    text-align: left;
    top: -4px;
    width: 100%;
    clear: both;
    margin: 0 0 5px;
}
.rd-quote-form-card input.error,
.rd-quote-form-card select.error {
    border: solid 1px #ac0000;
}
.rd-quote-form-card .input-From { float: left; width: 48%; margin: 0 2% 8px 0; }
.rd-quote-form-card .input-To { float: left; width: 50%; }
.rd-quote-form-card #uploadedFiles { float: left; padding: 0; display: block; width: 100%; color: #777; margin: 0; }
.rd-quote-form-card #uploadedFiles.populated { margin: 0 0 20px; }
.rd-quote-form-card #uploadedFiles li { line-height: 2; margin: 0 0 2px; position: relative; font-size: 12px; height: 22px; text-overflow: ellipsis; white-space: nowrap; }
.rd-quote-form-card #uploadedFiles li .removeFile { position: absolute; right: 0; background: #2b2b2b; color: #fff; border: 0 none; border-radius: 3px; font-size: 12px; padding: 4px 6px; cursor: pointer; }
.rd-quote-form-card .fileinput { float: left; width: 100%; padding: 0; display: block; }
.rd-quote-form-card .submitLoader {
    font-family: Helvetica, Arial;
    clear: both;
    position: relative;
    padding: 10px;
    text-align: center;
    margin: 0px 0px 50px;
    top: 43px;
    color: rgb(37, 74, 148);
    border-bottom: 1px dotted rgb(37, 74, 148);
    border-top: 1px dotted rgb(37, 74, 148);
    font-weight: bold;
    line-height: 1.2;
    font-size: 15px;
    background: url(/Images/loading.gif) no-repeat center 9px;
    padding-top: 36px;
}
.rd-quote-form-card .clearFloats { clear: both; line-height: 0; }

/* Override form.js injected form styles within hero card */
.rd-hero-form-card #formRight form {
    width: 100%;
    padding: 10px 0;
}
.rd-hero-form-card .drivingLicenseForm {
    max-width: 100%;
    float: none;
    margin: 0;
}
.rd-hero-form-card input,
.rd-hero-form-card textarea,
.rd-hero-form-card select {
    border: 1px solid #d0d0d0;
    color: #333;
    float: left;
    margin: 0 0 8px;
    padding: 10px 12px;
    width: 100%;
    font-size: 14px;
    border-radius: 6px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.rd-hero-form-card input:focus,
.rd-hero-form-card textarea:focus,
.rd-hero-form-card select:focus {
    border-color: #d02622;
    outline: none;
}
.rd-hero-form-card textarea {
    height: 80px;
    font-family: Arial, sans-serif;
}
.rd-hero-form-card #btnSubmit {
    background: #d02622;
    border: 0 none;
    display: block;
    height: 46px;
    width: 100%;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 3px 0 8px;
    border-radius: 6px;
    transition: background 0.2s;
}
.rd-hero-form-card #btnSubmit:hover { background: #b50f0b; }
.rd-hero-form-card label.error {
    color: #ac0000;
    display: block;
    font-size: 12px;
    padding: 0 0 0 2px;
    position: relative;
    text-align: left;
    top: -4px;
    width: 100%;
    clear: both;
    margin: 0 0 5px;
}
.rd-hero-form-card input.error,
.rd-hero-form-card select.error {
    border: solid 1px #ac0000;
}
.rd-hero-form-card .input-From { float: left; width: 48%; margin: 0 2% 8px 0; }
.rd-hero-form-card .input-To { float: left; width: 50%; }
.rd-hero-form-card #uploadedFiles { float: left; padding: 0; display: block; width: 100%; color: #777; margin: 0; }
.rd-hero-form-card #uploadedFiles.populated { margin: 0 0 15px; }
.rd-hero-form-card #uploadedFiles li { line-height: 2; margin: 0 0 2px; position: relative; font-size: 12px; height: 22px; text-overflow: ellipsis; white-space: nowrap; }
.rd-hero-form-card #uploadedFiles li .removeFile { position: absolute; right: 0; background: #2b2b2b; color: #fff; border: 0 none; border-radius: 3px; font-size: 12px; padding: 4px 6px; cursor: pointer; }
.rd-hero-form-card .fileinput { float: left; width: 100%; padding: 0; display: block; }
.rd-hero-form-card .submitLoader {
    font-family: Helvetica, Arial;
    clear: both;
    position: relative;
    padding: 10px;
    text-align: center;
    margin: 0px 0px 50px;
    top: 43px;
    color: rgb(37, 74, 148);
    border-bottom: 1px dotted rgb(37, 74, 148);
    border-top: 1px dotted rgb(37, 74, 148);
    font-weight: bold;
    line-height: 1.2;
    font-size: 15px;
    background: url(/Images/loading.gif) no-repeat center 9px;
    padding-top: 36px;
}
.rd-hero-form-card .clearFloats { clear: both; line-height: 0; }

/* ---------- Range of Services (3 Cards) ---------- */
.rd-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.rd-service-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.rd-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.2);
    text-decoration: none;
}
.rd-service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
    transition: background 0.3s;
}
.rd-service-card:hover .rd-service-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.1) 100%);
}
.rd-service-card-content {
    position: relative;
    z-index: 1;
    padding: 28px;
    color: #fff;
}
.rd-service-card h3 {
    font-family: Futura, Arial, sans-serif;
    font-size: 22px;
    margin: 0 0 10px;
    color: #fff;
}
.rd-service-card p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 14px;
}
.rd-service-card .rd-card-link {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-bottom: 2px solid #d02622;
    padding-bottom: 2px;
}
.rd-service-card .rd-card-link .material-icons { font-size: 18px; }

/* ---------- Company Features (6 Cards) ---------- */
.rd-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.rd-feature-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 30px 24px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid #f0f0f0;
}
.rd-feature-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}
.rd-feature-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 15px;
    background: #fef0ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rd-feature-card-icon .material-icons {
    font-size: 28px;
    color: #d02622;
}
.rd-feature-card h3 {
    font-family: Futura, Arial, sans-serif;
    font-size: 17px;
    margin: 0 0 8px;
    color: #111;
}
.rd-feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ---------- Service Grid (8-12 cards) ---------- */
.rd-doc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.rd-doc-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 28px 20px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid #f0f0f0;
    display: block;
    color: #333;
}
.rd-doc-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-3px);
    text-decoration: none;
    color: #333;
}
.rd-doc-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: #fef0ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rd-doc-card-icon .material-icons {
    font-size: 24px;
    color: #d02622;
}
.rd-doc-card h4 {
    font-family: Futura, Arial, sans-serif;
    font-size: 15px;
    margin: 0;
    color: #111;
}

/* ---------- Google Reviews Section ---------- */
.rd-reviews-section {
    padding: 60px 0;
}
.rd-reviews-header {
    text-align: center;
    margin-bottom: 10px;
}
.rd-reviews-header .rd-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    padding: 12px 24px;
    margin-bottom: 30px;
}
.rd-rating-badge img {
    width: 28px;
    height: 28px;
}
.rd-rating-badge .rd-rating-score {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}
.rd-rating-badge .rd-rating-stars { color: #fb8e28; font-size: 18px; letter-spacing: 2px; }
.rd-rating-badge .rd-rating-text { font-size: 13px; color: #666; }

/* Review cards within slick */
.rd-reviews-carousel .review-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 24px !important;
    margin: 0 8px;
    height: auto !important;
    min-height: 200px;
    max-height: 280px;
}
.rd-reviews-carousel .review-meta { background: url(/g_ico.png) no-repeat top right; background-size: 28px; }
.rd-reviews-carousel .review-author { font-weight: 700; text-transform: capitalize; }
.rd-reviews-carousel .review-date { opacity: 0.6; display: block; font-size: 13px; }
.rd-reviews-carousel .review-stars { margin-bottom: 12px; }
.rd-reviews-carousel .review-stars ul { display: inline-flex; list-style: none; margin: 0; padding: 0; gap: 2px; }
.rd-reviews-carousel .review-stars ul li { list-style: none; line-height: 1; }
.rd-reviews-carousel .review-text {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
    overflow: hidden;
    white-space: pre-wrap;
    word-break: break-word;
}
.rd-reviews-carousel .review-text-scroll { height: 100px !important; overflow-y: auto !important; padding: 0 8px 0 0; clear: both; }
.rd-reviews-carousel .review-img img { max-height: 35px; border-radius: 50%; }
.rd-reviews-carousel .review-img { display: block; float: left; margin: 0 10px 0 0; }

/* Slick overrides for reviews */
.rd-reviews-carousel .slick-list { padding: 10px 0; }
.rd-reviews-carousel .slick-slide { height: auto !important; margin: 0 6px; }
.rd-reviews-carousel .slick-arrow svg { width: 40px; opacity: 0.5; cursor: pointer; }
.rd-reviews-carousel .slick-arrow svg:hover { opacity: 0.8; }
.rd-reviews-carousel .slick-arrow { display: flex; align-items: center; }
.rd-reviews-carousel #map-plug { display: none; }
.rd-reviews-carousel .review-item-wrapper { display: flex; justify-content: center; }
.rd-reviews-carousel .review-meta,
.rd-reviews-carousel .review-stars { font-family: Arial, sans-serif; font-size: 14px; margin-bottom: 8px; }

/* ---------- NAATI / About CTA Section ---------- */
.rd-naati-section {
    position: relative;
    background: url('/Images/bg.jpg') center center / cover no-repeat;
    padding: 70px 0;
}
.rd-naati-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}
.rd-naati-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}
.rd-naati-content h2 {
    font-family: Futura, Arial, sans-serif;
    font-size: 32px;
    margin: 0 0 18px;
}
.rd-naati-content p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 28px;
    opacity: 0.95;
}

/* ---------- FAQ Accordion ---------- */
.rd-faq-section {
    padding: 70px 0;
    background: #fff;
}
.rd-faq-section .rd-section-title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 28px;
    margin-bottom: 8px;
}
.rd-faq-section .rd-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #d02622;
    margin: 16px auto 0;
    border-radius: 2px;
}
.rd-faq-section .rd-section-subtitle {
    margin-bottom: 36px;
}
.rd-faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.rd-faq-item {
    border-bottom: 1px solid #e5e5e5;
    transition: background 0.2s;
}
.rd-faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}
.rd-faq-item.active {
    background: #fdf6f6;
}
.rd-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 52px 20px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #28303d;
    cursor: pointer;
    position: relative;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    transition: color 0.2s;
}
.rd-faq-question:hover {
    color: #d02622;
}
.rd-faq-item.active .rd-faq-question {
    color: #d02622;
    font-weight: 700;
}
.rd-faq-question::after {
    content: '+';
    font-family: Arial, sans-serif;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 300;
    color: #999;
    transition: transform 0.3s, color 0.2s;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.rd-faq-item.active .rd-faq-question::after {
    content: '\2212';
    color: #d02622;
    transform: translateY(-50%);
}
.rd-faq-item:hover .rd-faq-question::after {
    color: #d02622;
}
.rd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.rd-faq-item.active .rd-faq-answer {
    max-height: 500px;
}
.rd-faq-answer-inner {
    padding: 0 20px 22px 20px;
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    border-left: 3px solid #d02622;
    margin-left: 20px;
    padding-left: 18px;
    margin-right: 20px;
}

/* ---------- Footer ---------- */
.rd-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 0 0;
    font-size: 14px;
    line-height: 1.7;
}
.rd-footer a { color: #ddd; text-decoration: none; }
.rd-footer a:hover { color: #fff; text-decoration: underline; }
.rd-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.rd-footer-col h4 {
    font-family: Futura, Arial, sans-serif;
    font-size: 16px;
    color: #fff;
    margin: 0 0 15px;
    text-transform: uppercase;
}
.rd-footer-col p { margin: 0 0 8px; }
.rd-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rd-footer-col ul li {
    padding: 3px 0;
}
.rd-footer-locations {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 25px 0;
    margin-bottom: 0;
}
.rd-footer-locations h4 {
    font-family: Futura, Arial, sans-serif;
    font-size: 14px;
    color: #fff;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.rd-footer-loc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}
.rd-footer-loc-links a {
    font-size: 13px;
    color: #aaa;
}
.rd-footer-loc-links a:hover { color: #fff; }
.rd-footer-bottom {
    background: #111;
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
    color: #888;
}
.rd-footer-bottom a { color: #aaa; }
.rd-footer-bottom-links {
    margin-bottom: 8px;
}
.rd-footer-bottom-links a {
    margin: 0 10px;
}

/* ---------- Camera Modal (preserved from original) ---------- */
#cameraModal { z-index: 9999; }

/* ---------- Responsive: Tablet (max 1200px) ---------- */
@media (max-width: 1200px) {
    .rd-doc-grid { grid-template-columns: repeat(3, 1fr); }
    .rd-footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Responsive: Mobile/Tablet (max 768px) ---------- */
@media (max-width: 768px) {
    .rd-nav-links { display: none; }
    .rd-nav-links.rd-nav-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        padding: 16px 20px;
        gap: 12px;
        z-index: 150;
    }
    .rd-nav-toggle { display: block; }
    .rd-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        min-width: auto;
        display: none;
    }
    .rd-dropdown.open .rd-dropdown-menu { display: block; }

    .rd-hero-split { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .rd-hero-stats { justify-content: center; }
    .rd-hero-checklist { display: inline-block; text-align: left; }
    .rd-hero h1 { font-size: 30px; }
    .rd-hero .rd-hero-subtitle { font-size: 16px; }
    .rd-hero-stats { gap: 24px; }
    .rd-hero-stat-value { font-size: 22px; }

    .rd-quote-wrapper { grid-template-columns: 1fr; gap: 30px; }

    .rd-services-grid { grid-template-columns: 1fr; gap: 20px; }
    .rd-features-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .rd-doc-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .rd-footer-grid { grid-template-columns: 1fr; gap: 24px; }

    .rd-section-title { font-size: 26px; }
}

/* ---------- Responsive: Small Mobile (max 480px) ---------- */
@media (max-width: 480px) {
    .rd-topbar .rd-container { font-size: 12px; gap: 10px; }
    .rd-hero h1 { font-size: 26px; }
    .rd-hero .rd-hero-subtitle { font-size: 15px; }
    .rd-hero-checklist li { font-size: 14px; }

    .rd-features-grid { grid-template-columns: 1fr; }
    .rd-doc-grid { grid-template-columns: 1fr; }

    .rd-faq-question { font-size: 15px; padding: 16px 44px 16px 16px; }
    .rd-faq-answer-inner { margin-left: 16px; margin-right: 16px; padding-left: 14px; }
}

/* ---------- Utility ---------- */
.rd-clearfix::after { content: ''; display: table; clear: both; }
.rd-text-center { text-align: center; }
.rd-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Slick base (needed if not loaded from common.css) */
.slick-list,.slick-slider,.slick-track{position:relative;display:block}
.slick-slider{width:100%!important;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}
.slick-list{overflow:hidden;margin:0;padding:0}
.slick-list:focus{outline:0}
.slick-list.dragging{cursor:pointer;cursor:hand}
.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
.slick-track{top:0;left:0;margin-left:auto;margin-right:auto}
.slick-track:after,.slick-track:before{display:table;content:''}
.slick-track:after{clear:both}
.slick-loading .slick-slide,.slick-loading .slick-track{visibility:hidden}
.slick-slide{display:none;float:left;min-height:1px}
[dir=rtl] .slick-slide{float:right}
.slick-initialized .slick-slide,.slick-slide img{display:block}
.slick-arrow.slick-hidden{display:none}
.slick-slide.dragging img{pointer-events:none}
.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}
.slick-arrow svg{width:44px;opacity:.5;cursor:pointer}
.slick-arrow svg:hover{opacity:.8}
