/*
Theme Name: CARLAB Tofai
Theme URI: 
Author: Your Name
Author URI: 
Description: Custom classic theme for CARLAB Auto Workshop.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: carlab-tofai
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

@font-face {
    font-family: 'AutofiixHeading';
    src: url('./assets/font/AutofiixHeading-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AutofiixHeading';
    src: url('./assets/font/AutofiixHeading-Semibold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AutofiixHeading';
    src: url('./assets/font/AutofiixHeading-Semibold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Autofiix';
    src: url('./assets/font/Autofiix-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Autofiix';
    src: url('./assets/font/Autofiix-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #e31e24; /* Red */
    --secondary-color: #042759; /* Dark Blue */
    --dark-bg: #111111;
    --light-bg: #f4f5f8;
    --text-color: #555555;
    --heading-color: #1a1a1a;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --transition: all 0.3s ease-in-out;
    --container-width: 1200px;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'AutofiixHeading', 'Outfit', sans-serif;
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--dark-bg); color: var(--white); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
}

/* Section Headers */
section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
}

/* Check list */
.check-list {
    margin: 20px 0 30px;
}
.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--heading-color);
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-weight: bold;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header-top-bar {
    background-color: #212121;
    color: var(--white);
    padding: 15px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-branding {
    flex-shrink: 0;
}
.top-bar-info {
    display: flex;
    gap: 40px;
    align-items: center;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}
.info-text {
    display: flex;
    flex-direction: column;
}
.info-text span {
    color: #ccc;
    font-size: 12px;
}
.info-text strong {
    font-size: 16px;
    color: var(--primary-color);
}
.review-item {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}
.review-item .google-logo {
    display: flex;
    align-items: center;
}
.review-item .review-details {
    display: flex;
    flex-direction: column;
}
.review-item .stars-score {
    display: flex;
    align-items: center;
    gap: 6px;
}
.review-item .stars-score strong {
    font-size: 15px;
    color: var(--white);
    line-height: 1;
}
.review-item .stars-score .stars {
    color: #FBBC05;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
}
.review-item .review-count {
    font-size: 11px;
    color: #aaa;
    margin-top: 2px;
}

.header-main {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}
.header-main-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch; /* So the button stretches to full height */
    height: 70px;
}
.main-navigation {
    grid-column: 2;
    display: flex;
    justify-content: center;
    border-left: 1px solid #f0f0f0;
    padding-left: 50px;
}
.nav-menu {
    display: flex;
    gap: 50px;
    height: 100%;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-menu li a {
    color: #111;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}
.nav-menu li.current-menu-item a,
.nav-menu li a:hover {
    color: var(--primary-color);
}

/* Submenu Dropdown Styles */
.nav-menu li {
    position: relative;
}
.nav-menu ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
    z-index: 1000;
    list-style: none;
    margin: 0;
    border-top: 3px solid var(--primary-color);
}
.nav-menu ul.sub-menu li {
    display: block;
}
.nav-menu ul.sub-menu li a {
    padding: 12px 25px;
    display: block;
    color: #444;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
}
.nav-menu ul.sub-menu li a:hover {
    color: var(--primary-color);
    background-color: #f9f9f9;
    padding-left: 30px; /* Slight indent on hover for premium feel */
}
.nav-menu li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-action {
    grid-column: 3;
    display: flex;
    justify-content: flex-end;
}
.btn-appointment {
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    text-align: left;
    line-height: 1.4;
}
.btn-appointment:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}
.btn-appointment .arrow {
    display: flex;
    align-items: center;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
#primary, .site-main {
    padding: 0 !important;
    margin: 0 !important;
}
.hero-slider-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    min-height: 700px;
    overflow: hidden;
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.hero-slider-container {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
}
.slide-overlay {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
}
.slide-overlay.dark {
    background: rgba(0,0,0,0.5);
}
.slide-content {
    position: relative;
    z-index: 2;
    text-align: left !important;
    width: 100%;
}
.slide-subtitle {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.slide-title {
    font-size: 110px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    margin-top: 0;
}
.slide-title.stroke-text {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.9);
}
.btn-slide {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #111;
    padding: 20px 40px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    gap: 20px;
    transition: all 0.3s ease;
}
.btn-slide:hover {
    background: var(--primary-color);
    color: #fff;
}
.btn-slide.btn-icon-only {
    padding: 20px 30px;
}
.btn-slide .arrow {
    display: flex;
    align-items: center;
}

/* Slider Dots */
.slider-nav-container {
    position: absolute !important;
    bottom: 50px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10 !important;
    height: auto !important;
}
.slider-dots {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start !important;
    margin-top: 40px;
}
.dot {
    width: 6px;
    height: 6px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}
.dot.active {
    background: transparent;
    border: 2px solid var(--primary-color);
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dot.active .dot-inner {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
}
.dot:not(.active) .dot-inner {
    display: none;
}

/* ==========================================================================
   Estimation CTA Section
   ========================================================================== */
.estimation-cta-section {
    position: relative;
    z-index: 10;
    margin-top: -120px; /* Pulls the section up to overlap the hero slider */
    margin-bottom: 20px;
}
.estimation-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.estimation-container {
    display: flex;
    align-items: stretch;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background-color: var(--white); /* Ensures no transparent gaps */
}
.estimation-box {
    padding: 80px 60px;
    position: relative;
    /* Removed flex centering to keep top alignment */
}
.box-white {
    flex: 6;
    background-color: var(--white);
    border-top: 5px solid var(--primary-color);
    z-index: 5;
}
.box-blue {
    flex: 4;
    background-color: #0056b3;
    border-top: 5px solid transparent;
    z-index: 1;
    /* Gear pattern SVG as data URI */
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' fill-opacity='0.08' d='M83.8 46.1c-.2-1.9-.6-3.8-1.2-5.5l10.3-8-4.5-10.9-12 4.2c-2.3-2.6-4.9-4.8-7.9-6.5L66 6.8h-12l-2.6 12.6c-2.9 1.7-5.5 3.9-7.9 6.5l-12-4.2-4.5 10.9 10.3 8c-.6 1.7-1 3.6-1.2 5.5H23.5v11.8h12.6c.2 1.9.6 3.8 1.2 5.5l-10.3 8 4.5 10.9 12-4.2c2.3 2.6 4.9 4.8 7.9 6.5l2.6 12.6h12l2.6-12.6c2.9-1.7 5.5-3.9 7.9-6.5l12 4.2 4.5-10.9-10.3-8c.6-1.7 1-3.6 1.2-5.5h12.6V46.1H83.8zM50 67.5C40.3 67.5 32.5 59.7 32.5 50S40.3 32.5 50 32.5 67.5 40.3 67.5 50 59.7 67.5 50 67.5z'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    background-repeat: repeat;
    background-position: center;
    overflow: hidden;
}
.estimation-box .box-content {
    position: relative;
    z-index: 2;
    text-align: left !important;
}
.estimation-box .box-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 0;
    color: var(--dark-bg);
}
.estimation-box .box-title.text-white {
    color: var(--white);
    font-size: 36px;
}
.estimation-box .box-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}
.estimation-box .box-text.text-white {
    color: rgba(255,255,255,0.9);
}
.estimation-box .phone-link {
    display: inline-block;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
.btn-dark {
    display: inline-flex;
    align-items: center;
    background: var(--dark-bg);
    color: var(--white);
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    gap: 20px;
    transition: all 0.3s ease;
}
.btn-dark:hover {
    background: var(--primary-color);
}
.btn-dark .arrow, .btn-primary .arrow {
    display: flex;
    align-items: center;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    gap: 20px;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: var(--dark-bg);
}

.mechanic-cutout {
    position: absolute;
    bottom: 0px;
    right: -30px;
    height: 85%;
    max-height: 500px;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    z-index: 5;
    pointer-events: none;
}
/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-images .img-main {
    border-radius: 8px;
    width: 80%;
}
.about-images .img-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    border-radius: 8px;
    border: 10px solid var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.service-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 25px;
}
.read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--heading-color);
    transition: var(--transition);
    text-decoration: none;
    margin-top: auto;
}
.read-more:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   Trust Section
   ========================================================================== */
