@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

.driving-site-header,
.driving-site-header *,
.driving-site-header a,
.driving-site-header button {
    font-family: "Outfit", sans-serif;
    box-sizing: border-box;
}

.driving-site-header {
    width: 100%;
    position: relative;
    z-index: 9999;
    background: #ffffff;
}

.driving-header-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

.driving-topbar {
    width: 100%;
    min-height: 42px;
    background: #292929;
    color: #ffffff;
}

.driving-topbar .driving-header-container {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.driving-topbar-left {
    display: flex;
    align-items: center;
    gap: 28px;
    min-width: 0;
}

.driving-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
}

.driving-topbar-item i {
    color: #c49a5a;
    font-size: 11px;
}

.driving-topbar-item:hover {
    color: #c49a5a;
}

.driving-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.driving-follow-text {
    margin-right: 5px;
    color: #dddddd;
    font-size: 11px;
}

.driving-topbar-right a {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 11px;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.driving-topbar-right a:hover {
    color: #ffffff;
    background: #9b7949;
}

.driving-navbar {
    width: 100%;
    height: 75px;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 9998;
    transition: box-shadow 0.3s ease;
}

.driving-navbar.is-scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.driving-navbar > .driving-header-container {
    height: 100%;
}

.driving-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.driving-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.driving-logo img {
    display: block;
    width: 115px;
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.driving-navigation {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.driving-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.driving-nav-item {
    position: relative;
    margin: 0;
    padding: 0;
}

.driving-nav-item a {
    position: relative;
    height: 75px;
    display: inline-flex;
    align-items: center;
    color: #222222;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.driving-nav-item a:hover {
    color: #9b7949;
}

.driving-nav-item.active a {
    color: #9b7949;
}

.driving-nav-item.active a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 22px;
    width: 24px;
    height: 2px;
    background: #9b7949;
    transform: translateX(-50%);
    border-radius: 10px;
}

.driving-header-action {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.driving-book-button {
    min-width: 140px;
    height: 43px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #9b7949;
    color: #ffffff;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.driving-book-button:hover {
    background: #806238;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(155, 121, 73, 0.22);
}

.driving-mobile-button {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: 12px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
}

.driving-mobile-button span {
    width: 24px;
    height: 2px;
    display: block;
    background: #222222;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.driving-mobile-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.driving-mobile-button.active span:nth-child(2) {
    opacity: 0;
}

.driving-mobile-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1250px) {

    .driving-header-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .driving-nav-list {
        gap: 20px;
    }

    .driving-navigation {
        margin: 0 auto;
    }

    .driving-nav-item a {
        font-size: 12px;
    }

    .driving-book-button {
        min-width: 140px;
    }
}

@media (max-width: 1050px) {

    .driving-header-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .driving-navbar {
        height: 78px;
    }

    .driving-logo img {
        width: 105px;
    }

    .driving-navigation {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        padding: 10px 20px 15px;
        background: #ffffff;
        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #eeeeee;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .driving-navigation.active {
        display: block;
    }

    .driving-nav-list {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .driving-nav-item {
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
    }

    .driving-nav-item:last-child {
        border-bottom: none;
    }

    .driving-nav-item a {
        width: 100%;
        height: auto;
        min-height: 48px;
        padding: 13px 5px;
        display: flex;
        align-items: center;
        font-size: 13px;
    }

    .driving-nav-item.active a::after {
        display: none;
    }

    .driving-mobile-button {
        display: flex;
    }
}

@media (max-width: 767px) {

    .driving-topbar {
        display: none !important;
    }

    .driving-header-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .driving-navbar {
        height: 72px;
    }

    .driving-navbar > .driving-header-container {
        min-width: 0;
    }

    .driving-logo {
        min-width: 0;
        flex: 0 0 auto;
    }

    .driving-logo img {
        width: 100px;
        max-height: 55px;
    }

    .driving-header-action {
        margin-left: auto;
    }

    .driving-book-button {
        min-width: 125px;
        height: 38px;
        padding: 0 14px;
        font-size: 13px;
    }

    .driving-mobile-button {
        width: 40px;
        height: 40px;
        margin-left: 8px;
    }

    .driving-navigation {
        top: 72px;
        padding: 10px 18px 16px;
    }

    .driving-nav-item a {
        font-size: 15px;
        min-height: 48px;
    }
}

@media (max-width: 520px) {

    .driving-header-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .driving-navbar {
        height: 68px;
    }

    .driving-logo img {
        width: 90px;
        max-height: 50px;
    }

    .driving-book-button {
        min-width: 110px;
        height: 36px;
        padding: 0 12px;
        font-size: 12.5px;
    }

    .driving-mobile-button {
        width: 38px;
        height: 38px;
        margin-left: 6px;
    }

    .driving-mobile-button span {
        width: 22px;
    }

    .driving-navigation {
        top: 68px;
    }

    .driving-nav-item a {
        min-height: 46px;
        padding: 10px 5px;
        font-size: 15px;
    }
}

@media (max-width: 400px) {

    .driving-navbar {
        height: 64px;
    }

    .driving-logo img {
        width: 82px;
        max-height: 45px;
    }

    .driving-book-button {
        min-width: 100px;
        height: 34px;
        padding: 0 10px;
        font-size: 12px;
    }

    .driving-mobile-button {
        width: 36px;
        height: 36px;
        margin-left: 5px;
    }

    .driving-mobile-button span {
        width: 20px;
    }

    .driving-navigation {
        top: 64px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .driving-nav-item a {
        font-size: 14.5px;
        min-height: 44px;
    }
}

@media (max-width: 340px) {

    .driving-header-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .driving-logo img {
        width: 75px;
    }

    .driving-book-button {
        min-width: 90px;
        padding: 0 8px;
        font-size: 11.5px;
    }

    .driving-mobile-button {
        width: 34px;
        margin-left: 4px;
    }

    .driving-mobile-button span {
        width: 18px;
    }
}

















@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

.drive-hero {
    position: relative;
    width: 100%;
    max-height: 520px;
    overflow: hidden;
    background: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.drive-hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/banner/defender.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.drive-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.94) 28%,
        rgba(255, 255, 255, 0.72) 45%,
        rgba(255, 255, 255, 0.18) 67%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
}

.drive-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    min-height: 520px;
    margin: 0 auto;
    padding: 0 55px;
    display: flex;
    align-items: center;
}

.drive-hero-content {
    width: 55%;
    position: relative;
    z-index: 3;
    padding: 60px 0;
}

.drive-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    margin-bottom: 22px;
    background: rgba(244, 240, 233, 0.94);
    border: 1px solid rgba(154, 118, 75, 0.12);
    border-radius: 30px;
    color: #79664d;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.drive-hero-tag span {
    color: #9a764b;
}

.drive-hero-title {
    margin: 0;
    color: #171717;
    font-size: 57px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -2.2px;
}

.drive-hero-title span {
    color: #98744a;
}

.drive-hero-description {
    margin: 25px 0 28px;
    color: #3f3f3f;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}

.drive-hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.drive-hero-primary,
.drive-hero-secondary {
    min-width: 175px;
    height: 43px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.drive-hero-primary {
    background: #98744a;
    border: 1px solid #98744a;
    color: #ffffff;
}

.drive-hero-primary:hover {
    background: #80603b;
    border-color: #80603b;
    color: #ffffff;
    transform: translateY(-2px);
}

.drive-hero-secondary {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #b9b2a8;
    color: #655744;
}

.drive-hero-secondary:hover {
    background: #98744a;
    border-color: #98744a;
    color: #ffffff;
    transform: translateY(-2px);
}

.drive-hero-buttons i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.drive-hero-primary:hover i,
.drive-hero-secondary:hover i {
    transform: translateX(4px);
}

.drive-hero-features {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 50px;
}

.drive-hero-feature {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.drive-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #806b52;
    font-size: 13px;
}

.drive-hero-feature span {
    color: #3d3d3d;
    font-size: 10px;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .drive-hero-container {
        padding: 0 40px;
    }

    .drive-hero-content {
        width: 58%;
    }

    .drive-hero-title {
        font-size: 49px;
    }

    .drive-hero-features {
        gap: 20px;
    }

    .drive-hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.94) 30%,
            rgba(255, 255, 255, 0.65) 50%,
            rgba(255, 255, 255, 0.1) 75%,
            rgba(255, 255, 255, 0) 100%
        );
    }
}

@media (max-width: 991px) {
    .drive-hero {
        min-height: 650px;
    }

    .drive-hero-container {
        min-height: 650px;
        padding: 55px 30px;
        align-items: flex-start;
    }

    .drive-hero-content {
        width: 65%;
        padding: 25px 0;
    }

    .drive-hero-title {
        font-size: 44px;
    }

    .drive-hero-description {
        font-size: 13px;
    }

    .drive-hero-features {
        flex-wrap: wrap;
        gap: 15px 22px;
        margin-top: 38px;
    }

    .drive-hero-background {
        background-position: 65% center;
    }

    .drive-hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.94) 38%,
            rgba(255, 255, 255, 0.55) 62%,
            rgba(255, 255, 255, 0.08) 100%
        );
    }
}

