/* 
    Mamta Roadlines - Optimized Custom Styles
    Safe performance update without changing existing structure
*/

:root {
    --primary-red: #C8102E;
    --dark-navy: #0E1A24;
    --navy-bg: #0E1A24;
    --text-color: #1A1A1A;
    --bg-grey: #F5F6F8;
    --light-grey: #F5F6F8;
    --white: #FFFFFF;
    --grey-text: #5f6670;
    --font-main: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --transition: all 0.28s ease;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --radius: 12px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-navy);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
}

p {
    margin-top: 0;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(200, 16, 46, 0.18);
    outline-offset: 2px;
}

/* Section Spacing */
.section-padding {
    padding: 100px 0;
}

.bg-grey {
    background-color: var(--bg-grey);
}

/* Utility Classes */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mt-80 { margin-top: 80px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.w-full { width: 100%; }
.text-center { text-align: center; }
.text-red { color: var(--primary-red); }
.bg-light { background: var(--bg-grey); }
.rounded { border-radius: 12px; }
.img-responsive { width: 100%; height: auto; display: block; }
.shadow-lg { box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.align-center { align-items: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    will-change: transform;
}

.btn-red {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-red:hover,
.btn-red:focus-visible {
    background-color: #A00D25;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 16, 46, 0.22);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.9);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background-color: var(--white);
    color: var(--primary-red);
}

/* Header & Nav */
.top-bar {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

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

.top-bar-left {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.top-bar-left a {
    opacity: 0.95;
}

.top-bar-left a:hover,
.top-bar-left a:focus-visible {
    opacity: 1;
    color: #ffffff;
    text-decoration: underline;
}

.main-header {
    background-color: var(--white);
    padding: 16px 0;
    position: relative;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.logo-img img {
    width: auto;
    max-width: 280px;
    height: auto;
}

.logo-icon {
    background-color: var(--primary-red);
    color: var(--white);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 28px;
    border-radius: 6px;
}

.brand-name {
    font-weight: 800;
    font-size: 22px;
    line-height: 1;
    color: var(--dark-navy);
}

.brand-sub {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #5c6470;
    text-transform: uppercase;
    line-height: 1.4;
}

.desktop-nav ul {
    display: flex;
    gap: 28px;
    align-items: center;
}

.desktop-nav ul li {
    position: relative;
}

.desktop-nav ul li a {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-navy);
    display: inline-block;
    padding: 8px 0;
}

.desktop-nav ul li a:hover,
.desktop-nav ul li a.active,
.desktop-nav ul li a[aria-current="page"] {
    color: var(--primary-red);
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    border-top: 3px solid var(--primary-red);
    z-index: 30;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    line-height: 1.45;
}

.dropdown li a:hover,
.dropdown li a:focus-visible {
    background: var(--bg-grey);
    color: var(--primary-red);
}

/* Hero Section */
.hero-section {
    background:
        linear-gradient(rgba(14, 26, 36, 0.82), rgba(14, 26, 36, 0.82)),
        url('https://mamtaroadlines.co.in/assets/img/mamta_roadlines.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 110px;
    color: var(--white);
}

.hero-content {
    max-width: 700px;
}

.hero-subtitle {
    display: inline-block;
    background: var(--primary-red);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 22px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4.1rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 22px;
    color: var(--white);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 34px;
    opacity: 0.95;
    max-width: 680px;
}

.hero-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Stats Section */
.stats-section {
    margin-top: -48px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    padding: 42px 34px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    text-align: center;
    gap: 18px;
}

.stat-item h2,
.stat-item h3 {
    font-size: 44px;
    color: var(--primary-red);
    margin-bottom: 6px;
    line-height: 1;
}

.stat-item p {
    font-size: 14px;
    font-weight: 700;
    color: var(--grey-text);
    text-transform: uppercase;
    margin-bottom: 0;
}

/* Split Grid */
.split-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 60px;
    align-items: start;
}

.split-left h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.split-left p {
    margin-bottom: 25px;
    color: var(--grey-text);
    font-size: 16px;
}

/* Bullet List */
.bullet-list { list-style: none; padding: 0; }
.bullet-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}
.bullet-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 800;
    font-size: 18px;
}

/* Quote Card & Form */
.quote-card {
    background: var(--white);
    padding: 34px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}

.quote-card h2,
.quote-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.quote-card p {
    font-size: 14px;
    color: var(--grey-text);
    margin-bottom: 26px;
}

.form-group { margin-bottom: 16px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 50px;
    padding: 14px 18px;
    border: 1px solid #d8dde3;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    background: #fff;
    color: #1a1a1a;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #707784;
    opacity: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
    outline: none;
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.08);
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 36px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 42px;
    margin-bottom: 22px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--grey-text);
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-red);
    font-weight: 700;
}