.trust-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.trust-images {
    position: relative;
}
.trust-images img {
    border-radius: 8px;
}
.stats-box {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    gap: 40px;
}
.stat h3 {
    color: var(--primary-color);
    font-size: 40px;
    margin-bottom: 5px;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-card {
    background: var(--white);
    border-radius: 8px;
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    color: var(--text-color);
}
.review-box {
    padding: 40px;
    flex: 1;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.google-icon {
    width: 40px;
    height: 40px;
    background: #4285F4;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}
.stars {
    color: #FFB900;
    letter-spacing: 2px;
}
.review-image {
    width: 300px;
}
.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}
.team-card:hover img {
    transform: scale(1.05);
}
.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    color: var(--white);
}
.team-info h4 {
    color: var(--white);
    margin-bottom: 5px;
}
.team-info p {
    color: var(--primary-color);
    font-size: 14px;
}

/* ==========================================================================
   Booking Section
   ========================================================================== */
.booking-section {
    padding: 0;
}
.booking-split {
    display: flex;
}
.booking-left, .booking-right {
    flex: 1;
    padding: 100px 5vw;
}
.booking-left {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.booking-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}
.booking-offer {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}
.booking-offer h2 {
    color: var(--white);
    font-size: 80px;
    margin-bottom: 10px;
}
.booking-offer small {
    color: var(--primary-color);
    font-size: 30px;
}
.booking-right {
    background: var(--light-bg);
}
.appointment-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.appointment-form input,
.appointment-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
}
.appointment-form input:focus,
.appointment-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.blog-card img {
    height: 240px;
    width: 100%;
    object-fit: cover;
}
.blog-content {
    padding: 30px;
}
.blog-date {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container {
    max-width: 800px;
}
.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.faq-question {
    padding: 20px 30px;
    margin: 0;
    cursor: pointer;
    position: relative;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary-color);
}
.faq-item.active .faq-question::after {
    content: '-';
}
.faq-answer {
    padding: 0 30px 20px;
    display: none;
}
.faq-item.active .faq-answer {
    display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--dark-bg);
    color: #aaa;
    padding-top: 80px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-logo {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-logo strong {
    color: var(--primary-color);
}
.footer-contact p {
    margin-bottom: 10px;
}
.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
}
.widget-title {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a {
    color: #aaa;
}
.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.newsletter-form {
    display: flex;
    margin: 20px 0;
}
.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}
.newsletter-form button {
    border-radius: 0 4px 4px 0;
}

.site-info {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .about-container,
    .trust-container {
        grid-template-columns: 1fr;
    }
    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .booking-split {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
    }
    .nav-menu {
        display: none; /* Mobile menu needed */
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-box {
        padding: 30px;
    }
    .services-grid,
    .blog-grid,
    .team-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .appointment-form .form-row {
        flex-direction: column;
    }
    .testimonials-card {
        flex-direction: column;
    }
    .review-image {
        width: 100%;
        height: 200px;
    }
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
    padding: 60px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-header {
    margin-bottom: 50px;
}

.subtitle-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.grid-icon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    width: 14px;
    height: 14px;
}
.grid-icon span {
    background-color: var(--primary-color);
    width: 6px;
    height: 6px;
}
.grid-icon span:nth-child(2),
.grid-icon span:nth-child(3) {
    background-color: #111111;
}
.testimonials-section .grid-icon span:nth-child(2),
.testimonials-section .grid-icon span:nth-child(3) {
    background-color: var(--white);
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1.1;
    margin: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column */
.about-left {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.features-box {
    position: absolute;
    bottom: -60px; /* Overlaps image */
    left: 0;
    right: -60px; /* Extends off the right into the next column */
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    z-index: 5;
}

.feature-item {
    padding: 40px 20px;
    text-align: center;
    border-top: 5px solid transparent;
    border-right: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.feature-item:last-child {
    border-right: none;
}
.feature-item.active, .feature-item:hover {
    border-top-color: var(--primary-color);
}

.icon-wrap {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.icon-wrap svg {
    color: #0056b3; /* Blue primary for icons */
}

.feature-text {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1.4;
}

/* Right Column */
.about-right {
    position: relative;
    padding-top: 0;
    padding-left: 40px;
}

.about-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.highlight-quote {
    border-left: 5px solid var(--primary-color);
    padding-left: 30px;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-bg);
    margin: 40px 0;
    line-height: 1.6;
}

.btn-text-link {
    display: inline-block;
    color: var(--dark-bg);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    transition: color 0.3s ease;
}
.btn-text-link:hover {
    color: var(--primary-color);
}

.floating-car {
    position: absolute;
    bottom: -150px;
    right: -250px;
    width: 700px;
    max-width: none;
    z-index: 10;
    pointer-events: none;
}

/* ==========================================================================
   CTA Bar Section
   ========================================================================== */
.cta-bar {
    padding: 60px 0;
    background-color: var(--white);
}
.cta-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.cta-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    padding: 80px 0 100px;
    background-color: #f7f7f7; /* Light background texture substitute */
}
.section-title-huge {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 80px;
}
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.services-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-bg);
    margin: 0;
    line-height: 1;
}
.btn-white {
    display: inline-block;
    padding: 20px 40px;
    background-color: var(--white);
    color: var(--dark-bg);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-white:hover {
    background-color: var(--dark-bg);
    color: var(--white);
}

.services-grid-new {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
}
.services-grid-new::-webkit-scrollbar {
    display: none;
}
.service-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.service-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 20px;
    line-height: 1.3;
    min-height: 58px; /* Force 2 lines for uniform alignment */
}
.service-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1; /* Pushes the button to the bottom */
}
.service-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

.services-pagination {
    margin-top: 40px;
    justify-content: center !important;
}
.services-pagination .dot {
    background: #e0e0e0;
}
.services-pagination .dot.active {
    background: transparent;
    border-color: var(--primary-color);
}
.services-pagination .dot.active .dot-inner {
    background: var(--primary-color);
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */
.why-us-section {
    background-color: var(--white);
    padding: 0;
}
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 800px;
}

/* Left Column */
.why-us-left {
    padding: 60px 40px 80px max(20px, calc(50vw - 580px));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.why-us-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1.1;
    margin-bottom: 30px;
}
.why-us-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}
.why-us-intro strong {
    color: var(--dark-bg);
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.why-us-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.check-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #f9f9f9;
    margin-right: 20px;
    color: var(--primary-color);
}
.list-text {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-bg);
}

/* Right Column */
.why-us-right {
    display: flex;
    flex-direction: column;
}
.why-us-main-image {
    flex: 1;
}
.why-us-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-us-stats {
    display: flex;
    background-color: #1a1a1a;
    height: 300px;
}
.stats-image-wrap {
    position: relative;
    width: 35%;
    height: 100%;
}
.stats-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}
.red-tint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(228, 20, 20, 0.5); /* Red tint */
    mix-blend-mode: multiply;
}

.stats-data {
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 40px;
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 90px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}
.why-us-stats .stat-label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.stat-divider {
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    background: linear-gradient(to bottom, #1a1a1a 0%, #1a1a1a 78%, #ffffff 78%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 130px;
    left: 0;
    width: 400px; /* Only show the first 400px of the image */
    height: calc(78% - 130px);
    background: url('/wp-content/uploads/2026/07/h1_bg-1-1.png') no-repeat left center;
    background-size: auto 100%; /* Scale height to fit, let width overflow and get clipped */
    z-index: 0;
    opacity: 1;
}
.testimonials-section .container {
    position: relative;
    z-index: 1;
}
.testimonials-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0 180px; /* Large bottom padding for overlap */
}
.testi-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-top: 15px;
    margin-bottom: 0;
}
.testi-top-right {
    display: flex;
    align-items: center;
}
.testi-rating-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-right: 30px;
}
.testi-location {
    font-size: 16px;
    color: var(--white);
}
.testi-stars-large {
    display: flex;
    gap: 4px;
}

/* Bottom Overlap Section */
.testimonials-bottom {
    position: relative;
    margin-top: -120px; /* Overlap the dark section */
    margin-bottom: 50px;
}
.testi-bottom-inner {
    background-color: var(--white);
    border-top: 8px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    min-height: 400px;
}

/* Reviews Column */
.testi-reviews-col {
    width: 60%;
    padding: 60px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.reviews-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    position: relative;
    padding: 0 10px;
}
.review-nav-left, .review-nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border: 1px solid #eaeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--dark-bg);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    z-index: 10;
}
.review-nav-left { left: -22px; }
.review-nav-right { right: -22px; }

.review-card {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 25px 25px 30px;
    flex: 1;
}
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.reviewer-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
    background-color: #eee;
}
.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.reviewer-info {
    flex: 1;
}
.reviewer-name {
    font-weight: 700;
    font-size: 16px;
    color: #111;
    margin-bottom: 2px;
}
.review-date {
    font-size: 14px;
    color: #888;
}
.google-icon {
    width: 24px;
    height: 24px;
    align-self: flex-start;
}
.review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 15px;
}
.verified-check {
    display: inline-flex;
    margin-left: 5px;
}
.review-text {
    font-size: 16px;
    line-height: 1.5;
    color: #222;
}

.trustindex-badge {
    background-color: #1a7f37;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    align-self: flex-end;
    margin-right: 15px;
}
.info-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 13px;
    margin-left: 8px;
    font-style: italic;
    font-size: 11px;
}