@media (max-width: 767px) {
    .drive-hero {
        min-height: 680px;
    }

    .drive-hero-container {
        min-height: 680px;
        padding: 45px 20px;
        align-items: flex-start;
    }

    .drive-hero-content {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .drive-hero-tag {
        margin-bottom: 18px;
    }

    .drive-hero-title {
        font-size: 34px;
        line-height: 1.18;
        letter-spacing: -1px;
    }

    .drive-hero-description {
        font-size: 14.5px;
        line-height: 1.6;
        margin: 18px auto 22px;
        max-width: 430px;
    }

    .drive-desktop-break {
        display: none;
    }

    .drive-hero-buttons {
        justify-content: center;
        gap: 12px;
    }

    .drive-hero-primary,
    .drive-hero-secondary {
        min-width: 140px;
        height: 46px;
        padding: 0 18px;
        font-size: 13.5px;
        font-weight: 700;
    }

    .drive-hero-features {
        justify-content: center;
        margin-top: 30px;
        gap: 14px 24px;
    }

    .drive-hero-feature span {
        font-size: 13px;
        font-weight: 600;
    }

    .drive-feature-icon {
        font-size: 14px;
    }

    .drive-hero-background {
        background-position: 68% center;
    }

    .drive-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(255, 255, 255, 0.94) 42%,
            rgba(255, 255, 255, 0.68) 65%,
            rgba(255, 255, 255, 0.25) 100%
        );
    }
}

@media (max-width: 575px) {
    .drive-hero {
        min-height: 490px;
        padding-bottom: 40px;
    }

    .drive-hero-container {
        min-height: auto;
        padding: 30px 16px 0;
    }

    .drive-hero-tag {
        padding: 6px 14px;
        font-size: 11px;
        margin-bottom: 14px;
    }

    .drive-hero-title {
        font-size: 29px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .drive-hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin: 16px auto 20px;
        max-width: 360px;
    }

    .drive-hero-buttons {
        width: 100%;
        gap: 10px;
    }

    .drive-hero-primary,
    .drive-hero-secondary {
        min-width: 0;
        width: 50%;
        height: 44px;
        padding: 0 12px;
        font-size: 13px;
    }

    .drive-hero-features {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 10px;
        margin-top: 24px;
    }

    .drive-hero-feature {
        justify-content: center;
    }

    .drive-hero-feature span {
        font-size: 12.5px;
    }

    .drive-feature-icon {
        font-size: 13.5px;
    }

    .drive-hero-background {
        background-position: 67% bottom;
        background-size: cover;
    }

    .drive-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.96) 38%,
            rgba(255, 255, 255, 0.7) 58%,
            rgba(255, 255, 255, 0.2) 100%
        );
    }
}

@media (max-width: 400px) {
    .drive-hero {
        min-height: 495px;
    }

    .drive-hero-container {
        min-height: auto;
    }

    .drive-hero-title {
        font-size: 27px;
        line-height: 1.22;
    }

    .drive-hero-description {
        font-size: 13.5px;
    }

    .drive-hero-primary,
    .drive-hero-secondary {
        font-size: 12px;
        height: 42px;
        padding: 0 8px;
    }

    .drive-hero-feature span {
        font-size: 11.5px;
    }
}
















@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

.drive-about-section {
    width: 100%;
    padding: 40px 0;
    background: #ffffff;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.drive-about-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.drive-about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 80px;
}

.drive-about-image {
    position: relative;
    width: 100%;
    height: 530px;
}

.drive-about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 18px;
}

.drive-about-image::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -18px;
    bottom: -18px;
    background: #9A764B;
    border-radius: 14px;
    z-index: -1;
}

.drive-about-experience {
    position: absolute;
    left: -35px;
    bottom: 35px;
    width: 145px;
    height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #9A764B;
    border: 7px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 15px 35px rgba(154, 118, 75, 0.22);
}

.drive-about-experience strong {
    display: block;
    margin-bottom: 4px;
    font-size: 32px;
    line-height: 1;
    font-weight: 800;
}

.drive-about-experience span {
    font-size: 11px;
    line-height: 1.5;
    font-weight: 600;
}

.drive-about-content {
    max-width: 600px;
}

.drive-about-label {
    display: inline-block;
    color: #98744a;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.drive-about-title {
    margin: 0 0 18px;
    color: #181716;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.2px;
}

.drive-about-title span {
    color: #98744a;
}

.drive-about-description {
    margin: 0 0 16px;
    color: #6a645c;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.drive-about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.drive-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.drive-about-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(152, 116, 74, 0.1);
    border-radius: 10px;
    color: #98744a;
    font-size: 17px;
}

.drive-about-feature h3 {
    margin: 0 0 4px;
    color: #181716;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.drive-about-feature p {
    margin: 0;
    color: #6a645c;
    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 500;
}

.drive-about-footer {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px;
}

.drive-about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 165px;
    height: 43px;
    padding: 0 8px;
    background: #98744a;
    border: 1px solid #98744a;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(152, 116, 74, 0.28);
}

.drive-about-button:hover {
    background: #6F5638;
    border-color: #6F5638;
    color: #ffffff;
}

.drive-about-button i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.drive-about-button:hover i {
    transform: translateX(4px);
}

.drive-about-contact {
    display: flex;
    align-items: center;
    gap: 11px;
}

.drive-contact-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F4F0E9;
    border-radius: 50%;
    color: #9A764B;
    font-size: 14px;
}

.drive-contact-info span {
    display: block;
    margin-bottom: 3px;
    color: #89847D;
    font-size: 10px;
    font-weight: 500;
}

.drive-contact-info a {
    color: #181818;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.drive-contact-info a:hover {
    color: #9A764B;
}

@media (max-width: 1199px) {
    .drive-about-grid {
        gap: 55px;
    }

    .drive-about-title {
        font-size: 38px;
    }

    .drive-about-image {
        height: 480px;
    }

    .drive-about-experience {
        left: -20px;
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 991px) {
    .drive-about-section {
        padding: 80px 0;
    }

    .drive-about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .drive-about-image {
        width: 100%;
        max-width: 650px;
        height: 480px;
        margin: 0 auto;
    }

    .drive-about-content {
        max-width: 100%;
    }

    .drive-about-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .drive-about-section {
        padding: 65px 0;
    }

    .drive-about-container {
        padding: 0 18px;
    }

    .drive-about-grid {
        gap: 45px;
    }

    .drive-about-image {
        height: 400px;
    }

    .drive-about-image::after {
        width: 85px;
        height: 85px;
        right: -10px;
        bottom: -10px;
    }

    .drive-about-experience {
        left: -8px;
        bottom: 20px;
        width: 115px;
        height: 115px;
        border-width: 5px;
    }

    .drive-about-experience strong {
        font-size: 26px;
    }

    .drive-about-experience span {
        font-size: 11px;
    }

    .drive-about-title {
        font-size: 30px;
        line-height: 1.25;
    }

    .drive-about-description {
        font-size: 14.5px;
        line-height: 1.65;
    }

    .drive-about-features {
        gap: 18px 15px;
    }

    .drive-about-footer {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .drive-about-section {
        padding: 50px 0;
    }

    .drive-about-image {
        height: 320px;
    }

    .drive-about-label {
        font-size: 12px;
    }

    .drive-about-title {
        font-size: 27px;
        line-height: 1.25;
        letter-spacing: -0.5px;
    }

    .drive-about-title span {
        display: inline;
    }

    .drive-about-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .drive-about-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .drive-about-feature h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .drive-about-feature p {
        font-size: 13.5px;
        line-height: 1.55;
    }

    .drive-about-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .drive-about-button {
        width: 100%;
        font-size: 14px;
        height: 46px;
    }
}

@media (max-width: 400px) {
    .drive-about-image {
        height: 280px;
    }

    .drive-about-title {
        font-size: 25px;
    }

    .drive-about-experience {
        width: 100px;
        height: 100px;
    }

    .drive-about-experience strong {
        font-size: 22px;
    }

    .drive-about-experience span {
        font-size: 10px;
    }
}

/* =====================================================
   COUNTER / STATS SECTION
   ===================================================== */
.drive-counter-section {
    width: 100%;
    padding: 30px 0 45px;
    background: #faf8f5;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 2;
}

.drive-counter-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
}

.drive-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.drive-counter-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 20px;
    background: #ffffff;
    border: 1px solid #eae3d8;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.drive-counter-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #98744a;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.drive-counter-item:hover {
    transform: translateY(-4px);
    border-color: rgba(152, 116, 74, 0.5);
    box-shadow: 0 12px 30px rgba(152, 116, 74, 0.14);
}

.drive-counter-item:hover::before {
    opacity: 1;
}

.drive-counter-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.35s ease;
}

.drive-counter-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.drive-counter-item:hover .drive-counter-icon {
    transform: scale(1.06);
}

.drive-counter-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.drive-counter-value {
    margin: 0 0 3px 0;
    color: #98744a;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.8px;
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.drive-counter-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #98744a;
}

.drive-counter-suffix {
    color: #98744a;
    font-size: 23px;
    font-weight: 700;
    margin-left: 2px;
}

.drive-counter-postcodes {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: #98744a;
    gap: 4px;
    align-items: center;
}

.drive-counter-dot {
    color: #cbb493;
    font-size: 13px;
}

.drive-counter-title {
    margin: 0 0 2px 0;
    color: #1a1918;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drive-counter-sub {
    margin: 0;
    color: #7e7870;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1280px) {
    .drive-counter-container {
        padding: 0 20px;
    }

    .drive-counter-grid {
        gap: 15px;
    }

    .drive-counter-item {
        padding: 18px 14px;
        gap: 12px;
    }

    .drive-counter-icon {
        width: 50px;
        height: 50px;
    }

    .drive-counter-value {
        font-size: 25px;
    }

    .drive-counter-postcodes {
        font-size: 16px;
    }

    .drive-counter-suffix {
        font-size: 20px;
    }

    .drive-counter-title {
        font-size: 13px;
    }

    .drive-counter-sub {
        font-size: 11px;
    }
}