.read-more:hover,
.read-more:focus-visible {
    text-decoration: underline;
}

/* Premium FAQ Section */
.faq-section-wrapper {
    padding: 100px 0;
    background-color: #F5F6F8;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    gap: 60px;
    align-items: start;
}

.faq-left .trust-label {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.faq-left h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #1A1A1A;
    margin-bottom: 25px;
}

.faq-left p {
    font-size: 16px;
    color: var(--grey-text);
    line-height: 1.6;
    margin-bottom: 35px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 0 solid var(--primary-red);
}

.faq-card.active {
    border-left-width: 5px;
    background-color: #FFF7F7;
}

.faq-header {
    width: 100%;
    padding: 22px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    border: 0;
    background: transparent;
    text-align: left;
    color: inherit;
}

.faq-header span:first-child,
.faq-header h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
    padding-right: 16px;
    line-height: 1.4;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: #F5F6F8;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-red);
    color: #fff;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-card.active .faq-body {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-body p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--grey-text);
    margin: 0;
}

/* Footer */
.main-footer {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 90px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 44px;
}

.footer-col h2,
.footer-col h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 26px;
    position: relative;
}

.footer-col h2::after,
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
}

.footer-col p,
.footer-col li,
.footer-bottom,
.footer-col a {
    color: rgba(255,255,255,0.86);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a:hover,
.footer-col ul li a:focus-visible {
    opacity: 1;
    color: #fff;
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    min-height: 46px;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 64px;
    padding: 26px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
}

.city-links a:hover,
.city-links a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: #fff;
    text-decoration: underline;
}

/* Authority Section */
.authority-section {
    background-color: #F5F6F8;
    padding: 90px 0;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-red {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.authority-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--dark-navy);
}

.authority-content p {
    font-size: 17px;
    color: var(--grey-text);
    margin-bottom: 30px;
}

.authority-list {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
}

.authority-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-navy);
    font-size: 16px;
}

.authority-list li .check-icon {
    color: var(--primary-red);
    font-weight: 900;
}

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

.authority-image-wrapper img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.expert-card {
    background: var(--white);
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-top: 20px;
    border-left: 4px solid var(--primary-red);
}

.expert-card h3,
.expert-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.expert-card p {
    font-size: 14px;
    color: var(--grey-text);
    margin-bottom: 10px;
}

.expert-card .phone-link {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 20px;
}

/* IBA Verification Portal Section */
.iba-portal-section {
    padding: 90px 0;
    background-color: var(--white);
}

.iba-portal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.iba-portal-left h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-navy);
}

.iba-portal-left .subheading {
    font-size: 18px;
    color: var(--grey-text);
    margin-bottom: 34px;
}

.verify-steps-box h3,
.verify-steps-box h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-navy);
}

.verify-steps-list {
    list-style: none;
    padding: 0;
    margin-bottom: 34px;
}

.verify-steps-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.verify-steps-list li span.step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.iba-highlights {
    background: var(--bg-grey);
    padding: 25px;
    border-radius: 12px;
}