/* Image Column */
.testi-image-col {
    width: 40%;
    position: relative;
    /* background-color removed so transparent images stick out */
}
.testi-guy-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: 120%; /* Makes head stick out of the container */
    max-width: 150%;
    object-fit: contain;
    object-position: bottom right;
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-section {
    padding: 60px 0 100px 0;
    background-color: var(--white);
    overflow: hidden; /* Prevent horizontal scroll for slider */
}
.team-container {
    display: flex;
    align-items: center;
    padding-left: max(20px, calc(50vw - 580px)); /* Align left edge to container (max 1200) */
}
.team-left-col {
    width: 400px;
    flex-shrink: 0;
    padding-right: 40px;
}
.team-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 40px;
}
.icon-squares {
    display: inline-flex;
    margin-right: 8px;
    vertical-align: middle;
    color: var(--primary-color);
}
.team-nav {
    display: flex;
    gap: 10px;
}
.team-nav-btn {
    width: 60px;
    height: 50px;
    background-color: #1a1a1a;
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}
.team-nav-btn:hover {
    background-color: var(--primary-color);
}
.team-slider-col {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}
.team-slider-wrapper {
    display: flex;
    gap: 20px;
    width: max-content;
    padding-right: 20vw; /* let it overflow nicely */
}
.team-card {
    position: relative;
    width: 280px;
    height: 380px;
    overflow: hidden;
    cursor: pointer;
    background-color: #f5f5f5;
}
.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
.team-card:hover img {
    transform: scale(1.05);
}
.team-social-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    z-index: 10;
}
.team-btn-add {
    width: 44px;
    height: 44px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}
.team-card:hover .team-btn-add {
    background-color: var(--primary-color);
}
.icon-close { display: none; }
.team-card:hover .icon-plus { display: none; }
.team-card:hover .icon-close { display: block; }

.team-social-links {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.team-card:hover .team-social-links {
    max-height: 200px;
}
.team-social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    border-bottom: 1px solid #eee;
    transition: 0.3s ease;
}
.team-social-links a:hover {
    color: var(--primary-color);
}
.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    z-index: 1;
}
.team-info {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    padding: 0 30px;
    z-index: 2;
    text-align: center;
}
.team-name {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.team-role {
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Appointment Section
   ========================================================================== */
.appointment-section {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--white);
    padding: 60px 0; /* white space between sections */
}
.appointment-left {
    width: 50%;
    position: relative;
    background-color: #111;
    background-image: url('/wp-content/uploads/2026/07/Futur-car.webp');
    background-size: cover;
    background-position: center;
    padding: 70px 60px 50px max(20px, calc(50vw - 580px));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.appointment-left::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7); /* dark overlay */
    z-index: 1;
    display: none; /* Removed to make image brighter */
}
.appointment-offer, .appointment-contact {
    position: relative;
    z-index: 2;
}
.offer-get {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
}
.offer-discount {
    display: flex;
    align-items: flex-start;
    margin-top: -10px;
}
.offer-amount {
    color: var(--white);
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
}
.offer-off {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    padding: 5px 10px;
    margin-top: 10px;
    margin-left: 5px;
}
.offer-title {
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.btn-white-outline {
    display: inline-flex;
    align-items: center;
    background-color: var(--white);
    color: var(--dark-bg);
    padding: 12px 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
    text-decoration: none;
}
.btn-white-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.appointment-contact {
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.contact-icon-circle {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.contact-info {
    display: flex;
    flex-direction: column;
}
.contact-label {
    color: #ccc;
    font-size: 14px;
}
.contact-number {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
}

.appointment-right {
    width: 50%;
    padding: 70px max(20px, calc(50vw - 580px)) 70px 60px;
    background-color: #f5f5f5; /* light grey textured bg */
}
.appointment-form-wrapper {
    max-width: 500px;
}
.appointment-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1.1;
    margin-top: 10px;
    margin-bottom: 25px;
}
.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-row {
    display: flex;
    gap: 15px;
}
.form-group {
    width: 100%;
}
.form-group.half-width {
    width: 50%;
}
.form-control {
    width: 100%;
    background-color: var(--white);
    border: none;
    padding: 15px 20px;
    font-size: 14px;
    color: #333;
    outline: none;
}
.form-control::placeholder {
    color: #888;
}
.input-with-icon {
    position: relative;
}
.input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}
.btn-block {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}
.btn-block:hover {
    background-color: var(--dark-bg);
}

@media (max-width: 991px) {
    .appointment-left, .appointment-right {
        width: 100%;
        padding: 60px 20px;
    }
    .form-row {
        flex-direction: column;
    }
    .form-group.half-width {
        width: 100%;
    }
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-section {
    padding: 120px 0;
    background-color: var(--white);
}
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}
.blog-title-col {
    max-width: 60%;
}
.blog-title-col .section-title {
    margin-bottom: 0;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
}
.blog-link-col {
    text-align: right;
    padding-bottom: 10px;
}
.blog-view-all {
    display: inline-block;
    color: var(--dark-bg);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    padding: 15px 30px;
    background-color: transparent;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.blog-view-all:hover {
    color: var(--white);
    background-color: var(--primary-color);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}
.blog-card {
    display: flex;
    flex-direction: column;
}
.blog-card-title {
    margin: 0 0 20px 0;
    padding-top: 20px;
    border-top: 2px solid #111;
}
.blog-card-title a {
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 56px; /* 2 lines exactly */
}
.blog-card-title a:hover {
    color: var(--primary-color);
}
.blog-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}
.blog-date-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #111;
    z-index: 2;
}
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-main-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 50px;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background-color: var(--white);
    border: 1px solid #eaeaea;
    border-left: 4px solid transparent;
    overflow: hidden;
    transition: 0.3s ease;
}
.faq-item.active {
    border-left-color: var(--primary-color);
}
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
}
.faq-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-bg);
}
.faq-icon {
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-item.active .faq-icon {
    color: var(--dark-bg);
}
.icon-minus { display: none; }
.icon-plus { display: block; }
.faq-item.active .icon-minus { display: block; }
.faq-item.active .icon-plus { display: none; }

.faq-content {
    max-height: 0;
    padding: 0 30px;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-content p {
    color: #777;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}
.faq-item.active .faq-content {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.custom-footer {
    background-color: #1f1f1f;
    color: #999;
    padding-top: 80px;
    font-size: 15px;
}
.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}
.footer-left {
    width: 30%;
    padding-right: 30px;
}
.footer-brand {
    margin-bottom: 25px;
}
.brand-heartbeat {
    margin-top: -10px;
}
.footer-desc {
    margin-bottom: 40px;
    line-height: 1.6;
    color: #777;
}
.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-hours li {
    display: flex;
    margin-bottom: 20px;
    font-size: 13px;
}
.footer-hours .day {
    color: #777;
    width: 35%;
    border-right: 1px solid #333;
    padding-right: 15px;
}
.footer-hours .time {
    color: #777;
    width: 65%;
    padding-left: 20px;
}
.footer-hours .time.closed {
    color: var(--primary-color);
}

.footer-right {
    width: 60%;
}
.footer-newsletter-header h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
}
.red-line {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 45px;
}
.footer-links-grid {
    display: flex;
    justify-content: flex-start;
    gap: 150px;
}
.footer-widget .widget-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
}
.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-widget ul li {
    margin-bottom: 15px;
}
.footer-widget ul li a {
    color: #777;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-widget ul li a:hover {
    color: var(--primary-color);
}

.footer-contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background-color: transparent;
    padding-bottom: 40px;
}
.contact-card {
    display: flex;
    align-items: center;
    padding: 30px 20px;
    background-color: #141414;
    border: none;
}
.contact-icon {
    width: 44px;
    height: 44px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
    border-radius: 4px;
}
.contact-text {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}
.contact-text strong {
    color: var(--white);
    font-size: 14px;
}
.contact-social .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}
.contact-social .social-icons a {
    color: #888;
    transition: 0.3s ease;
}
.contact-social .social-icons a:hover {
    color: var(--primary-color);
}

.custom-footer .site-info {
    background-color: #141414;
    padding: 25px 0;
}
.site-info-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-info p {
    margin: 0;
    color: #777;
    font-size: 13px;
}
.site-info a {
    color: #777;
    text-decoration: underline;
}
.site-info a:hover {
    color: var(--primary-color);
}
.back-to-top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
    text-decoration: none !important;
}
.back-to-top:hover {
    color: var(--white);
}
.back-to-top svg {
    border: 1px solid #333;
    border-radius: 50%;
    padding: 3px;
    width: 20px;
    height: 20px;
}

@media (max-width: 991px) {
    .footer-left, .footer-right {
        width: 100%;
        margin-bottom: 40px;
    }
    .footer-contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .footer-contact-cards {
        grid-template-columns: 1fr;
    }
    .footer-links-grid {
        flex-direction: column;
        gap: 40px;
    }
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.about-hero-section {
    position: relative;
    padding: 160px 0 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}
.about-hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 25vw;
    min-width: 200px;
    max-width: 350px;
    height: 50px;
    background-color: var(--white);
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);
    z-index: 3;
}
.about-hero-section .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.about-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.about-hero-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Who We Are */
.who-we-are-section {
    padding: 100px 0;
    background-color: var(--white);
}
.who-we-are-container {
    display: flex;
    align-items: stretch;
    gap: 60px;
}
.who-we-are-left {
    flex: 1;
}
.who-we-are-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.who-we-are-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.who-we-are-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.who-we-are-text-block {
    margin-top: 140px;
}
.section-badge-left {
    margin-bottom: 20px;
}
.who-we-are-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #111;
}
.who-we-are-text-block p {
    color: #555;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}
.who-we-are-text-block .intro-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.red-line-separator {
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    margin: auto 0 50px 0;
}
.stats-block {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}
.stat-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -2px;
}
.stat-label {
    font-size: 13px;
    font-weight: 800;
    color: #111;
    letter-spacing: 0.5px;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: var(--white);
}
.benefits-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.benefits-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 15px 0 0 0;
    color: #111;
    letter-spacing: -1px;
}
.benefits-link-simple {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 24px;
    border-radius: 50px;
    background-color: transparent;
    transition: all 0.3s ease;
}
.benefits-link-simple:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
.btn-text-link {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color: #111;
    transition: all 0.3s ease;
}
.btn-text-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.benefit-card {
    background: transparent;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}