@media (max-width: 991px) {
    .drive-counter-section {
        padding: 25px 0 35px;
    }

    .drive-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .drive-counter-item {
        padding: 20px 18px;
    }

    .drive-counter-icon {
        width: 54px;
        height: 54px;
    }

    .drive-counter-value {
        font-size: 27px;
    }

    .drive-counter-postcodes {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .drive-counter-section {
        padding: 20px 0 30px;
    }

    .drive-counter-container {
        padding: 0 16px;
    }

    .drive-counter-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .drive-counter-item {
        padding: 16px 16px;
    }

    .drive-counter-icon {
        width: 48px;
        height: 48px;
    }

    .drive-counter-value {
        font-size: 24px;
    }

    .drive-counter-postcodes {
        font-size: 16px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

.drive-courses-section {
    width: 100%;
    padding: 50px 0 ;
    background: #ffffff;
    font-family: 'Outfit', sans-serif;
    position: relative;
}

.drive-courses-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
}

.drive-courses-heading {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.drive-courses-label {
    display: inline-block;
    color: #98744a;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.drive-courses-title {
    margin: 0 0 14px;
    color: #181716;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.2px;
}

.drive-courses-title span {
    color: #98744a;
}

.drive-courses-description {
    max-width: 620px;
    margin: 0 auto;
    color: #6a645c;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.drive-courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.drive-course-card {
    background: #ffffff;
    border: 1px solid #ebe4d8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.drive-course-card:hover {
    transform: translateY(-7px);
    border-color: #98744a;
    box-shadow: 0 18px 40px rgba(152, 116, 74, 0.16);
}

.drive-course-card.drive-course-featured {
    border-color: rgba(152, 116, 74, 0.45);
    box-shadow: 0 6px 25px rgba(152, 116, 74, 0.1);
}

.drive-course-image {
    position: relative;
    width: 100%;
    height: 195px;
    overflow: hidden;
    background: #ede7dc;
}

.drive-course-img-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.drive-course-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.drive-course-card:hover .drive-course-image img {
    transform: scale(1.08);
}

.drive-course-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.45) 100%
    );
}

.drive-course-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: rgba(24, 23, 22, 0.82);
    backdrop-filter: blur(6px);
    color: #ffffff;
    border-radius: 6px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.drive-badge-gold {
    background: linear-gradient(135deg, #98744a 0%, #b89163 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(152, 116, 74, 0.35);
}

.drive-course-content {
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.drive-course-title-item {
    margin: 0 0 10px;
    color: #181716;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.drive-course-title-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.drive-course-title-item a:hover {
    color: #98744a;
}

.drive-course-desc {
    margin: 0 0 16px;
    color: #6a645c;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
    flex: 1;
    min-height: 66px;
}

.drive-course-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding-top: 14px;
    border-top: 1px dashed #e8e1d5;
}

.drive-course-features span {
    font-size: 13.5px;
    font-weight: 600;
    color: #3b3834;
    display: flex;
    align-items: center;
    gap: 8px;
}

.drive-course-features span i {
    color: #98744a;
    font-size: 12px;
}

.drive-course-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    background: #faf8f5;
    border: 1px solid #e8e1d5;
    border-radius: 8px;
    color: #181716;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.drive-course-button i {
    color: #98744a;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.drive-course-button:hover {
    background: #98744a;
    border-color: #98744a;
    color: #ffffff;
}

.drive-course-button:hover i {
    color: #ffffff;
    transform: translateX(4px);
}

.drive-courses-footer {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.drive-courses-view-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 43px;
    padding: 0 18px;
    background: #98744a;
    border: 1px solid #98744a;
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(152, 116, 74, 0.25);
}

.drive-courses-view-button i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.drive-courses-view-button:hover {
    background: #80603b;
    border-color: #80603b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(152, 116, 74, 0.35);
}

.drive-courses-view-button:hover i {
    transform: translateX(4px);
}

@media (max-width: 1280px) {
    .drive-courses-container {
        padding: 0 20px;
    }

    .drive-courses-grid {
        gap: 18px;
    }

    .drive-course-content {
        padding: 18px 16px 20px;
    }

    .drive-course-title-item {
        font-size: 17px;
    }

    .drive-course-desc {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .drive-courses-section {
        padding: 60px 0 70px;
    }

    .drive-courses-title {
        font-size: 34px;
    }

    .drive-courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .drive-course-image {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .drive-courses-section {
        padding: 50px 0 50px;
    }

    .drive-courses-container {
        padding: 0 16px;
    }

    .drive-courses-heading {
        margin-bottom: 35px;
    }

    .drive-courses-title {
        font-size: 28px;
    }

    .drive-courses-description {
        font-size: 14px;
    }

    .drive-courses-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .drive-course-image {
        height: 210px;
    }

    .drive-course-content {
        padding: 20px 18px 22px;
    }

    .drive-course-title-item {
        font-size: 18px;
    }

    .drive-course-desc {
        min-height: auto;
        font-size: 13.5px;
    }
}


/* =====================================================
   WHY CHOOSE US SECTION
   ===================================================== */
.drive-why-section {
    width: 100%;
    padding: 50px 0;
    background: #faf8f5;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.drive-why-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
}

.drive-why-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: center;
}

/* --- Left Column: Images --- */
.drive-why-images {
    position: relative;
    width: 100%;
    padding: 0;
}

.drive-why-image-main {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background: #e8e2d8;
    aspect-ratio: 4 / 3.6;
}

.drive-why-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.6s ease;
}

.drive-why-images:hover .drive-why-image-main img {
    transform: scale(1.04);
}

.drive-why-image-inset {
    position: absolute;
    top: 10%;
    left: 0;
    width: 44%;
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    border: 6px solid #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.13);
    z-index: 2;
    background: #ffffff;
}

.drive-why-image-inset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.drive-why-accent-strip {
    position: absolute;
    top: 2%;
    left: 10%;
    width: 70px;
    height: 5px;
    background: #98744a;
    border-radius: 4px;
    z-index: 3;
}

.drive-why-play-btn {
    position: absolute;
    bottom: 6%;
    right: 2%;
    width: 80px;
    height: 80px;
    background: #98744a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(152, 116, 74, 0.4);
    z-index: 4;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.drive-why-play-btn::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 8px solid #6b4d2c;
    border-bottom: 8px solid transparent;
}

.drive-why-play-btn:hover {
    background: #80603b;
    transform: scale(1.08);
    box-shadow: 0 16px 34px rgba(152, 116, 74, 0.5);
}

/* --- Right Column: Content --- */
.drive-why-content {
    display: flex;
    flex-direction: column;
}

.drive-why-label {
    display: inline-block;
    color: #98744a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.drive-why-title {
    margin: 0 0 20px;
    color: #181716;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.2px;
    text-transform: capitalize;
}

.drive-why-title span {
    color: #98744a;
}

.drive-why-quote {
    position: relative;
    padding-left: 18px;
    border-left: 4px solid #98744a;
    margin-bottom: 28px;
}

.drive-why-quote p {
    margin: 0;
    color: #625c54;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

/* --- Features Grid --- */
.drive-why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 36px;
}

.drive-why-feature-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.drive-why-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 600;
    color: #242220;
    line-height: 1.35;
}

.drive-why-check {
    color: #98744a;
    font-size: 17px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Footer: Avatars + Button --- */
.drive-why-footer {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 8px;
}

.drive-why-rating-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.drive-why-avatars {
    display: flex;
    align-items: center;
}

.drive-why-avatars img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2.5px solid #ffffff;
    object-fit: cover;
    margin-left: -12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.drive-why-avatars img:first-child {
    margin-left: 0;
}

.drive-why-rating-info {
    display: flex;
    flex-direction: column;
}

.drive-why-rating-info strong {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    color: #181716;
    letter-spacing: -0.5px;
}

.drive-why-rating-info span {
    font-size: 12.5px;
    font-weight: 600;
    color: #787168;
    margin-top: 3px;
}

.drive-why-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 43px;
    padding: 0 18px;
    background: #98744a;
    border: 1px solid #98744a;
    border-radius: 8px;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(152, 116, 74, 0.28);
}

.drive-why-btn:hover {
    background: #80603b;
    border-color: #80603b;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(152, 116, 74, 0.38);
}

/* --- Responsive Queries --- */
@media (max-width: 1200px) {
    .drive-why-grid {
        gap: 45px;
    }

    .drive-why-title {
        font-size: 34px;
    }

    .drive-why-quote p {
        font-size: 14px;
    }

    .drive-why-feature-item {
        font-size: 13.5px;
    }
}

@media (max-width: 991px) {
    .drive-why-section {
        padding: 55px 0;
    }

    .drive-why-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .drive-why-images {
        max-width: 480px;
        margin: 0 auto;
        padding: 0;
    }

    .drive-why-image-main {
        width: 100%;
        height: auto;
        aspect-ratio: unset;
        max-height: none;
        border-radius: 18px;
    }

    .drive-why-image-main img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .drive-why-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .drive-why-section {
        padding: 45px 0;
    }

    .drive-why-container {
        padding: 0 16px;
    }

    .drive-why-images {
        max-width: 100%;
        margin: 0 auto 15px;
        padding: 0;
    }

    .drive-why-image-main {
        width: 100%;
        height: auto;
        aspect-ratio: unset;
        max-height: none;
        border-radius: 16px;
    }

    .drive-why-image-main img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .drive-why-title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .drive-why-section {
        padding: 40px 0;
    }

    .drive-why-container {
        padding: 0 16px;
    }

    .drive-why-images {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 15px;
        padding: 0;
    }

    .drive-why-image-main {
        width: 100%;
        height: auto;
        aspect-ratio: unset;
        max-height: none;
        border-radius: 16px;
    }

    .drive-why-image-main img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .drive-why-title {
        font-size: 26px;
    }

    .drive-why-quote p {
        font-size: 13.5px;
    }

    .drive-why-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    .drive-why-feature-col {
        gap: 12px;
    }

    .drive-why-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .drive-why-btn {
        width: 100%;
    }
}