.iba-highlights p {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 15px;
}

.iba-highlights p:last-child {
    margin-bottom: 0;
}

.iba-highlights p span {
    color: var(--primary-red);
}

.iba-result-card {
    background: var(--dark-navy);
    color: white;
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.iba-result-card h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.result-table-preview {
    margin-bottom: 30px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 14px;
}

.result-row .label {
    opacity: 0.72;
}

.result-row .value {
    font-weight: 600;
    text-align: right;
}

.iba-disclaimer {
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.72;
    font-style: italic;
}

/* Premium Creative Section */
.premium-creative-section {
    padding: 100px 0;
    background-color: #F5F6F8;
}

.creative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.creative-left h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-navy);
}

.authority-text {
    font-size: 18px;
    color: var(--grey-text);
    margin-bottom: 34px;
    line-height: 1.6;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.feature-card {
    background: var(--white);
    padding: 24px 22px 24px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--primary-red);
}

.feature-card h3,
.feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.4;
    margin: 0;
}

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

.rounded-16 {
    border-radius: 16px;
}

.floating-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background-color: var(--primary-red);
    color: white;
    padding: 12px 25px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(200, 16, 46, 0.3);
    z-index: 2;
    transform: rotate(3deg);
}

/* Shifting Process Section */
.shifting-process-section {
    padding: 100px 0;
    background-color: var(--bg-grey);
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    position: relative;
}

.process-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.step-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-red);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(200, 16, 46, 0.3);
}

.process-image {
    height: 180px;
    overflow: hidden;
    background: #e9edf1;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.process-card:hover .process-image img {
    transform: scale(1.06);
}

.process-body {
    padding: 22px;
}

.process-body h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-navy);
}

.process-body p {
    font-size: 14px;
    color: var(--grey-text);
    line-height: 1.55;
    margin-bottom: 15px;
}

.iba-note {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--primary-red);
    background: rgba(200, 16, 46, 0.05);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
}

.process-cta-band {
    background: var(--dark-navy);
    padding: 34px;
    border-radius: 16px;
    margin-bottom: 50px;
}

.cta-flex {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.process-enquiry-form {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.grid-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-section { padding: 110px 0 100px; }
    .desktop-nav ul { gap: 20px; }
}

@media (max-width: 992px) {
    .top-bar-content,
    .header-inner,
    .authority-grid,
    .iba-portal-grid,
    .creative-grid,
    .faq-grid,
    .split-grid {
        grid-template-columns: 1fr;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar-left {
        gap: 10px 18px;
    }

    .desktop-nav { display: none; }

    .hero-section {
        padding: 90px 0 80px;
        background-position: center center;
    }

    .hero-content h1 { font-size: 48px; }

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

    .authority-grid,
    .iba-portal-grid,
    .creative-grid,
    .faq-grid {
        display: grid;
        gap: 40px;
    }

    .premium-creative-section,
    .authority-section,
    .iba-portal-section,
    .faq-section-wrapper,
    .shifting-process-section,
    .section-padding {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding: 80px 0 74px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .quote-card {
        padding: 24px 20px;
    }

    .stats-section {
        margin-top: -26px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        padding: 26px 18px;
    }

    .services-grid,
    .process-grid,
    .grid-form,
    .feature-cards-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .faq-section-wrapper {
        padding: 60px 0;
    }

    .faq-left h2,
    .iba-portal-left h2,
    .creative-left h2,
    .authority-content h2 {
        font-size: 30px;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .process-enquiry-form {
        padding: 28px 18px;
    }

    .process-cta-band {
        padding: 24px 18px;
    }

    .footer-bottom {
        font-size: 13px;
    }

    .result-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .result-row .value {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .brand-sub {
        letter-spacing: 1.2px;
        font-size: 10px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .service-card,
    .feature-card,
    .process-body,
    .iba-result-card {
        padding-left: 18px;
        padding-right: 18px;
    }
}