.benefit-card:hover .benefit-name {
    color: var(--primary-color);
    transition: color 0.3s ease;
}
.benefit-icon {
    margin-bottom: 25px;
}
.benefit-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
    line-height: 1.3;
}
.benefit-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.benefits-footer p {
    font-size: 18px;
    color: #111;
}

/* Promise Section */
.promise-section {
    padding: 100px 0;
    background-color: var(--white);
}
.promise-header {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}
.promise-header-left {
    flex: 1;
}
.promise-header-right {
    flex: 1;
    padding-top: 50px;
}
.promise-header-right p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}
.promise-title {
    font-size: 46px;
    line-height: 1.1;
    margin-top: 15px;
    letter-spacing: -1px;
    font-weight: 800;
}
.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #eaeaea;
    border-left: 1px solid #eaeaea;
}
.promise-card {
    padding: 50px 40px;
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    transition: all 0.3s ease;
}
.promise-card:hover {
    background-color: var(--primary-color);
}
.promise-card:hover .promise-number,
.promise-card:hover .promise-card-title,
.promise-card:hover .promise-card-desc {
    color: var(--white);
}
.promise-number {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 50px;
    transition: color 0.3s ease;
}
.promise-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.promise-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Brands We Service Section */
.brands-we-service-section {
    padding: 20px 0 100px 0;
    background-color: var(--white);
}
.brands-title {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
}
.brands-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.brands-logo-container {
    padding-top: 80px;
}
.brand-category {
    margin-bottom: 80px;
}
.brand-category:last-child {
    margin-bottom: 0;
}
.brand-category-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: #111;
    margin-bottom: 40px;
    letter-spacing: -1px;
}
.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}
.brand-logo img {
    max-width: 150px;
    max-height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.brand-logo img:hover {
    transform: scale(1.08);
}

/* --- Team Page --- */
.team-hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    min-height: 400px;
    display: flex;
    align-items: center;
}
.team-hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 25vw;
    min-width: 200px;
    max-width: 350px;
    height: 50px;
    background-color: var(--white);
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);
    z-index: 3;
}
.team-hero-section .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.team-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.team-hero-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}
.focused-section {
    padding: 100px 0;
    background-color: var(--white);
}
.focused-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}
.focused-left-wrapper {
    flex: 1.6;
}
.focused-right-wrapper {
    flex: 1;
    position: relative;
}
.focused-header {
    margin-bottom: 50px;
}
.focused-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: #111;
    margin: 20px 0 0;
    letter-spacing: -2px;
}
.focused-content-split {
    display: flex;
    gap: 40px;
}
.focused-text-col {
    flex: 1;
    text-align: center;
}
.focused-text-col p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}
.focused-features-col {
    flex: 1;
}
.focused-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}
.feature-icon-red {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: -2px;
}
.feature-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}
.feature-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}
.focused-image-box {
    position: relative;
}
.focused-image-box img {
    width: 100%;
    border-radius: 4px;
}
.trusted-experts-box {
    position: absolute;
    bottom: -140px;
    left: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px;
    text-align: left;
    border-radius: 0;
    width: 220px;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.trusted-icon {
    width: 60px !important;
    height: auto;
    margin-bottom: 0;
    filter: brightness(0) invert(1);
}
.trusted-text {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    text-align: left;
}
.team-members-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}
.team-header {
    margin-bottom: 60px;
}
.team-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-top: 20px;
    letter-spacing: -1px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.team-card-image {
    position: relative;
    width: 100%;
    height: 400px;
}
.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}
.team-card-plus {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease;
}
.team-card:hover .team-card-plus {
    transform: scale(1.1);
}
.team-card-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}
.member-name {
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.member-role {
    color: #ddd;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- History Page --- */
.history-intro-section {
    padding: 100px 0 50px 0;
    background-color: var(--white);
    text-align: center;
}
.history-intro-section .subtitle-badge {
    justify-content: center;
    display: inline-flex;
}
.history-main-title {
    font-size: 56px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    margin-top: 20px;
    letter-spacing: -2px;
}
.history-timeline-section {
    padding: 0 0 100px 0;
    background-color: var(--white);
}
.timeline-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
.timeline-item {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    position: relative;
    min-height: 250px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 0;
    width: 3px;
    background-color: #eee;
    transition: background-color 0.4s ease;
}
.timeline-item:hover::before {
    background-color: var(--primary-color);
}
.timeline-year {
    width: 80px;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    padding-left: 30px;
    flex-shrink: 0;
}
.timeline-item.no-year .timeline-year {
    color: transparent;
}
.timeline-content {
    flex: 1;
    text-align: center;
    padding-top: 5px;
}
.timeline-title {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
}
.timeline-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}
.timeline-image {
    width: 350px;
    flex-shrink: 0;
}
.timeline-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}
.timeline-item:hover .timeline-image img {
    filter: grayscale(0%);
}

/* --- Process Page --- */
.process-intro-section {
    padding: 100px 0 80px 0;
    background-color: var(--white);
    text-align: center;
}
.process-intro-section .subtitle-badge {
    justify-content: center;
    display: inline-flex;
}
.process-steps-section {
    background-color: var(--white);
    padding-bottom: 0;
}
.process-step-row {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}
.process-step-row.row-reverse {
    flex-direction: row-reverse;
}
.process-step-image {
    width: 50%;
    flex: 0 0 50%;
    margin: 0;
    padding: 0;
}
.process-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
    display: block;
}
.process-step-content {
    width: 50%;
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}
.process-step-inner {
    max-width: 500px;
}
.process-step-title {
    font-size: 40px;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
    letter-spacing: -1px;
}
.process-step-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}
.process-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white) !important;
    font-weight: 700;
    font-size: 14px;
    padding: 18px 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.process-btn:hover {
    background-color: #111;
}