/* =====================================================
   CALL TO ACTION (MATCHING 9G BRAND THEME)
   ===================================================== */
.drive-cta-section {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 30px 0 50px;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.drive-cta-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

.drive-cta-card {
    position: relative;
    background: #181716;
    border: 1px solid rgba(152, 116, 74, 0.25);
    border-radius: 26px;
    padding: 25px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.drive-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 85% 30%, rgba(152, 116, 74, 0.16) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(152, 116, 74, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.drive-cta-left {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 750px;
}

.drive-cta-title {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.drive-cta-title span {
    color: #98744a;
}

.drive-cta-desc {
    margin: 0;
    color: #b8b0a5;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    max-width: 640px;
}

.drive-cta-right {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.drive-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 43px;
    padding: 0 18px;
    background: #ffffff;
    color: #181716 !important;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.drive-cta-btn i {
    color: #98744a;
    font-size: 14px;
    transition: all 0.35s ease;
}

.drive-cta-btn:hover {
    background: #98744a;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(152, 116, 74, 0.45);
}

.drive-cta-btn:hover i {
    color: #ffffff;
    transform: translateX(4px);
}

/* =====================================================
   OUR PROCESS SECTION (STEPS TO GET LICENCE)
   ===================================================== */
.drive-process-section {
    position: relative;
    width: 100%;
    background: #faf8f5;
    padding: 50px 0;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.drive-process-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Heading */
.drive-process-heading {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.drive-process-label {
    display: inline-block;
    color: #98744a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.drive-process-title {
    margin: 0 0 14px;
    color: #181716;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.2px;
    text-transform: capitalize;
}

.drive-process-title span {
    color: #98744a;
}

.drive-process-subtitle {
    max-width: 620px;
    margin: 0 auto;
    color: #6a645c;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

/* Process Grid */
.drive-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

/* Process Card */
.drive-process-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #ede7dc;
    border-radius: 20px;
    padding: 35px 30px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
}

.drive-process-card:hover {
    transform: translateY(-6px);
    border-color: #98744a;
    box-shadow: 0 18px 40px rgba(152, 116, 74, 0.12);
}

/* Header: Number & Icon */
.drive-process-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.drive-process-number {
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
    color: rgba(152, 116, 74, 0.22);
    font-feature-settings: "tnum";
    letter-spacing: -1px;
    transition: color 0.35s ease;
}

.drive-process-card:hover .drive-process-number {
    color: #98744a;
}

.drive-process-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(152, 116, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.drive-process-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: invert(47%) sepia(26%) saturate(1008%) hue-rotate(355deg) brightness(92%) contrast(87%);
    transition: all 0.35s ease;
}

.drive-process-card:hover .drive-process-icon {
    background: #98744a;
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 6px 16px rgba(152, 116, 74, 0.35);
}

.drive-process-card:hover .drive-process-icon img {
    filter: brightness(0) invert(1);
}

/* Body */
.drive-process-body {
    margin-bottom: 24px;
}

.drive-process-step-title {
    margin: 0 0 12px;
    color: #181716;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.drive-process-step-desc {
    margin: 0;
    color: #554f48;
    font-size: 14.5px;
    line-height: 1.68;
    font-weight: 500;
}

/* Footer Tag */
.drive-process-footer {
    padding-top: 18px;
    border-top: 1px solid #f2ede4;
}

.drive-process-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #98744a;
    font-size: 13px;
    font-weight: 700;
}

.drive-process-tag i {
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(152, 116, 74, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 991px) {
    .drive-cta-card {
        padding: 38px 30px;
        gap: 30px;
    }

    .drive-cta-title {
        font-size: 30px;
    }

    .drive-cta-desc {
        font-size: 14.5px;
    }

    .drive-process-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .drive-process-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .drive-cta-section {
        padding: 20px 0 35px;
    }

    .drive-cta-container {
        padding: 0 16px;
    }

    .drive-cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 22px;
        border-radius: 18px;
        gap: 25px;
    }

    .drive-cta-title {
        font-size: 26px;
    }

    .drive-cta-right,
    .drive-cta-btn {
        width: 100%;
    }

    .drive-process-section {
        padding: 42px 0 45px;
    }

    .drive-process-container {
        padding: 0 16px;
    }

    .drive-process-title {
        font-size: 26px;
    }

    .drive-process-subtitle {
        font-size: 14px;
    }

    .drive-process-card {
        padding: 26px 22px 22px;
    }
}

@media (max-width: 575px) {
    .drive-process-title {
        font-size: 24px;
    }
}

/* =====================================================
   OUR INSTRUCTOR SECTION (SPOTLIGHT DESIGN)
   ===================================================== */
.drive-instructor-section {
    width: 100%;
    padding:50px 0px;
    background: #ffffff;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.drive-instructor-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
}

.drive-instructor-spotlight {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
}

/* --- Left Column: Visual Showcase --- */
.drive-instructor-visual {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.drive-instructor-frame {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
    aspect-ratio: 4 / 4.7;
    background: #ede6da;
}

.drive-instructor-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}



.drive-instructor-frame-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(24, 23, 22, 0.55) 100%);
    pointer-events: none;
}

/* Floating Top Chip */
.drive-instructor-float-top {
    position: absolute;
    top: 6%;
    right: -4%;
    background: #ffffff;
    border: 1px solid #eae2d5;
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    z-index: 3;
}

.drive-float-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #98744a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
}

.drive-instructor-float-top strong {
    display: block;
    font-size: 13.5px;
    font-weight: 800;
    color: #181716;
    line-height: 1.2;
}

.drive-instructor-float-top span {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: #80776d;
    line-height: 1.2;
}

/* Floating Bottom Chip */
.drive-instructor-float-bottom {
    position: absolute;
    bottom: 6%;
    left: -3%;
    background: #181716;
    border-radius: 14px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
    z-index: 3;
    color: #ffffff;
}

.drive-float-num {
    color: #98744a;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.drive-float-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.drive-float-text span {
    display: block;
    font-size: 11px;
    color: #c4b9aa;
    line-height: 1.2;
}

/* --- Right Column: Content & Competence Grid --- */
.drive-instructor-info {
    display: flex;
    flex-direction: column;
}

.drive-instructor-subtitle {
    display: inline-block;
    color: #98744a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.drive-instructor-headline {
    margin: 0 0 16px;
    color: #181716;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.2px;
}

.drive-instructor-headline span {
    color: #98744a;
}

.drive-instructor-lead {
    margin: 0 0 24px;
    color: #6a645c;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

/* 3 Stat Cards Row */
.drive-instructor-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.drive-inst-stat-card {
    padding: 16px 14px;
    background: #faf8f5;
    border: 1px solid #eee7dc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.drive-inst-stat-card:hover {
    background: #ffffff;
    border-color: #98744a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(152, 116, 74, 0.1);
}

.drive-inst-stat-card h4 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #181716;
    line-height: 1.3;
}

.drive-inst-stat-card p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: #7f776d;
    line-height: 1.4;
}

/* Points */
.drive-instructor-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.drive-inst-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 600;
    color: #383430;
    line-height: 1.5;
}

.drive-inst-point i {
    color: #98744a;
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* CTAs */
.drive-instructor-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.drive-instructor-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 43px;
    padding: 0 18px;
    background: #98744a;
    border: 1px solid #98744a;
    border-radius: 8px;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(152, 116, 74, 0.28);
}

.drive-instructor-primary-btn:hover {
    background: #80603b;
    border-color: #80603b;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(152, 116, 74, 0.38);
}

.drive-instructor-primary-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.drive-instructor-primary-btn:hover i {
    transform: translateX(4px);
}

.drive-instructor-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 43px;
    padding: 0 18px;
    background: #25d366;
    border: 1px solid #25d366;
    border-radius: 8px;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.drive-instructor-whatsapp-btn:hover {
    background: #1ebc59;
    border-color: #1ebc59;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
}

.drive-instructor-whatsapp-btn i {
    font-size: 18px;
}

/* --- Responsive Queries --- */
@media (max-width: 1200px) {
    .drive-instructor-spotlight {
        gap: 45px;
    }

    .drive-instructor-headline {
        font-size: 34px;
    }

    .drive-instructor-lead {
        font-size: 14.5px;
    }

    .drive-instructor-float-top {
        right: -2%;
    }

    .drive-instructor-float-bottom {
        left: -2%;
    }
}

