/* =========================================================================
   Autoexport Website Stylesheet - High-Impact Dealership Theme V4
   Fonts: Oswald (Power Headings) & Open Sans (Body)
   Concept: Trust, Speed, Cash (Red, White, Dark Grey, Alert Elements)
   ========================================================================= */

:root {
    /* Color Palette - High Conversion Sales */
    --primary: #d32f2f;
    /* Aggressive Red */
    --primary-dark: #b71c1c;
    /* Blood Red */
    --secondary: #212121;
    /* Almost Black for depth */
    --accent: #ffeb3b;
    /* Alert Yellow for immediate attention */

    --bg-main: #f5f5f5;
    /* Neutral Grey background */
    --bg-surface: #ffffff;
    /* Pure white */

    --text-main: #424242;
    /* Dark Grey */
    --text-heading: #111111;
    /* True Black */
    --text-muted: #757575;

    /* Design Tokens */
    --shadow-solid: 4px 4px 0px rgba(0, 0, 0, 0.1);
    /* Brutalist/solid shadow */
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.1);

    --radius-sharp: 0px;
    /* No border radius - tough, serious look */
    --radius-soft: 4px;
    /* Very slight rounding for inputs */

    --transition: all 0.2s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
    /* Account for top bar + header */
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo-text,
.mega-button {
    font-family: 'Oswald', sans-serif;
    color: var(--text-heading);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.center {
    text-align: center;
}

/* =========================================================================
   Top Trust Bar
   ========================================================================= */
.top-bar {
    background-color: var(--secondary);
    color: var(--white, #ffffff);
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 20px;
}

.top-left i {
    color: var(--accent);
    margin-right: 5px;
}

.top-right a:hover {
    color: var(--accent);
}

/* =========================================================================
   Main Header
   ========================================================================= */
.main-header {
    background-color: var(--bg-surface);
    border-bottom: 4px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo-text .dot {
    color: var(--primary);
}

.desktop-nav {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-heading);
}

.desktop-nav a:hover {
    color: var(--primary);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    padding: 10px 20px;
    border-left: 4px solid var(--primary);
}

.phone-icon i {
    font-size: 2rem;
    color: var(--primary);
    animation: shake 2s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.small-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.phone-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-heading);
    cursor: pointer;
}

/* =========================================================================
   Mobile Menu
   ========================================================================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    width: 90%;
    background: var(--bg-surface);
    padding: 40px;
    position: relative;
    border-top: 5px solid var(--primary);
}

.close-menu-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-heading);
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: 30px;
    margin-top: 20px;
}

.mobile-nav-list li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-list a {
    display: block;
    padding: 15px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--text-heading);
}

.mobile-mega-btn {
    display: block;
    width: 100%;
    background: var(--primary);
    color: white !important;
    text-align: center;
    padding: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
}

/* =========================================================================
   Hero Section (Bold Sales)
   ========================================================================= */
.hero-section {
    position: relative;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    /* Optional BG image */
    background-color: var(--secondary);
    /* Fallback */
    padding: 6rem 0;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--text-heading);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    padding: 5px 15px;
    font-size: 1rem;
    margin-bottom: 20px;
    transform: skew(-10deg);
}

.hero-text-area h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 15px;
}

.hero-text-area h2 {
    color: #ccc;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    text-transform: none;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.hero-check-list {
    list-style: none;
}

.hero-check-list li {
    font-size: 1.15rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.hero-check-list i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 15px;
}

.hero-check-list strong {
    color: var(--accent);
    margin-right: 5px;
}

/* Heavy Evaluation Form */
.evaluation-form-box {
    background: var(--bg-surface);
    border-top: 8px solid var(--primary);
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.form-header h3 {
    font-size: 2rem;
    color: var(--text-heading);
    margin-bottom: 5px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.sales-form input,
.sales-form select.custom-select {
    width: 100%;
    background: var(--bg-main);
    border: 2px solid #ddd;
    padding: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-heading);
    font-weight: 600;
    transition: var(--transition);
    border-radius: var(--radius-soft);
}

/* Custom Select styling */
.sales-form select.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23111111%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 15px auto;
}

.sales-form select.custom-select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #eee;
}

.sales-form select optgroup {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-dark);
}