/* --- Services Page --- */
.services-page-section {
    padding: 80px 0;
    background-color: #f9f9f9; /* Soft background to make white cards pop */
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 40px;
}
.srv-page-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    height: 100%;
}
.srv-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.srv-page-card-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}
.srv-page-card-image-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.srv-page-card:hover .srv-page-card-image-wrap img {
    transform: scale(1.08);
}
.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
}
.srv-page-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.srv-page-card-title {
    font-size: 21px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.4;
    letter-spacing: -0.3px;
    min-height: 59px; /* Forces exactly 2 lines of height */
    display: flex;
    align-items: flex-start;
    transition: color 0.3s ease;
}
.srv-page-card:hover .srv-page-card-title {
    color: var(--primary-color);
}
.srv-page-card-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.srv-page-card-btn {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    margin-top: auto;
}
.srv-page-card-btn i {
    margin-left: 10px;
    font-size: 15px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.srv-page-card:hover .srv-page-card-btn {
    color: var(--primary-color);
}
.srv-page-card:hover .srv-page-card-btn i {
    transform: translateX(5px);
}

/* --- Blog Page --- */
.blog-page-section {
    padding: 80px 0;
    background-color: var(--white);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 60px;
}
.blog-page-card {
    display: flex;
    flex-direction: column;
}
.blog-page-card-content {
    margin-bottom: 20px;
    border-bottom: 2px solid #111; /* Thick line separating title and image as per design */
    padding-bottom: 15px;
}
.blog-page-card-title {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.4;
    color: #111;
    margin: 0;
    height: 53.2px; /* 19px * 1.4 * 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-page-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.blog-page-card-title a:hover {
    color: var(--primary-color);
}
.blog-page-card-image-wrap {
    width: 100%;
    overflow: hidden;
}
.blog-page-card-image-wrap img.blog-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.blog-page-card:hover .blog-page-card-image-wrap img.blog-img {
    transform: scale(1.03);
}
.blog-page-card-footer {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-page-card-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    padding: 12px 24px;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
}
.blog-read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.blog-read-more:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
.blog-read-more:hover i {
    transform: translateX(5px);
}
.blog-pagination {
    margin-top: 60px;
    text-align: center;
}
.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 0 5px;
    background: #f1f1f1;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* --- Contact Page --- */
.contact-info-section {
    padding: 80px 0 40px;
    background-color: var(--white);
}
.contact-info-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: stretch;
}
.contact-map-col {
    height: 100%;
}
.contact-map-col iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: block;
}
.contact-details-col {
    padding-right: 20px;
}
.contact-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.contact-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}
.contact-divider {
    border: 0;
    border-top: 1px solid #eaeaea;
    margin: 0 0 35px 0;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.contact-item-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
}
.contact-item-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.contact-item-text p {
    font-size: 16px;
    color: #111;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}
.contact-item-text p.contact-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.contact-social-media {
    margin-top: 40px;
}
.contact-social-media h4 {
    font-size: 14px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #111;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-section {
    padding: 60px 0 100px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}
.contact-floating-img {
    position: absolute;
    z-index: 1;
}
.contact-floating-img.img-left {
    bottom: 0px;
    left: -50px;
    width: 320px;
}
.contact-floating-img.img-right {
    top: 50px;
    right: -20px;
    width: 300px;
}
.contact-floating-img img {
    width: 100%;
    height: auto;
    display: block;
}
.contact-form-container {
    max-width: 900px;
    position: relative;
    z-index: 2;
}
.form-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
.form-desc {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}
.contact-page-form {
    background: transparent;
}
.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.form-row-1 {
    margin-bottom: 20px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    font-size: 15px;
    color: #111;
    background-color: var(--white);
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
}
.form-submit-wrap {
    text-align: center;
    margin-top: 30px;
}
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.contact-submit-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.contact-submit-btn:hover {
    background-color: #d11212;
}
.contact-submit-btn:hover i {
    transform: translateX(5px);
}

/* --- Single Post Page --- */
.single-post-section {
    padding: 80px 0;
    background-color: var(--white);
}
.single-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 780px) 340px;
    justify-content: space-between;
    gap: 60px;
    align-items: start;
}
.single-post-container {
    /* No longer used directly as the wrapper, but kept just in case */
    max-width: 100%;
}
.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
}
.single-post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.single-post-meta span svg {
    color: var(--primary-color);
}
.single-post-meta a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.single-post-meta a:hover {
    color: var(--primary-color);
}
.single-post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}
.single-post-content h1,
.single-post-content h2,
.single-post-content h3,
.single-post-content h4,
.single-post-content h5,
.single-post-content h6 {
    color: #111;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 800;
}
.single-post-content h2 {
    position: relative;
    padding-bottom: 15px;
}
.single-post-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.single-post-content p {
    margin-bottom: 25px;
}
.single-post-content img,
.single-post-content figure,
.single-post-content iframe {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.single-post-content figure.wp-block-table {
    box-shadow: none;
    border-radius: 0;
    margin: 20px 0;
}
.single-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.single-post-content th,
.single-post-content td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
    vertical-align: top;
}
.single-post-content th {
    font-weight: 800;
    color: #111;
    border-bottom: 2px solid #111;
    background-color: #f9f9f9;
}
.single-post-content tr:last-child td {
    border-bottom: none;
}
.single-post-content ul,
.single-post-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}
.single-post-content li {
    margin-bottom: 10px;
}
.single-post-content blockquote {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid var(--primary-color);
    font-size: 20px;
    font-style: italic;
    color: #111;
    border-radius: 0 8px 8px 0;
}
.single-post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.post-author-share-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f6f8fb;
    border: 1px solid #eef1f6;
    border-radius: 20px;
    padding: 20px 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}
.author-share-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.author-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.author-details .written-by {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.author-details .author-name {
    margin: 0 0 2px 0;
    font-size: 18px;
    font-weight: 800;
    color: #111;
}
.author-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.author-name a:hover {
    color: var(--primary-color);
}
.author-details .post-date {
    font-size: 13px;
    color: #888;
    font-weight: 600;
}
.author-share-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-share-right .share-label {
    font-size: 14px;
    color: #666;
    font-weight: 700;
}
.share-icons {
    display: flex;
    gap: 10px;
}
.share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.share-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.post-tags {
    margin-bottom: 40px;
}
.post-tags .tag-title {
    font-weight: 800;
    color: #111;
    margin-right: 10px;
    text-transform: uppercase;
    font-size: 14px;
}
.post-tags a {
    display: inline-block;
    padding: 6px 18px;
    background-color: #f1f1f1;
    color: #666;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.post-tags a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* --- Comments Area --- */
.post-comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.comments-title, .comment-reply-title {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
}
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}
.comment-list .comment {
    margin-bottom: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
}
.comment-list .children {
    list-style: none;
    padding-left: 40px;
    margin-top: 20px;
}
.comment-body {
    display: flex;
    gap: 20px;
}
.comment-author .avatar {
    border-radius: 50%;
}
.comment-meta {
    margin-bottom: 10px;
}
.comment-meta .fn {
    font-weight: 800;
    color: #111;
    font-size: 16px;
    font-style: normal;
}
.comment-metadata a {
    color: #888;
    font-size: 13px;
    text-decoration: none;
}
.comment-content {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}
.reply a {
    display: inline-block;
    background: #eef1f6;
    color: #111;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    transition: all 0.3s ease;
}
.reply a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Comment Form */
.comment-form {
    display: grid;
    gap: 20px;
}
.comment-form p {
    margin: 0;
}
.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #111;
    font-size: 14px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    border-color: var(--primary-color);
}
.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}
.comment-form .submit-comment {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.comment-form .submit-comment:hover {
    background-color: #d11e1e;
}
.comment-form .comment-notes,
.comment-form .logged-in-as {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Sidebar Styles */
.single-post-sidebar {
    position: sticky;
    top: 100px;
}
@media (min-width: 1200px) {
    .single-post-sidebar {
        transform: translateX(100px);
    }
}
.sidebar-widget {
    margin-bottom: 50px;
    border-top: 4px solid #111;
    padding-top: 20px;
}
.widget-author {
    text-align: center;
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-radius: 8px;
    border-top: none; /* Distinct style for author box */
}
.widget-author .author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-color);
    padding: 3px;
}
.widget-author .author-name {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}
.widget-author .author-bio {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.widget-title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.widget-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget-categories li {
    border-bottom: 1px solid #eee;
}
.widget-categories li:last-child {
    border-bottom: none;
}
.widget-categories li a {
    display: block;
    padding: 12px 0;
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}
.widget-categories li a:hover {
    color: var(--primary-color);
}

.widget-search .search-form {
    position: relative;
    display: flex;
    background-color: #f9f9f9;
    border-radius: 4px;
    overflow: hidden;
}
.widget-search .search-field {
    width: 100%;
    padding: 15px 20px;
    border: none;
    background: transparent;
    font-size: 15px;
    outline: none;
}
.widget-search .search-submit {
    background: transparent;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    color: #111;
    transition: color 0.3s ease;
}
.widget-search .search-submit:hover {
    color: var(--primary-color);
}

.latest-post-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.latest-post-item:last-child {
    margin-bottom: 0;
}
.latest-post-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.latest-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.latest-post-info h4 {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
}
.latest-post-info h4 a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.latest-post-info h4 a:hover {
    color: var(--primary-color);
}

@media (max-width: 1199px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 991px) {
    .focused-grid {
        flex-direction: column;
    }
    .trusted-experts-box {
        left: 20px;
        bottom: 20px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .who-we-are-container {
        flex-direction: column;
    }
    .timeline-item {
        flex-direction: column;
        gap: 30px;
    }
    .timeline-image {
        width: 100%;
    }
    .timeline-image img {
        height: auto;
    }
    .timeline-item::before {
        left: 20px;
    }
    .timeline-year {
        padding-left: 40px;
    }
    .process-step-row {
        flex-direction: column;
    }
    .process-step-row.row-reverse {
        flex-direction: column;
    }
    .process-step-image {
        width: 100%;
        flex: 0 0 100%;
    }
    .process-step-content {
        width: 100%;
        flex: 0 0 100%;
        padding: 50px 20px;
    }
    .process-step-desc {
        font-size: 15px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row-3 {
        grid-template-columns: 1fr;
    }
    .contact-floating-img {
        display: none;
    }
    .single-post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .post-author-share-block {
        flex-direction: column;
        align-items: flex-start;
    }
    .promise-header {
        flex-direction: column;
        gap: 30px;
    }
    .promise-header-right {
        padding-top: 0;
    }
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-hero-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .benefits-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
@media (max-width: 767px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .promise-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-hero-title {
        font-size: 40px;
    }
    .who-we-are-title, .benefits-title, .brands-title, .brand-category-title, .focused-title, .team-section-title, .history-main-title {
        font-size: 32px;
    }
    .stats-block {
        gap: 30px;
    }
    .brand-logos {
        gap: 30px;
    }
    .brand-logo img {
        max-width: 100px;
        max-height: 70px;
    }
    .hero-breadcrumb {
        flex-wrap: wrap;
    }
}

/* ==========================================================================
   Single Service Page
   ========================================================================== */
.single-service-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}
.single-service-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
}
.single-service-main {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.single-service-content h2,
.single-service-content h3 {
    color: #111;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 800;
}
.single-service-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}
.single-service-sidebar {
    position: relative;
    height: 100%;
}
.sidebar-sticky {
    position: sticky;
    top: 100px;
}
.widget-book-service {
    background: var(--dark-bg);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}
.widget-book-service .widget-title {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
}
.widget-book-service p {
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.6;
}
.w-100 {
    width: 100%;
    text-align: center;
    justify-content: center;
}
.widget-other-services {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.widget-other-services .widget-title {
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}
.other-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.other-services-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.other-services-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.other-services-list a {
    color: #444;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}
.other-services-list a:before {
    content: "\2192";
    margin-right: 10px;
    color: var(--primary-color);
}
.other-services-list a:hover {
    color: var(--primary-color);
}
@media (max-width: 991px) {
    .single-service-layout {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Single Service Premium Content Styling
   ========================================================================== */
.single-service-content h3 {
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 25px;
}
.single-service-content h3:first-child {
    margin-top: 0;
}
.single-service-content h5 {
    color: var(--primary-color);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 20px;
}
.service-inner-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-inner-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.service-inner-image:hover img {
    transform: scale(1.05);
}
.service-details-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}
.service-details-list li {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    padding: 20px 25px;
    border-radius: 8px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.service-details-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border-color: #ddd;
}
.service-details-list li:before {
    content: "\f058"; /* Check circle icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 22px;
    line-height: 1;
    margin-top: -2px;
}
@media (max-width: 768px) {
    .service-details-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Service Benefits Grid (from Elementor Icon Boxes)
   ========================================================================== */
.service-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.service-benefit-card {
    background: transparent;
    padding: 0;
    position: relative;
    padding-left: 60px;
}
.service-benefit-card::before {
    content: "\f013"; /* Gear icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-color);
    font-size: 32px;
    position: absolute;
    left: 0;
    top: 0;
}
/* Alternate icons for specific items */
.service-benefit-card:nth-child(2n)::before {
    content: "\f0b1"; /* Briefcase/Toolbox */
}
.service-benefit-card:nth-child(3n)::before {
    content: "\f0e4"; /* Dashboard speed */
}
.service-benefit-card:nth-child(4n)::before {
    content: "\f0ae"; /* Tasks/Check */
}
.service-benefit-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-top: 0;
    margin-bottom: 12px;
}
.service-benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .service-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   Custom Service Page: Painting and Dent Repair (car-services-post.php)
   ========================================================================== */

/* Hero Section */
.csp-hero {
    position: relative;
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}
.csp-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.75);
}
.csp-hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.csp-hero-subtitle {
    display: inline-block;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.csp-hero-title {
    font-size: 54px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
}
.csp-hero-desc {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}
.csp-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.3s ease;
    text-decoration: none;
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* Overview Section */
.csp-overview-section {
    padding: 100px 0;
    background: var(--white);
}
.csp-overview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.csp-overview-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.csp-overview-text .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
}
.csp-overview-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}
.csp-overview-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}
.csp-overview-list li {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.csp-overview-list i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
}

/* Process Timeline */
.csp-process-section {
    padding: 100px 0;
    background: #f8f9fa;
}
.csp-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.csp-process-step {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    text-align: center;
    transition: transform 0.3s ease;
}
.csp-process-step:hover {
    transform: translateY(-10px);
}
.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 5px solid rgba(220, 53, 69, 0.2);
}
.csp-process-step h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}
.csp-process-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Grid */
.csp-benefits-section {
    padding: 100px 0;
    background: var(--white);
}
.csp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.csp-benefit-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: 0.3s ease;
}
.csp-benefit-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(220, 53, 69, 0.1);
}
.csp-benefit-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.csp-benefit-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
}
.csp-benefit-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.csp-cta-section {
    padding: 80px 0;
    background: url("/wp-content/uploads/2026/07/shop.webp") center/cover no-attachment;
    position: relative;
}
.csp-cta-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17, 17, 17, 0.9);
}
.csp-cta-box {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}
.csp-cta-box h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}
.csp-cta-box p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
}
.csp-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}
.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* Responsive */
@media (max-width: 991px) {
    .csp-overview-layout, .csp-process-grid {
        grid-template-columns: 1fr;
    }
    .csp-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .csp-hero-title { font-size: 36px; }
    .csp-benefits-grid { grid-template-columns: 1fr; }
    .csp-hero-actions, .csp-cta-buttons { flex-direction: column; }
}