@media (max-width: 991px) {
    .drive-instructor-section {
        padding: 60px 0 70px;
    }

    .drive-instructor-spotlight {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .drive-instructor-visual {
        max-width: 440px;
    }

    .drive-instructor-headline {
        font-size: 32px;
    }
}

@media (max-width: 650px) {
    .drive-instructor-stats-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .drive-instructor-section {
        padding: 45px 0 55px;
    }

    .drive-instructor-container {
        padding: 0 16px;
    }

    .drive-instructor-visual {
        padding: 15px 5px;
    }

    .drive-instructor-float-top {
        right: 0;
        top: 2%;
        padding: 8px 12px;
    }

    .drive-instructor-float-bottom {
        left: 0;
        bottom: 2%;
        padding: 10px 16px;
    }

    .drive-instructor-headline {
        font-size: 26px;
    }

    .drive-instructor-lead {
        font-size: 14px;
    }

    .drive-instructor-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .drive-instructor-primary-btn,
    .drive-instructor-whatsapp-btn {
        width: 100%;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* =====================================================
   TESTIMONIALS SECTION (CLEAN THEME MATCHING REFERENCE)
   ===================================================== */
.drive-testimonial-section {
    position: relative;
    width: 100%;
    background: #faf8f5;
    padding: 50px 0 ;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.drive-testimonial-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- Centered Heading --- */
.drive-testimonial-heading {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.drive-testimonial-label {
    display: inline-block;
    color: #98744a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.drive-testimonial-title {
    margin: 0 0 14px;
    color: #181716;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.2px;
    text-transform: capitalize;
}

.drive-testimonial-title span {
    color: #98744a;
}

.drive-testimonial-subtitle {
    max-width: 620px;
    margin: 0 auto;
    color: #6a645c;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

/* --- Slider & Cards --- */
.drive-testimonial-slider {
    width: 100%;
    overflow: hidden;
    padding: 12px 6px 0px;
    margin: -12px -6px 0;
}

.drive-testimonial-slider .swiper-wrapper {
    align-items: stretch;
}

.drive-testimonial-slider .swiper-slide {
    height: auto;
}

/* --- Testimonial Card Style --- */
.drive-testimonial-card {
    position: relative;
    height: 100%;
    padding: 32px 28px 26px;
    background: #ffffff;
    border: 1px solid #ede7dc;
    border-radius: 20px;
    text-align: left;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
}

.drive-testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #dcd3c5;
    box-shadow: 0 18px 40px rgba(152, 116, 74, 0.12);
}

/* Top: User Info & Overlapping Gold Quote Badge */
.drive-testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.drive-testimonial-avatar-wrap {
    position: relative;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
}

.drive-testimonial-avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    background: #ede6da;
    display: block;
}

.drive-testimonial-quote-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #98744a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(152, 116, 74, 0.35);
}

.drive-testimonial-meta {
    display: flex;
    flex-direction: column;
}

.drive-testimonial-name {
    margin: 0 0 3px;
    color: #181716;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
}

.drive-testimonial-role {
    color: #7d756d;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}

/* Body: Testimonial Text */
.drive-testimonial-body {
    margin: 0 0 20px;
    color: #4e4840;
    font-size: 14.5px;
    line-height: 1.7;
    font-weight: 500;
    min-height: 85px;
}

/* Divider */
.drive-testimonial-divider {
    height: 1px;
    width: 100%;
    background: #ede7dc;
    margin-bottom: 16px;
}

/* Footer: Source + Star Rating */
.drive-testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drive-testimonial-source {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 700;
    color: #242220;
}

.drive-testimonial-source i {
    color: #98744a;
    font-size: 15px;
}

.drive-testimonial-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #98744a;
    font-size: 13px;
}

/* Pagination */
.drive-testimonial-pagination {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    display: block;
    text-align: center;
    margin-top: 30px;
}

.drive-testimonial-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    background: #d3c7b8;
    opacity: 1;
    transition: all 0.3s ease;
}

.drive-testimonial-pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 10px;
    background: #98744a;
}

/* --- Responsive Queries --- */
@media (max-width: 1199px) {
    .drive-testimonial-section {
        padding: 60px 0 70px;
    }

    .drive-testimonial-title {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .drive-testimonial-section {
        padding: 50px 0 60px;
    }

    .drive-testimonial-container {
        padding: 0 20px;
    }

    .drive-testimonial-heading {
        margin-bottom: 35px;
    }

    .drive-testimonial-title {
        font-size: 30px;
    }

    .drive-testimonial-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .drive-testimonial-heading {
        margin-bottom: 28px;
    }

    .drive-testimonial-title {
        font-size: 26px;
    }

    .drive-testimonial-card {
        padding: 24px 20px 20px;
    }

    .drive-testimonial-body {
        font-size: 14px;
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .drive-testimonial-section {
        padding: 42px 0 50px;
    }

    .drive-testimonial-container {
        padding: 0 16px;
    }

    .drive-testimonial-title {
        font-size: 24px;
    }

    .drive-testimonial-subtitle {
        font-size: 13.5px;
    }
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */
.drive-gallery-section {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 50px 0;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.drive-gallery-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Heading */
.drive-gallery-heading {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
}

.drive-gallery-label {
    display: inline-block;
    color: #98744a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.drive-gallery-title {
    margin: 0 0 14px;
    color: #181716;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.2px;
    text-transform: capitalize;
}

.drive-gallery-title span {
    color: #98744a;
}

.drive-gallery-subtitle {
    max-width: 620px;
    margin: 0 auto;
    color: #6a645c;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

/* Filter Tabs */
.drive-gallery-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.drive-gallery-filter-btn {
    appearance: none;
    border: 1px solid #e7dfd3;
    background: #ffffff;
    color: #5a544c;
    font-size: 13.5px;
    font-weight: 700;
    font-family: inherit;
    padding: 9px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drive-gallery-filter-btn:hover {
    color: #181716;
    border-color: #98744a;
    background: #faf7f2;
}

.drive-gallery-filter-btn.active {
    background: #98744a;
    color: #ffffff;
    border-color: #98744a;
    box-shadow: 0 4px 14px rgba(152, 116, 74, 0.3);
}

/* Gallery Grid */
.drive-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.drive-gallery-item {
    transition: all 0.4s ease;
}

.drive-gallery-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #181716;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    aspect-ratio: 4 / 3;
}

.drive-gallery-thumb {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.drive-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.drive-gallery-card:hover .drive-gallery-thumb img {
    transform: scale(1.08);
}

/* Gradient Overlay & Information */
.drive-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 23, 22, 0) 30%, rgba(24, 23, 22, 0.88) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 22px;
    box-sizing: border-box;
    transition: all 0.35s ease;
}

.drive-gallery-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 12px;
    background: #98744a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.drive-gallery-card-title {
    margin: 0 0 3px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.drive-gallery-card-meta {
    margin: 0;
    color: #d6cfc5;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
}

/* Bottom CTA */
.drive-gallery-bottom-cta {
    margin-top: 40px;
    padding: 22px 30px;
    background: #faf8f5;
    border: 1px solid #ede6db;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.drive-gallery-bottom-cta p {
    margin: 0;
    color: #181716;
    font-size: 16px;
    font-weight: 700;
}

.drive-gallery-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 24px;
    background: #98744a;
    color: #ffffff !important;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(152, 116, 74, 0.28);
    flex-shrink: 0;
}

.drive-gallery-cta-btn:hover {
    background: #80603b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(152, 116, 74, 0.38);
}

/* Responsive Queries */
@media (max-width: 991px) {
    .drive-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .drive-gallery-title {
        font-size: 30px;
    }

    .drive-gallery-bottom-cta {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .drive-gallery-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .drive-gallery-section {
        padding: 42px 0 45px;
    }

    .drive-gallery-container {
        padding: 0 16px;
    }

    .drive-gallery-title {
        font-size: 26px;
    }

    .drive-gallery-subtitle {
        font-size: 14px;
    }

    .drive-gallery-filters {
        gap: 8px;
        margin-bottom: 25px;
    }

    .drive-gallery-filter-btn {
        padding: 7px 16px;
        font-size: 12.5px;
    }
}

@media (max-width: 575px) {
    .drive-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .drive-gallery-title {
        font-size: 24px;
    }

    .drive-gallery-overlay {
        padding: 18px 16px;
    }

    .drive-gallery-card-title {
        font-size: 16px;
    }
}

.drive-blog-section {
    width: 100%;
    padding: 40px 0;
    background: #faf8f5;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.drive-blog-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

.drive-blog-heading {
    max-width: 680px;
    margin: 0 auto 42px;
    text-align: center;
}

.drive-blog-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: #98744a;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}



.drive-blog-title {
    margin: 0;
    color: #181716;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1.2px;
}

.drive-blog-description {
    max-width: 620px;
    margin: 14px auto 0;
    color: #6a645c;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.drive-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.drive-blog-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #ede7dc;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.drive-blog-card:hover {
    transform: translateY(-7px);
    border-color: #98744a;
    box-shadow: 0 18px 40px rgba(152, 116, 74, 0.12);
}

.drive-blog-image {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #eee9e1;
}

.drive-blog-img-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.drive-blog-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.drive-blog-card:hover .drive-blog-image img {
    transform: scale(1.07);
}

.drive-blog-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 45%,
        rgba(0, 0, 0, 0.25) 100%
    );
    pointer-events: none;
}

.drive-blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    width: 52px;
    height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.12);
}

.drive-blog-date strong {
    color: #98744a;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
}

.drive-blog-date span {
    margin-top: 4px;
    color: #554f48;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.drive-blog-content {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.drive-blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.drive-blog-meta span {
    color: #98744a;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.drive-blog-meta b {
    color: #c4b6a5;
    font-size: 10px;
    font-weight: 600;
}

.drive-blog-card-title {
    margin: 0 0 12px;
    color: #181716;
    font-size: 18.5px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.drive-blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.drive-blog-card-title a:hover {
    color: #98744a;
}

.drive-blog-excerpt {
    margin: 0 0 20px;
    color: #554f48;
    font-size: 14.5px;
    line-height: 1.65;
    font-weight: 500;
}

.drive-blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #181716;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: auto;
}

.drive-blog-read-more span {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(152, 116, 74, 0.12);
    border-radius: 50%;
    color: #98744a;
    transition: all 0.3s ease;
}

.drive-blog-read-more span i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.drive-blog-read-more:hover {
    color: #98744a;
}

.drive-blog-read-more:hover span {
    background: #98744a;
    color: #ffffff;
}

.drive-blog-read-more:hover span i {
    transform: translateX(3px);
}

.drive-blog-pagination {
    display: none;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 25px;
}

.drive-blog-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 4px !important;
    background: #d4c7b8;
    opacity: 1;
}

.drive-blog-pagination .swiper-pagination-bullet-active {
    width: 18px;
    border-radius: 10px;
    background: #98744a;
}

.drive-blog-footer {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.drive-blog-view-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 165px;
    height: 44px;
    padding: 0 22px;
    background: #98744a;
    border: 1px solid #98744a;
    border-radius: 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    transition: all 0.3s ease;
}

.drive-blog-view-button i {
    font-size: 8px;
    transition: transform 0.3s ease;
}

.drive-blog-view-button:hover {
    background: #80603b;
    border-color: #80603b;
    color: #ffffff;
    transform: translateY(-2px);
}

.drive-blog-view-button:hover i {
    transform: translateX(4px);
}

@media (max-width: 1199px) {

    .drive-blog-section {
        padding: 70px 0;
    }

    .drive-blog-image {
        height: 205px;
    }

    .drive-blog-content {
        padding: 21px 20px 23px;
    }

    .drive-blog-card-title {
        font-size: 14px;
    }

}

@media (max-width: 991px) {

    .drive-blog-section {
        padding: 65px 0;
    }

    .drive-blog-container {
        padding: 0 20px;
    }

    .drive-blog-heading {
        margin-bottom: 35px;
    }

    .drive-blog-title {
        font-size: 34px;
    }

    .drive-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .drive-blog-image {
        height: 215px;
    }

}

@media (max-width: 767px) {

    .drive-blog-section {
        padding: 60px 0;
    }

    .drive-blog-container {
        padding: 0 18px;
    }

    .drive-blog-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .drive-blog-heading {
        margin-bottom: 30px;
    }

    .drive-blog-label {
        font-size: 12px;
    }

    .drive-blog-title {
        font-size: 28px;
        letter-spacing: -0.8px;
    }

    .drive-blog-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .drive-blog-image {
        height: 210px;
    }

    .drive-blog-content {
        padding: 20px 18px 22px;
    }

    .drive-blog-card-title {
        font-size: 17px;
    }

    .drive-blog-excerpt {
        font-size: 13.5px;
    }

}

@media (max-width: 575px) {

    .drive-blog-section {
        padding: 45px 0;
    }

    .drive-blog-container {
        padding: 0 16px;
    }

    .drive-blog-title {
        font-size: 25px;
    }

    .drive-blog-description {
        font-size: 13.5px;
    }

    .drive-blog-image {
        height: 195px;
    }

    .drive-blog-date {
        top: 12px;
        left: 12px;
        width: 48px;
        height: 52px;
    }

    .drive-blog-date strong {
        font-size: 16px;
    }

    .drive-blog-content {
        padding: 18px 16px 20px;
    }

    .drive-blog-card-title {
        font-size: 16.5px;
    }

    .drive-blog-excerpt {
        min-height: auto;
        font-size: 13.5px;
    }

    .drive-blog-view-button {
        width: 100%;
        max-width: 210px;
    }

}

@media (max-width: 400px) {

    .drive-blog-title {
        font-size: 23px;
    }

    .drive-blog-image {
        height: 195px;
    }

}


















/* =====================================================
   CONTACT & SERVICE AREAS SECTION
   ===================================================== */
.drive-contact-location-section {
    width: 100%;
    padding: 60px 0;
    background: #ffffff;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.drive-contact-location-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

.drive-contact-location-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 40px;
    align-items: stretch;
}

/* LEFT FORM CARD */
.drive-contact-form-area {
    width: 100%;
    background: #faf8f5;
    border: 1px solid #ede7dc;
    border-radius: 22px;
    padding: 44px 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.drive-contact-heading {
    margin-bottom: 24px;
}

.drive-contact-label {
    display: inline-block;
    color: #98744a;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.drive-contact-title {
    margin: 0;
    color: #181716;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.2px;
}

.drive-contact-title span {
    color: #98744a;
}

.drive-contact-description {
    max-width: 520px;
    margin: 12px 0 0;
    color: #6a645c;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.drive-contact-form {
    width: 100%;
}

.drive-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.drive-contact-field {
    width: 100%;
    margin-bottom: 16px;
}

.drive-contact-field input,
.drive-contact-field textarea {
    width: 100%;
    display: block;
    box-sizing: border-box;
    outline: none;
    background: #ffffff;
    border: 1.5px solid #e4ddd2;
    border-radius: 10px;
    color: #181716;
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.drive-contact-field input {
    height: 50px;
    padding: 0 18px;
}

.drive-contact-field textarea {
    min-height: 110px;
    padding: 14px 18px;
    resize: vertical;
    line-height: 1.65;
}

.drive-contact-field input::placeholder,
.drive-contact-field textarea::placeholder {
    color: #9c958c;
    opacity: 1;
    font-size: 14px;
}

.drive-contact-field input:focus,
.drive-contact-field textarea:focus {
    background: #ffffff;
    border-color: #98744a;
    box-shadow: 0 0 0 3.5px rgba(152, 116, 74, 0.15);
}

.drive-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    padding: 0 30px;
    background: #98744a;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(152, 116, 74, 0.32);
}

.drive-contact-button span {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.drive-contact-button i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.drive-contact-button:hover {
    background: #80603b;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(152, 116, 74, 0.42);
}

.drive-contact-button:hover i {
    transform: translateX(3px);
}

/* RIGHT SIDE (INFO & MAP) */
.drive-contact-right-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.drive-find-area {
    width: 100%;
    background: #faf8f5;
    border: 1px solid #ede7dc;
    border-radius: 22px;
    padding: 38px 36px 32px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
}

.drive-find-heading {
    margin-bottom: 24px;
}

.drive-find-label {
    display: inline-block;
    color: #98744a;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.drive-find-title {
    margin: 0;
    color: #181716;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.2px;
}

.drive-find-title span {
    color: #98744a;
}

.drive-find-description {
    max-width: 520px;
    margin: 10px 0 0;
    color: #6a645c;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.drive-find-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 24px;
}

.drive-find-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.drive-find-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #ede7dc;
    border-radius: 12px;
    color: #98744a;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.drive-find-icon i {
    font-size: 16px;
}

.drive-find-item:hover .drive-find-icon {
    background: #98744a;
    border-color: #98744a;
    color: #ffffff;
    transform: scale(1.06);
}

.drive-find-content {
    min-width: 0;
}

.drive-find-small-title {
    display: block;
    margin-bottom: 4px;
    color: #98744a;
    font-size: 11.5px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.drive-find-content a {
    display: inline-block;
    color: #181716;
    text-decoration: none;
    font-size: 14.5px;
    line-height: 1.6;
    font-weight: 700;
    transition: color 0.3s ease;
}

.drive-find-content a:hover {
    color: #98744a;
}

.drive-find-content p {
    margin: 0;
    color: #554f48;
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 500;
}

.drive-find-content p strong {
    color: #181716;
    font-weight: 700;
}

.drive-contact-map {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #eee9e1;
    border: 1px solid #ede7dc;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

.drive-contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .drive-contact-location-grid {
        gap: 30px;
    }

    .drive-contact-form-area {
        padding: 36px 30px;
    }

    .drive-find-area {
        padding: 32px 28px;
    }

    .drive-contact-title,
    .drive-find-title {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .drive-contact-location-section {
        padding: 55px 0;
    }

    .drive-contact-location-container {
        padding: 0 20px;
    }

    .drive-contact-location-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .drive-contact-form-area {
        padding: 38px 32px;
    }

    .drive-contact-map {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .drive-contact-location-section {
        padding: 45px 0;
    }

    .drive-contact-location-container {
        padding: 0 16px;
    }

    .drive-contact-form-area {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .drive-find-area {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .drive-contact-title {
        font-size: 27px;
    }

    .drive-find-title {
        font-size: 26px;
    }

    .drive-contact-description,
    .drive-find-description {
        font-size: 13.5px;
    }

    .drive-contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .drive-find-details {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .drive-contact-button {
        width: 100%;
    }

    .drive-contact-map {
        height: 250px;
        border-radius: 16px;
    }
}



















@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* =====================================================
   OUR CERTIFICATIONS & ACCREDITATIONS SECTION
   ===================================================== */
.drive-certifications-section {
    width: 100%;
    padding: 55px 0 65px;
    background: #faf8f5;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f0ebe1;
}

.drive-certifications-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

.drive-certifications-heading {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.drive-certifications-label {
    display: inline-block;
    color: #98744a;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.drive-certifications-title {
    margin: 0 0 14px;
    color: #181716;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.2px;
}

.drive-certifications-title span {
    color: #98744a;
}

.drive-certifications-description {
    max-width: 620px;
    margin: 0 auto;
    color: #6a645c;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.drive-certifications-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    align-items: center;
}

.drive-cert-card {
    background: #ffffff;
    border: 1px solid #ede7dc;
    border-radius: 18px;
    height: 110px;
    padding: 0 24px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.025);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    cursor: default;
}

.drive-cert-card:hover {
    transform: translateY(-5px);
    border-color: #98744a;
    box-shadow: 0 14px 30px rgba(152, 116, 74, 0.12);
}

.drive-cert-logo-img {
    max-width: 135px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: all 0.35s ease;
}

.drive-cert-card:hover .drive-cert-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .drive-certifications-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .drive-cert-card:last-child {
        grid-column: 1 / span 3;
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .drive-certifications-section {
        padding: 40px 0 45px;
    }

    .drive-certifications-container {
        padding: 0 16px;
    }

    .drive-certifications-heading {
        margin-bottom: 30px;
    }

    .drive-certifications-title {
        font-size: 28px;
    }

    .drive-certifications-description {
        font-size: 14px;
    }

    .drive-certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .drive-cert-card {
        height: 95px;
        padding: 0 16px;
    }

    .drive-cert-card:last-child {
        grid-column: 1 / span 2;
        max-width: 100%;
    }

    .drive-cert-logo-img {
        max-width: 115px;
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .drive-certifications-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .drive-cert-card:last-child {
        grid-column: auto;
    }
}

/* =====================================================
   FOOTER SECTION
   ===================================================== */
.drive-footer {
    width: 100%;
    background: #181716;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.drive-footer-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

.drive-footer-main {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 0.95fr 1.15fr;
    gap: 50px;
    padding: 50px 0 30px;
}

.drive-footer-brand {
    max-width: 360px;
}

.drive-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 18px;
}

.drive-footer-logo img {
    width: auto;
    max-width: 160px;
    height: auto;
    max-height: 55px;
    display: block;
    object-fit: contain;
}

.drive-footer-description {
    margin: 0;
    color: #b8b0a5;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
}

.drive-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.drive-footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #252320;
    border: 1px solid #35312c;
    border-radius: 50%;
    color: #c3a77f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.drive-footer-social a i {
    font-size: 14px;
}

.drive-footer-social a:hover {
    background: #98744a;
    border-color: #98744a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(152, 116, 74, 0.3);
}

.drive-footer-column {
    min-width: 0;
}

.drive-footer-title {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 12px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.drive-footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2.5px;
    background: #98744a;
    border-radius: 2px;
}

.drive-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.drive-footer-links li {
    margin: 0;
    padding: 0;
}

.drive-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #b8b0a5;
    text-decoration: none;
    font-size: 14.5px;
    line-height: 1.5;
    font-weight: 500;
    transition: all 0.3s ease;
}

.drive-footer-links a i {
    color: #98744a;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.drive-footer-links a:hover {
    color: #ffffff;
}

.drive-footer-links a:hover i {
    transform: translateX(4px);
    color: #cbb493;
}

.drive-footer-contact {
    padding-left: 0;
}

.drive-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.drive-footer-contact-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #252320;
    border: 1px solid #38342f;
    border-radius: 10px;
    color: #98744a;
    transition: all 0.3s ease;
}

.drive-footer-contact-icon i {
    font-size: 14px;
}

.drive-footer-contact-item:hover .drive-footer-contact-icon {
    background: #98744a;
    border-color: #98744a;
    color: #ffffff;
    transform: scale(1.05);
}

.drive-footer-contact-item div {
    min-width: 0;
}

.drive-footer-contact-item small {
    display: block;
    margin-bottom: 3px;
    color: #98744a;
    font-size: 11.5px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.drive-footer-contact-item a {
    color: #e8e2d8;
    text-decoration: none;
    font-size: 14.5px;
    line-height: 1.5;
    font-weight: 600;
    transition: color 0.3s ease;
}

.drive-footer-contact-item a:hover {
    color: #98744a;
}

.drive-footer-contact-item p {
    margin: 0;
    color: #b8b0a5;
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 400;
}

.drive-footer-bottom {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center ;
    gap: 20px;
    border-top: 1px solid #2a2825;
    padding: 15px 0;
}

.drive-footer-bottom p {
    margin: 0;
    color: #8c857b;
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 500;
}

.drive-footer-bottom p span {
    color: #98744a;
}

.drive-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.drive-footer-bottom-links a {
    color: #8c857b;
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.drive-footer-bottom-links a:hover {
    color: #98744a;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .drive-footer-main {
        grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 991px) {
    .drive-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 35px;
        padding: 60px 0 45px;
    }

    .drive-footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .drive-footer-container {
        padding: 0 20px;
    }

    .drive-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 25px;
        padding: 50px 0 40px;
    }

    .drive-footer-brand {
        grid-column: 1 / -1;
    }

    .drive-footer-title {
        font-size: 17px;
    }

    .drive-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 22px 0;
    }
}

@media (max-width: 575px) {
    .drive-footer-container {
        padding: 0 16px;
    }

    .drive-footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 45px 0 35px;
    }

    .drive-footer-brand {
        grid-column: auto;
    }

    .drive-footer-bottom {
        align-items: center;
        text-align: center;
    }

    .drive-footer-bottom-links {
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }
}













.drive-scroll-progress {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e4ddd4;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(65, 48, 30, 0.12);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s ease;
    z-index: 9999;
}

.drive-scroll-progress.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drive-scroll-progress:hover {
    background: #98744a;
    border-color: #98744a;
    transform: translateY(-3px);
}

.drive-scroll-progress-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.drive-scroll-progress-path {
    fill: none;
    stroke: #98744a;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 307.919;
    stroke-dashoffset: 307.919;
    transition: stroke-dashoffset 0.1s linear;
}

.drive-scroll-progress:hover .drive-scroll-progress-path {
    stroke: #ffffff;
}

.drive-scroll-progress::after {
    content: "\f062";
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #98744a;
    font-family: "Font Awesome 6 Free";
    font-size: 11px;
    font-weight: 900;
    transform: translate(-50%, -50%);
    transition: color 0.3s ease;
    pointer-events: none;
}

.drive-scroll-progress:hover::after {
    color: #ffffff;
}

@media (max-width: 767px) {

    .drive-scroll-progress {
        right: 18px;
        bottom: 18px;
        width: 40px;
        height: 40px;
    }

    .drive-scroll-progress-path {
        stroke-width: 4;
    }

    .drive-scroll-progress::after {
        font-size: 10px;
    }

}

@media (max-width: 575px) {

    .drive-scroll-progress {
        right: 15px;
        bottom: 15px;
        width: 38px;
        height: 38px;
    }

}

/* =====================================================
   OUR MISSION, VISION & GOALS SECTION
   ===================================================== */
.drive-mv-section {
    width: 100%;
    padding: 50px 0;
    background: #faf8f5;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f0ebe1;
}

.drive-mv-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

.drive-mv-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.drive-mv-label {
    display: inline-block;
    color: #98744a;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.drive-mv-title {
    margin: 0 0 14px;
    color: #181716;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.2px;
}

.drive-mv-title span {
    color: #98744a;
}

.drive-mv-description {
    max-width: 620px;
    margin: 0 auto;
    color: #6a645c;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.drive-mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.drive-mv-card {
    background: #ffffff;
    border: 1px solid #ede7dc;
    border-radius: 20px;
    padding: 38px 30px 34px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.drive-mv-card:hover {
    transform: translateY(-6px);
    border-color: #98744a;
    box-shadow: 0 16px 36px rgba(152, 116, 74, 0.12);
}

.drive-mv-featured {
    border-color: #98744a;
    background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 100%);
    box-shadow: 0 12px 30px rgba(152, 116, 74, 0.08);
}

.drive-mv-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.drive-mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(152, 116, 74, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.drive-mv-card:hover .drive-mv-icon {
    background: #98744a;
    transform: scale(1.06);
}

.drive-mv-card:hover .drive-mv-icon svg circle[stroke="#181716"],
.drive-mv-card:hover .drive-mv-icon svg path[stroke="#181716"] {
    stroke: #ffffff;
}

.drive-mv-card:hover .drive-mv-icon svg circle[stroke="#98744a"],
.drive-mv-card:hover .drive-mv-icon svg path[stroke="#98744a"] {
    stroke: #ffffff;
}

.drive-mv-card:hover .drive-mv-icon svg circle[fill="#98744a"] {
    fill: #ffffff;
}

.drive-mv-badge {
    font-size: 11px;
    font-weight: 700;
    color: #98744a;
    background: rgba(152, 116, 74, 0.1);
    border-radius: 20px;
    padding: 4px 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.drive-mv-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #181716;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.drive-mv-card-text {
    font-size: 14.5px;
    color: #625c54;
    line-height: 1.65;
    font-weight: 500;
    margin: 0 0 24px;
}

.drive-mv-list {
    list-style: none;
    padding: 0;
    margin: auto 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #f0ebe1;
    padding-top: 20px;
}

.drive-mv-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: #242220;
    line-height: 1.4;
}

.drive-mv-check-svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .drive-mv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .drive-mv-card:last-child {
        grid-column: 1 / span 2;
        max-width: 580px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .drive-mv-section {
        padding: 55px 0 60px;
    }

    .drive-mv-container {
        padding: 0 16px;
    }

    .drive-mv-heading {
        margin-bottom: 35px;
    }

    .drive-mv-title {
        font-size: 28px;
    }

    .drive-mv-description {
        font-size: 14px;
    }

    .drive-mv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .drive-mv-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .drive-mv-card {
        padding: 28px 20px 24px;
    }

    .drive-mv-card-title {
        font-size: 20px;
    }
}

/* =====================================================
   BLOG DETAILS - SIDEBAR CTA & RECENT POSTS WIDGETS
   ===================================================== */
.rts-single-wized.contact {
    background: #181716 !important;
    border: 1px solid rgba(152, 116, 74, 0.25) !important;
    border-radius: 18px !important;
    padding: 38px 28px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.35s ease !important;
    margin-top: 30px;
}

.rts-single-wized.contact:hover {
    border-color: rgba(152, 116, 74, 0.48) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
}

.rts-single-wized.contact .wized-header {
    margin-bottom: 20px;
}

.rts-single-wized.contact .wized-header img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.rts-single-wized.contact .wized-body .title {
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    margin-bottom: 24px !important;
    letter-spacing: -0.01em;
}

.rts-single-wized.contact .wized-body a.rts-btn,
.rts-single-wized.contact .wized-body .rts-btn.btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #98744a !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 12px 30px !important;
    border-radius: 8px !important;
    border: 1px solid #98744a !important;
    text-decoration: none !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 14px rgba(152, 116, 74, 0.28) !important;
}

.rts-single-wized.contact .wized-body a.rts-btn:hover,
.rts-single-wized.contact .wized-body .rts-btn.btn-primary:hover {
    background: #84643e !important;
    border-color: #84643e !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(152, 116, 74, 0.42) !important;
}

.rts-single-wized.Recent-post {
    background: #ffffff;
    border: 1px solid #ede8e1;
    border-radius: 18px;
    padding: 30px 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.rts-single-wized.Recent-post .wized-header .title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #181716;
    font-size: 20px;
    margin-bottom: 20px;
}

.rts-single-wized.Recent-post .recent-post-single {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f2eee8;
}

.rts-single-wized.Recent-post .recent-post-single:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rts-single-wized.Recent-post .recent-post-single .thumbnail {
    flex-shrink: 0;
    width: 76px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.rts-single-wized.Recent-post .recent-post-single .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rts-single-wized.Recent-post .recent-post-single:hover .thumbnail img {
    transform: scale(1.08);
}

.rts-single-wized.Recent-post .recent-post-single .post-title .title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #181716;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.rts-single-wized.Recent-post .recent-post-single .post-title:hover .title {
    color: #98744a;
}

/* =====================================================
   COURSE DETAILS - HERO & MAIN CONTENT
   ===================================================== */
.drive-cd-hero-section {
    padding: 50px 0 ;
    background: #ffffff;
    position: relative;
}

.drive-cd-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.drive-cd-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 55px;
    align-items: center;
}

.drive-cd-image-col {
    position: relative;
}

.drive-cd-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #181716;
}

.drive-cd-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.drive-cd-image-wrapper:hover img {
    transform: scale(1.04);
}

.drive-cd-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(24, 23, 22, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(152, 116, 74, 0.35);
    padding: 12px 20px;
    border-radius: 12px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.drive-cd-badge i {
    color: #98744a;
    font-size: 16px;
}

.drive-cd-content-col {
    display: flex;
    flex-direction: column;
}

.drive-cd-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #98744a;
    background: rgba(152, 116, 74, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    width: fit-content;
}

.drive-cd-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    color: #181716;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.drive-cd-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #55524e;
    margin-bottom: 28px;
}

.drive-cd-desc p {
    margin-bottom: 14px;
}

.drive-cd-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.drive-cd-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #faf8f5;
    border: 1px solid #f0eae1;
    padding: 14px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.drive-cd-feature-item:hover {
    background: #ffffff;
    border-color: #98744a;
    box-shadow: 0 6px 18px rgba(152, 116, 74, 0.12);
}

.drive-cd-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(152, 116, 74, 0.15);
    color: #98744a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.drive-cd-feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #181716;
}