.sales-form select option {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-heading);
    font-size: 1rem;
    font-weight: normal;
}

.sales-form input:focus,
.sales-form select.custom-select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

/* Multi-Step Form Additions */
.form-steps-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px;
}

.step-dot {
    width: 35px;
    height: 35px;
    background: #e0e0e0;
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    transition: var(--transition);
}

.step-dot.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.4);
}

.step-line {
    height: 3px;
    width: 50px;
    background: #e0e0e0;
}

.step-title {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.step-title i {
    color: var(--primary);
    margin-right: 10px;
}

.step-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
    border: none;
    padding: 15px 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-soft);
    font-family: 'Oswald', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 40%;
}

.btn-secondary:hover {
    background: #ccc;
}

/* Image Upload Styling */
.image-upload-wrapper {
    margin-bottom: 20px;
    background: var(--bg-main);
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    border-radius: var(--radius-soft);
    transition: var(--transition);
}

.image-upload-wrapper:hover {
    border-color: var(--primary);
    background: #fffafa;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: var(--text-heading);
}

.upload-label i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.upload-label span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
}

.upload-label small {
    color: var(--text-muted);
    margin-top: 5px;
}

.file-input {
    display: none;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.preview-img-box {
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.preview-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-img-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(211, 47, 47, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-column {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.mega-button {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-soft);
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
}

.mega-button-dark {
    width: 100%;
    background: #1b5e20;
    /* Deep trust green for phone */
    color: white;
    border: none;
    padding: 22px 30px;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex: 1;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    box-shadow: 0 8px 15px rgba(27, 94, 32, 0.4);
    letter-spacing: 1px;
}

.mega-button:hover {
    background: var(--primary-dark);
}

.mega-button-dark:hover {
    background: #000000;
    /* Turns high-contrast black on hover for maximum impact */
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.5);
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(211, 47, 47, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

.privacy-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.privacy-note i {
    color: #4caf50;
}

/* =========================================================================
   Tags Banner
   ========================================================================= */
.tags-banner {
    background: var(--secondary);
    padding: 20px 0;
    border-bottom: 2px solid #333;
}

.tags-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.d-tag {
    background: #333;
    color: #ccc;
    padding: 5px 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* =========================================================================
   Process Section
   ========================================================================= */
.process-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--secondary);
}

.title-underline {
    width: 80px;
    height: 5px;
    background: var(--primary);
    margin: 15px auto 0;
}

.white-title h2 {
    color: white;
}

.white-bg {
    background: white;
}

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

.process-box {
    background: var(--bg-main);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid #e0e0e0;
    border-bottom: 4px solid var(--primary);
    transition: var(--transition);
}

.process-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.p-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.p-icon i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.process-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* =========================================================================
   Content Section / Article
   ========================================================================= */
.content-section {
    padding: 5rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.sidebar-box {
    position: relative;
}

.sticky-toc {
    position: sticky;
    top: 130px;
    background: white;
    padding: 25px;
    border: 2px solid var(--secondary);
    border-left: 5px solid var(--primary);
}

.sticky-toc h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.bold-toc-list {
    list-style: none;
}

.bold-toc-list li {
    margin-bottom: 12px;
}

.bold-toc-list a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.bold-toc-list a:hover {
    color: var(--primary);
}

.bold-toc-list ul {
    list-style: none;
    margin-top: 10px;
    margin-left: 15px;
    padding-left: 10px;
    border-left: 2px solid #ccc;
}

.text-body {
    background: white;
    padding: 40px;
    border-top: 5px solid var(--secondary);
    box-shadow: var(--shadow-soft);
}

.text-body h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.text-body h2 {
    font-size: 2.2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.text-body h3 {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.text-body p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.red-check-list {
    list-style: none;
    margin: 30px 0;
    background: var(--bg-main);
    padding: 25px;
    border-left: 4px solid var(--primary);
}

.red-check-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.red-check-list i {
    color: var(--primary);
    margin-top: 4px;
}

.dark-box {
    background: var(--secondary);
    padding: 25px;
    margin: 30px 0;
    color: white;
    border-left: 5px solid var(--accent);
}

.white-text {
    color: white !important;
}

/* Bold Table */
.table-responsive {
    overflow-x: auto;
    margin: 40px 0;
}

.bold-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.bold-table th,
.bold-table td {
    padding: 18px 20px;
    text-align: left;
    border: 1px solid #ddd;
}

.bold-table th {
    background: var(--secondary);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.bold-table td:nth-child(3) {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
}

.bold-table td:nth-child(2) {
    color: var(--primary-dark);
    font-weight: 600;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-section {
    background: var(--secondary);
    padding: 5rem 0;
}

.faq-box-area {
    max-width: 800px;
    margin: 0 auto;
}

.bold-faq-item {
    background: white;
    margin-bottom: 15px;
    border-left: 5px solid transparent;
}

.bold-faq-item.open {
    border-color: var(--primary);
}

.bold-faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bold-faq-question i {
    color: var(--primary);
}

.bold-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-main);
}

.bold-faq-answer p {
    padding: 20px 25px;
    font-size: 1.05rem;
}

/* =========================================================================
   Mega CTA
   ========================================================================= */
.mega-cta {
    background: var(--bg-main);
    padding: 6rem 0;
    border-bottom: 5px solid var(--primary);
}

.mega-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.highlight-red {
    color: var(--primary);
}

.mega-cta p {
    font-size: 1.3rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* =========================================================================
   Heavy Footer
   ========================================================================= */
.main-footer {
    background: #111;
    color: #ccc;
    padding-top: 5rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.footer-col-1 p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.f-contact div {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: white;
}

.f-contact i {
    color: var(--primary);
}

.footer-col-2 h4,
.footer-col-3 h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.footer-col-2 ul,
.footer-col-3 ul {
    list-style: none;
}

.footer-col-2 li,
.footer-col-3 li {
    margin-bottom: 12px;
}

.footer-col-2 a,
.footer-col-3 a {
    color: #aaa;
    font-weight: 600;
}

.footer-col-2 a:hover,
.footer-col-3 a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

.footer-bottom strong {
    color: white;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-text-area {
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-text-area h2 {
        border-left: none;
    }

    .hero-check-list li {
        justify-content: center;
    }

    .evaluation-form-box {
        max-width: 600px;
        margin: 0 auto;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .sticky-toc {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
}

/* Base style for mobile top contact - hidden on desktop */
.mobile-top-contact {
    display: none;
}

@media (max-width: 850px) {

    .mobile-top-contact {
        display: flex;
        width: 100%;
        position: absolute;
        /* Stick to bottom of header */
        top: 100%;
        left: 0;
        z-index: 999;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .mobile-top-btn {
        flex: 1;
        padding: 12px 10px;
        text-align: center;
        font-family: 'Oswald', sans-serif;
        font-size: 1.2rem;
        font-weight: 600;
        color: white !important;
        text-transform: uppercase;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .mobile-top-btn i {
        font-size: 1.4rem;
    }

    .phone-btn {
        background-color: var(--primary);
        /* Red */
    }

    .wa-btn {
        background-color: #25D366;
        /* WhatsApp Green */
    }

    .desktop-nav,
    .header-phone,
    .top-left .hide-mobile {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .text-body {
        padding: 25px;
    }

    .text-body h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .input-row {
        grid-template-columns: 1fr;
    }

    .hero-text-area h1 {
        font-size: 2.8rem;
    }

    .mega-cta h2 {
        font-size: 2.3rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .top-flex {
        flex-direction: column;
        gap: 10px;
    }
}

/* ═══════════════════════════════════════════════════════════
   INTERNAL LINKS SECTION – SEO Silo Styles
   ════════════════════════════════════════════════════════════ */
.internal-links-section {
    background: #f8f9fa;
    padding: 40px 0;
    border-top: 3px solid #e63946;
}
.il-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.internal-links-block {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.il-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
    border-bottom: 2px solid #e63946;
    padding-bottom: 8px;
}
.il-heading i { color: #e63946; margin-right: 6px; }
.il-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.il-list li {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.92rem;
    line-height: 1.5;
}
.il-list li:last-child { border-bottom: none; }
.il-list a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.il-list a:hover { color: #e63946; text-decoration: underline; }
@media (max-width: 768px) {
    .il-grid { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════════════════════════ */