/* ==========================================================================
   Custom Service Page: Overview Redesign
   ========================================================================== */
.csp-overview-image-wrapper {
    position: relative;
    padding: 20px 20px 0 0;
}
.csp-overview-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    border-radius: 12px;
    z-index: 1;
}
.csp-overview-img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    display: block;
}

.csp-section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.csp-section-title {
    font-size: 40px;
    font-weight: 900;
    color: #111;
    margin-bottom: 25px;
    line-height: 1.2;
}
.csp-overview-lead {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
}

.csp-overview-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}
.csp-feature-item {
    display: flex;
    align-items: center;
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: 0.3s;
}
.csp-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-color: #ddd;
}
.csp-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(220, 53, 69, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}
.csp-feature-content h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #222;
}
@media (max-width: 576px) {
    .csp-overview-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Custom Service Page: Image Collage Redesign
   ========================================================================== */
.csp-overview-image-collage {
    position: relative;
    padding-bottom: 50px;
    padding-right: 50px;
}
.csp-img-main {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.csp-img-main img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}
.csp-img-main:hover img {
    transform: scale(1.05);
}
.csp-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    border: 10px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.csp-img-secondary img {
    width: 100%;
    display: block;
}
.csp-experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    z-index: 3;
    background: var(--primary-color);
    color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
    animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.badge-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}
.badge-text {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Hide old bg */
.csp-overview-image-bg { display: none; }

@media (max-width: 768px) {
    .csp-overview-image-collage {
        padding-right: 20px;
        padding-bottom: 30px;
    }
    .csp-img-secondary {
        width: 60%;
        border-width: 5px;
    }
    .csp-experience-badge {
        left: -10px;
        width: 90px;
        height: 90px;
    }
    .badge-number { font-size: 24px; }
    .badge-text { font-size: 10px; }
}

/* ==========================================================================
   Custom Service Page: Common Issues, Benefits V2, and Gallery
   ========================================================================== */

/* Common Issues Section */
.csp-common-issues-section {
    padding: 80px 0;
    background: #fff;
}
.csp-section-subtitle-red {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.csp-issues-lead {
    font-size: 18px;
    color: #444;
    max-width: 800px;
    margin-bottom: 40px;
    line-height: 1.6;
}
.csp-issues-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.csp-issue-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: 0.3s ease;
}
.csp-issue-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: #ddd;
}
.csp-square-icon {
    width: 24px;
    height: 24px;
    border: 3px solid var(--primary-color);
    border-radius: 4px;
    margin-right: 20px;
    flex-shrink: 0;
}
.csp-issue-card p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

/* Benefits Section V2 */
.csp-benefits-section-v2 {
    padding: 80px 0;
    background: #f9f9fa;
}
.csp-section-title-border {
    font-size: 36px;
    font-weight: 900;
    color: #111;
    border-left: 6px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 20px;
}
.csp-benefits-lead {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin-bottom: 50px;
    line-height: 1.7;
}
.csp-benefits-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.csp-benefit-card-v2 {
    display: flex;
    align-items: flex-start;
}
.csp-square-icon-large {
    width: 32px;
    height: 32px;
    border: 4px solid var(--primary-color);
    border-radius: 6px;
    margin-right: 25px;
    margin-top: 5px;
    flex-shrink: 0;
}
.csp-benefit-content h4 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin-top: 0;
    margin-bottom: 12px;
}
.csp-benefit-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Gallery Section */
.csp-gallery-section {
    padding: 80px 0;
    background: #fff;
}
.csp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.csp-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.csp-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.csp-gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .csp-gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .csp-issues-grid, .csp-benefits-grid-v2 { grid-template-columns: 1fr; }
    .csp-gallery-grid { grid-template-columns: 1fr; gap: 30px; }
    .csp-issue-card { padding: 20px; }
}

/* ==========================================================================
   Custom Service Page: Service Benefits Premium Dark Redesign
   ========================================================================== */
.csp-benefits-section-premium {
    padding: 100px 0;
    background: #111;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.csp-benefits-section-premium::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220,53,69,0.05) 0%, rgba(17,17,17,1) 50%);
    pointer-events: none;
}
.csp-premium-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}
.csp-premium-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}
.csp-premium-lead {
    font-size: 18px;
    color: #bbb;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}
.csp-premium-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.csp-premium-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.csp-premium-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.15);
}
.csp-premium-icon {
    width: 70px;
    height: 70px;
    background: rgba(220, 53, 69, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
    transition: 0.4s ease;
    border: 2px solid transparent;
}
.csp-premium-card:hover .csp-premium-icon {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
}
.csp-premium-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}
.csp-premium-card p {
    font-size: 15px;
    color: #999;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .csp-premium-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .csp-premium-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Custom Brand Page Template
   ========================================================================== */
.premium-brand-landing {
    font-family: 'Inter', sans-serif;
}
/* Hero */
.cb-hero {
    position: relative;
    padding: 180px 0 120px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
}
.cb-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(220,53,69,0.2) 100%);
    z-index: 1;
}
.cb-hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    text-transform: uppercase;
}
.cb-hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.cb-hero-subtitle {
    display: inline-block;
    background: var(--primary-color, #dc3545);
    color: #fff;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.cb-hero-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.cb-hero-desc {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #eee;
}
.cb-hero-actions a {
    margin-right: 15px;
}

/* Overview */
.cb-overview-section {
    padding: 100px 0;
    background: #fff;
}
.cb-overview-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}
.cb-overview-image-collage {
    flex: 1;
    position: relative;
}
.cb-img-main img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.cb-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    border: 10px solid #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.cb-img-secondary img { width: 100%; border-radius: 4px; }
.cb-experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--primary-color, #dc3545);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(220,53,69,0.3);
}
.cb-experience-badge .badge-icon { font-size: 24px; display: block; margin-bottom: 5px; }
.cb-experience-badge .badge-text { font-size: 14px; font-weight: 700; text-transform: uppercase; line-height: 1.2; }
.cb-overview-text {
    flex: 1;
}
.cb-section-subtitle {
    color: var(--primary-color, #dc3545);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.cb-section-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}
.cb-overview-lead {
    font-size: 20px;
    font-weight: 500;
    color: #444;
    margin-bottom: 20px;
}
.cb-overview-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}
.cb-stats-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}
.cb-stat-item .cb-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #111;
}
.cb-stat-item .cb-stat-label {
    font-size: 14px;
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
}