.drive-cd-btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.drive-cd-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #98744a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(152, 116, 74, 0.3);
}

.drive-cd-book-btn:hover {
    background: #84643e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(152, 116, 74, 0.4);
}

.drive-cd-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: #181716;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid #e0d8cc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.drive-cd-call-btn:hover {
    border-color: #98744a;
    color: #98744a;
    background: rgba(152, 116, 74, 0.05);
}

/* =====================================================
   COURSE DETAILS - FAQ SECTION
   ===================================================== */
.drive-faq-section {
    padding: 95px 0;
    background: #faf8f5;
    position: relative;
}

.drive-faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.drive-faq-heading {
    text-align: center;
    margin-bottom: 50px;
}

.drive-faq-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #98744a;
    background: rgba(152, 116, 74, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.drive-faq-title {
    font-size: 38px;
    font-weight: 800;
    color: #181716;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.drive-faq-title span {
    color: #98744a;
}

.drive-faq-subtitle {
    font-size: 16px;
    color: #66635f;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.65;
}

.drive-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drive-faq-card {
    background: #ffffff;
    border: 1px solid #ede8df;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.drive-faq-card.active {
    border-color: #98744a;
    box-shadow: 0 10px 30px rgba(152, 116, 74, 0.12);
}

.drive-faq-question {
    width: 100%;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #181716;
    transition: color 0.3s ease;
}

.drive-faq-question:hover {
    color: #98744a;
}

.drive-faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #faf8f5;
    border: 1px solid #e8e2d8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #98744a;
    font-size: 12px;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.drive-faq-card.active .drive-faq-icon {
    background: #98744a;
    border-color: #98744a;
    color: #ffffff;
    transform: rotate(180deg);
}

.drive-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 26px;
    color: #55524e;
    font-size: 15px;
    line-height: 1.7;
}

.drive-faq-card.active .drive-faq-answer {
    padding-bottom: 24px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .drive-cd-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .drive-cd-image-wrapper img {
        height: 380px;
    }

    .drive-cd-title {
        font-size: 30px;
    }

    .drive-faq-title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .drive-cd-features-grid {
        grid-template-columns: 1fr;
    }

    .drive-cd-image-wrapper img {
        height: 280px;
    }

    .drive-cd-badge {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 10px 14px;
        font-size: 12px;
    }

    .drive-faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }

    .drive-faq-answer {
        padding: 0 20px;
    }

    .drive-faq-card.active .drive-faq-answer {
        padding-bottom: 20px;
    }
}

/* =====================================================
   GLOBAL MOBILE TYPOGRAPHY & READABILITY ENHANCEMENTS
   ===================================================== */
@media (max-width: 768px) {
    /* Prevent iOS auto zoom on input focus */
    .drive-contact-form input,
    .drive-contact-form textarea,
    .drive-contact-field input,
    .drive-contact-field textarea {
        font-size: 16px !important;
    }

    /* Breadcrumbs */
    .rts-breadcrumb-area .title {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }

    .rts-breadcrumb-area .bread-tag,
    .rts-breadcrumb-area .bread-tag a {
        font-size: 13.5px !important;
    }

    /* Headings Across All Sections */
    .drive-courses-title,
    .drive-about-title,
    .drive-why-title,
    .drive-process-title,
    .drive-instructor-headline,
    .drive-testimonial-title,
    .drive-blog-title,
    .drive-contact-title,
    .drive-find-title,
    .drive-cd-title,
    .drive-faq-title {
        font-size: clamp(24px, 6.5vw, 30px) !important;
        line-height: 1.25 !important;
        letter-spacing: -0.4px !important;
    }

    /* Section Subtitle / Kicker */
    .drive-courses-label,
    .drive-about-label,
    .drive-why-label,
    .drive-process-label,
    .drive-instructor-label,
    .drive-testimonial-label,
    .drive-blog-label,
    .drive-contact-label,
    .drive-find-label,
    .drive-cd-label,
    .drive-faq-label {
        font-size: 12px !important;
        letter-spacing: 0.8px !important;
    }

    /* Descriptions & Lead Paragraphs */
    .drive-courses-description,
    .drive-about-description,
    .drive-process-subtitle,
    .drive-instructor-lead,
    .drive-testimonial-subtitle,
    .drive-blog-description,
    .drive-contact-description,
    .drive-find-description,
    .drive-faq-subtitle {
        font-size: 14.5px !important;
        line-height: 1.65 !important;
    }

    /* Card Titles */
    .drive-course-title-item,
    .drive-course-title-item a,
    .drive-blog-card-title,
    .drive-blog-card-title a {
        font-size: 18px !important;
        line-height: 1.35 !important;
    }

    /* Card Body Excerpts */
    .drive-course-desc,
    .drive-blog-excerpt {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* Action Buttons */
    .drive-course-button,
    .drive-blog-read-more,
    .drive-courses-view-button,
    .drive-blog-view-button,
    .drive-about-button,
    .drive-why-btn,
    .drive-cta-btn,
    .drive-instructor-primary-btn,
    .drive-instructor-whatsapp-btn,
    .drive-cd-book-btn,
    .drive-contact-button {
        font-size: 14px !important;
        font-weight: 700 !important;
        min-height: 44px !important;
    }

    /* Footer Typography */
    .drive-footer-title {
        font-size: 17px !important;
        margin-bottom: 16px !important;
    }

    .drive-footer-links a,
    .drive-footer-description,
    .drive-footer-contact-item div a,
    .drive-footer-contact-item div p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .drive-footer-contact-item div small {
        font-size: 11.5px !important;
    }

    .drive-footer-bottom p {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .drive-courses-title,
    .drive-about-title,
    .drive-why-title,
    .drive-process-title,
    .drive-instructor-headline,
    .drive-testimonial-title,
    .drive-blog-title,
    .drive-contact-title,
    .drive-find-title,
    .drive-cd-title,
    .drive-faq-title {
        font-size: 24px !important;
    }

    .drive-course-title-item,
    .drive-course-title-item a,
    .drive-blog-card-title,
    .drive-blog-card-title a {
        font-size: 17px !important;
    }

    .drive-courses-description,
    .drive-about-description,
    .drive-process-subtitle,
    .drive-blog-description,
    .drive-contact-description,
    .drive-find-description,
    .drive-faq-subtitle {
        font-size: 13.5px !important;
    }
}