/* Services */
.cb-specialized-services {
    padding: 100px 0;
    background: #f8f9fa;
}
.cb-section-subtitle-center {
    color: var(--primary-color, #dc3545);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.cb-section-title-center {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 50px;
}
.cb-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.cb-service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}
.cb-service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color, #dc3545);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.cb-service-icon {
    width: 80px; height: 80px;
    background: rgba(220,53,69,0.1);
    color: var(--primary-color, #dc3545);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.cb-service-card h4 { font-size: 20px; font-weight: 800; margin-bottom: 15px; }
.cb-service-card p { color: #666; line-height: 1.6; margin: 0; }

/* Guarantee */
.cb-guarantee-section {
    background: #111;
    color: #fff;
    padding: 100px 0;
}
.cb-guarantee-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.cb-guarantee-text { flex: 1; }
.cb-guarantee-title { font-size: 42px; font-weight: 900; color: #fff; margin-bottom: 20px; }
.cb-guarantee-desc { font-size: 18px; color: #bbb; line-height: 1.8; margin-bottom: 30px; }
.cb-guarantee-list { list-style: none; padding: 0; margin: 0; }
.cb-guarantee-list li {
    font-size: 18px; font-weight: 600; margin-bottom: 15px;
    display: flex; align-items: center;
}
.cb-guarantee-list li svg { width: 24px; height: 24px; color: var(--primary-color, #dc3545); margin-right: 15px; }
.cb-guarantee-visual { flex: 1; position: relative; }
.cb-visual-box { position: relative; border-radius: 12px; overflow: hidden; }
.cb-visual-box img { width: 100%; display: block; }
.cb-visual-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(220,53,69,0.2);
    mix-blend-mode: multiply;
}
.cb-visual-badge {
    position: absolute; bottom: 30px; left: -30px;
    background: #111; padding: 20px 30px; border-radius: 12px;
    display: flex; align-items: center; gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}
.cb-visual-badge span { font-weight: 800; letter-spacing: 2px; }

/* Gallery */
.cb-gallery-section { padding: 100px 0; background: #fff; }
.cb-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cb-gallery-item { border-radius: 12px; overflow: hidden; height: 300px; }
.cb-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.cb-gallery-item:hover img { transform: scale(1.1); }

/* CTA */
.cb-cta-section { padding: 0 0 100px; background: #fff; }
.cb-cta-box {
    background: var(--primary-color, #dc3545);
    color: #fff; text-align: center; padding: 60px 40px; border-radius: 12px;
}
.cb-cta-box h2 { font-size: 36px; font-weight: 900; color: #fff; margin-bottom: 15px; }
.cb-cta-box p { font-size: 18px; margin-bottom: 30px; opacity: 0.9; }

@media (max-width: 991px) {
    .cb-overview-layout, .cb-guarantee-container { flex-direction: column; }
    .cb-services-grid { grid-template-columns: 1fr 1fr; }
    .cb-gallery-grid { grid-template-columns: 1fr; }
    .cb-hero-title { font-size: 42px; }
}
@media (max-width: 576px) {
    .cb-services-grid { grid-template-columns: 1fr; }
    .cb-stats-grid { flex-direction: column; gap: 15px; }
}

/* ==========================================================================
   Advanced SEO Brand Template
   ========================================================================== */
.advanced-seo-brand {
    font-family: 'Inter', sans-serif;
    color: #333;
}
.asb-subtitle, .asb-subtitle-center {
    color: var(--primary-color, #dc3545);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.asb-subtitle-center { text-align: center; }

/* 1. Hero Glassmorphism */
.asb-hero {
    position: relative;
    padding: 100px 0 160px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.asb-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}
.asb-hero .container { position: relative; z-index: 2; }
.asb-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 60px;
    max-width: 800px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.asb-trust-badges { margin-bottom: 25px; display: flex; gap: 15px; }
.asb-trust-badges .badge {
    background: rgba(255,255,255,0.1);
    color: #fff; padding: 6px 12px; border-radius: 30px; font-size: 13px; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}
.asb-trust-badges .badge i { color: #ffc107; margin-right: 5px; }
.asb-hero-title {
    font-size: 52px; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 25px;
}
.asb-hero-title span { color: var(--primary-color, #dc3545); }
.asb-hero-desc { font-size: 18px; color: #eee; line-height: 1.7; margin-bottom: 40px; }
.asb-hero-actions { display: flex; gap: 20px; }
.btn-large { padding: 15px 30px; font-size: 16px; font-weight: 700; border-radius: 8px; }
.btn-outline-light {
    display: inline-block; padding: 13px 30px; font-size: 16px; font-weight: 700; border-radius: 8px;
    border: 2px solid #fff; color: #fff; text-decoration: none; transition: 0.3s;
}
.btn-outline-light:hover { background: #fff; color: #111; }
.asb-scroll-down {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    text-align: center; color: #fff; z-index: 2; font-size: 12px; text-transform: uppercase; letter-spacing: 2px;
}
.asb-scroll-down .mouse {
    width: 24px; height: 36px; border: 2px solid #fff; border-radius: 12px; margin: 10px auto 0; position: relative;
}
.asb-scroll-down .wheel {
    width: 4px; height: 8px; background: #fff; border-radius: 2px;
    position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}
@keyframes scroll { 0% { top: 5px; opacity: 1; } 100% { top: 15px; opacity: 0; } }

/* 2. Asymmetrical Content Blocks */
.asb-content-blocks { padding: 100px 0; background: #fff; }
.asb-block { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; }
.asb-block:last-child { margin-bottom: 0; }
.asb-block-text { flex: 1; }
.asb-block-text h2 { font-size: 38px; font-weight: 900; margin-bottom: 25px; line-height: 1.2; }
.asb-block-text p { font-size: 17px; color: #555; line-height: 1.8; margin-bottom: 20px; }
.asb-feature-list { list-style: none; padding: 0; margin: 30px 0 0; }
.asb-feature-list li { font-size: 16px; font-weight: 600; margin-bottom: 15px; display: flex; align-items: center; }
.asb-feature-list li i { color: var(--primary-color, #dc3545); font-size: 20px; margin-right: 12px; }
.asb-block-image { flex: 1; position: relative; }
.asb-block-image .img-wrapper { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.asb-block-image img { width: 100%; display: block; }
.floating-stat {
    position: absolute; bottom: 30px; left: -30px; background: #fff; padding: 25px; border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); text-align: center; border-left: 5px solid var(--primary-color, #dc3545);
}
.floating-stat .stat-number { display: block; font-size: 36px; font-weight: 900; color: #111; line-height: 1; margin-bottom: 5px; }
.floating-stat .stat-text { font-size: 14px; color: #666; font-weight: 700; text-transform: uppercase; }
.glass-overlay {
    position: absolute; bottom: 20px; right: 20px;
    background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 15px 25px; border-radius: 10px; font-weight: 800; color: #111; font-size: 18px;
}
.glass-overlay i { color: var(--primary-color, #dc3545); margin-right: 8px; }

/* 3. Services Grid */
.asb-services-grid-section { padding: 100px 0; background: #f4f6f9; position: relative; overflow: hidden; }
.asb-bg-shapes {
    position: absolute; top: -100px; right: -100px; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(220,53,69,0.05) 0%, rgba(244,246,249,0) 70%); border-radius: 50%;
}
.asb-services-grid-section .section-header h2 { font-size: 42px; font-weight: 900; margin-bottom: 20px; }
.asb-services-grid-section .section-header p { font-size: 18px; color: #666; max-width: 600px; margin: 0 auto 50px; }
.asb-glass-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; z-index: 2; }
.asb-glass-item {
    background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid #fff; padding: 40px; border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.asb-glass-item:hover { transform: translateY(-10px); background: #fff; box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.asb-glass-item .icon {
    width: 60px; height: 60px; background: rgba(220,53,69,0.1); color: var(--primary-color, #dc3545);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 25px;
}
.asb-glass-item h3 { font-size: 22px; font-weight: 800; margin-bottom: 15px; }
.asb-glass-item p { color: #666; line-height: 1.6; margin: 0; }

/* 4. FAQ Section */
.asb-faq-section { padding: 100px 0; background: #fff; }
.asb-faq-layout { display: flex; gap: 60px; }
.asb-faq-text { flex: 1; }
.asb-faq-text h2 { font-size: 38px; font-weight: 900; margin-bottom: 25px; line-height: 1.2; }
.asb-faq-text p { font-size: 18px; color: #666; line-height: 1.7; }
.asb-accordion { flex: 1.5; }
.accordion-item { border-bottom: 1px solid #eee; margin-bottom: 15px; }
.accordion-header {
    width: 100%; text-align: left; background: none; border: none; padding: 20px 0;
    font-size: 18px; font-weight: 700; color: #111; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.accordion-header i { transition: 0.3s; color: var(--primary-color, #dc3545); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.accordion-content p { padding: 0 0 20px 0; color: #555; line-height: 1.7; margin: 0; }
.accordion-item.active .accordion-header i { transform: rotate(180deg); }

/* 5. CTA Section */
.asb-cta-section { padding: 0 0 100px; background: #fff; }
.asb-cta-box {
    background: #111; color: #fff; padding: 80px 40px; border-radius: 20px; text-align: center; position: relative; overflow: hidden;
}
.cta-bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(220,53,69,0.2) 0%, transparent 50%); pointer-events: none;
}
.asb-cta-box h2 { font-size: 42px; font-weight: 900; color: #fff; margin-bottom: 20px; position: relative; z-index: 2; }
.asb-cta-box p { font-size: 20px; color: #bbb; margin-bottom: 40px; position: relative; z-index: 2; }
.asb-cta-buttons { position: relative; z-index: 2; display: flex; justify-content: center; gap: 20px; }
.btn-light-solid {
    background: #fff; color: #111; display: inline-block; padding: 15px 35px; border-radius: 8px; font-weight: 800; font-size: 16px; text-decoration: none; transition: 0.3s;
}
.btn-light-solid:hover { background: var(--primary-color, #dc3545); color: #fff; }

@media (max-width: 991px) {
    .asb-hero-title { font-size: 40px; }
    .asb-block, .asb-faq-layout { flex-direction: column; gap: 40px; }
    .asb-block-left { flex-direction: column-reverse; }
    .floating-stat { left: 20px; bottom: 20px; }
    .asb-glass-grid { grid-template-columns: 1fr 1fr; }
    .asb-cta-box h2 { font-size: 32px; }
}
@media (max-width: 576px) {
    .asb-hero-actions { flex-direction: column; }
    .asb-glass-grid { grid-template-columns: 1fr; }
    .asb-cta-buttons { flex-direction: column; }
}



/* ==========================================================================
   Brand Archive Page (Standard Bright)
   ========================================================================== */
.brand-archive-page {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #f9f9fc; /* Bright standard background */
}

/* 1. Hero */
.ba-hero {
    position: relative;
    padding: 100px 0 80px;
    background: var(--primary-color, #dc3545);
    text-align: center;
    overflow: hidden;
}
.ba-hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}
.ba-hero-container { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; color: #fff; }
.ba-subtitle {
    color: rgba(255,255,255,0.8);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.ba-hero-title { 
    font-size: 48px; 
    font-weight: 900; 
    margin-bottom: 20px; 
    line-height: 1.2;
    color: #fff;
}
.ba-hero-desc { font-size: 18px; color: rgba(255,255,255,0.9); line-height: 1.6; }

/* 2. Grid (White Tiles) */
.ba-grid-section { padding: 80px 0; background: #f9f9fc; }
.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.ba-tile {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}
.ba-tile-link {
    text-decoration: none;
    display: block;
    color: inherit;
}
.ba-tile-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}
.ba-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ba-tile-content {
    padding: 25px 30px;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ba-tile-title {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin: 0;
    text-transform: uppercase;
}
.ba-tile-action {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color, #dc3545);
    display: flex;
    align-items: center;
    gap: 8px;
}
.ba-tile-action i {
    transition: transform 0.3s ease;
}

/* Hover Effects */
.ba-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.ba-tile:hover .ba-tile-image img {
    transform: scale(1.08);
}
.ba-tile:hover .ba-tile-action i {
    transform: translateX(5px);
}

/* 3. CTA */
.ba-cta-section { padding: 60px 0 120px; background: #f9f9fc; }
.ba-cta-box {
    background: #111111;
    padding: 70px 40px; border-radius: 20px; text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.ba-cta-box h2 { font-size: 36px; font-weight: 800; color: #ffffff; margin-bottom: 15px; }
.ba-cta-box p { font-size: 18px; color: #aaaaaa; margin-bottom: 35px; max-width: 650px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.ba-cta-actions { display: flex; justify-content: center; gap: 20px; }
.ba-cta-box .btn-outline-primary {
    display: inline-block; padding: 15px 35px; font-size: 16px; font-weight: 700; border-radius: 8px;
    border: 2px solid #ffffff; color: #ffffff; text-decoration: none; transition: 0.3s;
}
.ba-cta-box .btn-outline-primary:hover { background: #ffffff; color: #111111; }

@media (max-width: 768px) {
    .ba-hero-title { font-size: 36px; }
    .ba-grid { grid-template-columns: 1fr; }
    .ba-cta-actions { flex-direction: column; }
}

/* Appointment Modal CSS */
.appointment-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    backdrop-filter: blur(5px);
}

.appointment-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.appointment-modal-close {
    color: #999;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.appointment-modal-close:hover,
.appointment-modal-close:focus {
    color: #333;
    text-decoration: none;
}

.appointment-modal h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    color: #333;
    text-align: center;
}

.appointment-modal p {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
}

.appointment-form .form-group {
    margin-bottom: 20px;
}

.appointment-form input[type="text"],
.appointment-form input[type="email"],
.appointment-form input[type="tel"],
.appointment-form input[type="date"],
.appointment-form input[type="time"],
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    border-color: var(--primary-color, #e3000f);
    outline: none;
    box-shadow: 0 0 0 3px rgba(227, 0, 15, 0.1);
}

.appointment-form textarea {
    resize: vertical;
}

.appointment-form .btn-primary {
    display: block;
    margin: 0 auto;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ff3344 0%, #e3000f 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(227, 0, 15, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.appointment-form .btn-primary:hover {
    background: linear-gradient(135deg, #ff4d5a 0%, #c7000d 100%);
    box-shadow: 0 6px 20px rgba(227, 0, 15, 0.4);
    transform: translateY(-2px);
}

.appointment-form .btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(227, 0, 15, 0.3);
}

.appointment-form .form-group-split {
    display: flex;
    gap: 15px;
}

.appointment-form .form-group-split input {
    flex: 1;
}



/* Sticky Header Site-Header Styles */
.site-header {
    background-color: var(--white);
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
}

.site-header.is-sticky.scroll-up {
    transform: translateY(0);
}

.site-header.is-sticky.scroll-down {
    transform: translateY(-100%);
}

body.admin-bar .site-header.is-sticky {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar .site-header.is-sticky {
        top: 46px;
    }
}

/* ==========================================================================
   Responsive Styles for Mobile and Tablet
   ========================================================================== */
.menu-toggle {
    display: none;
}

@media screen and (max-width: 991px) {
    /* Header & Top Bar */
    .header-main-inner {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        position: relative;
    }
    
    .menu-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1000;
        margin-right: auto;
    }
    
    .hamburger-icon {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
    }
    
    .hamburger-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transition: .25s ease-in-out;
    }
    
    .hamburger-icon span:nth-child(1) { top: 0px; }
    .hamburger-icon span:nth-child(2) { top: 8px; }
    .hamburger-icon span:nth-child(3) { top: 16px; }
    
    .menu-toggle.active .hamburger-icon span:nth-child(1) {
        top: 8px;
        transform: rotate(135deg);
    }
    .menu-toggle.active .hamburger-icon span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }
    .menu-toggle.active .hamburger-icon span:nth-child(3) {
        top: 8px;
        transform: rotate(-135deg);
    }
    
    /* Navigation Menu */
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 999;
    }
    
    .main-navigation.toggled {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .main-navigation ul li {
        width: 100%;
    }
    
    .main-navigation ul li a {
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid #f1f5f9;
    }
    
    /* Top Bar */
    .top-bar-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .top-bar-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .review-item {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }
    
    /* Grids */
    .services-grid, 
    .features-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Footer */
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media screen and (max-width: 767px) {
    /* Header Adjustments */
    .header-action {
        display: none; /* Hide appointment button on small screens */
    }
    .header-main-inner {
        grid-template-columns: auto 1fr;
    }
    .site-branding img {
        max-height: 40px;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    
    /* Grids */
    .services-grid, 
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Process Section */
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    /* About Section */
    .about-content-wrapper {
        flex-direction: column;
    }
    
    /* Contact Page */
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-widgets {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-widget .social-links {
        justify-content: center;
    }
    
    .site-info-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
