/************ // Fonts // ************/
@font-face {
    font-family: 'Hermes';
    src: url('/wp-content/themes/genesis-sample/fonts/Hermes-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Hermes';
    src: url('/wp-content/themes/genesis-sample/fonts/Hermes.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}
/************ // General HTML Tags // ************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: 'Hermes', Arial, sans-serif;
    font-feature-settings: normal !important;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Hermes', Arial, sans-serif;
}

h2{
    font-weight: bold;
    font-style: italic;
}

.entry-title {
    display: none;
}

hr {
    border: 0;
    border-collapse: collapse;
    border-top: 2px solid #e5e5e5;
    clear: both;
    margin-bottom: 50px;
}

/************ // Site Structure // ************/
.site-inner {
    clear: both;
    padding-top: 0;
    word-wrap: break-word;
}

.site-inner, .wrap {
    margin: 0 auto;
    max-width: 100%;
}

.entry {
    background-color: #fff;
    margin-bottom: 0;
    padding:0;
}


/************ // Arrows // ************/
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next {
    background: url('/wp-content/uploads/2026/04/Arrow-Red-Right.png') no-repeat center;
    background-size: contain;
    width: 50px;
    height: 50px;
}

.swiper-button-prev {
    background: url('/wp-content/uploads/2026/04/Arrow-Red-Left.png') no-repeat center;
    background-size: contain;
    width: 50px;
    height: 50px;
}

.swiper-button-next img,
.swiper-button-prev img {
    width: 40px;
    height: auto;
}

.swiper-button-next, .swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
}

/************ // Header // ************/
.site-header > .wrap {
    padding: 0;
}

/* ===== MAIN HEADER WRAPPER ===== */
.custom-header-custom {
    display: flex;
    width: 100%;
    min-height: 120px;
     align-items: stretch;
}

/* ===== LEFT: LOGO BLOCK ===== */
.logo-block {
    background: #ee2642;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 333px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.logo-block img {
    height: 50px;
}

/* ===== RIGHT SIDE (2 ROWS) ===== */
.header-right {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #e5e5e5;
    padding: 6px 20px;
    margin-left: -14px;
    font-size: 13px;
    text-align: right;
}

.top-bar a {
    color: #000;
}

.top-bar a:hover{
    color: #ee2642 !important;
}
/* ===== BOTTOM HEADER ===== */
.bottom-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 20px;
}

/* ===== NAV MENU (CENTERED) ===== */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a:active{
    color: #ee2642 !important;
}

/* ===== CONTACT BUTTON (RIGHT) ===== */
.contact-btn {
    background: #ee2642;
    padding: 12px 30px;
    transform: skew(-20deg);
    font-weight: 700;
}

.contact-btn a{
    color: #fff;
}

.contact-btn a:hover{
    color: #333;
}

.contact-btn span {
    display: inline-block;
    transform: skew(20deg);
}

.inner-wrap {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/************ // Menu // ************/
.genesis-nav-menu {
    display: none;
}

button#mobile-genesis-nav-primary {
    display: none;
}

.dashicons, .dashicons-before:before {
    display: none;
}

@media (max-width: 768px) {

    .menu-center {
        display: flex;
        align-items: center;
    }

	.custom-header-custom {
		flex-direction: column;
		min-height: auto;
	}

	/* ===== LOGO ===== */
    .logo-block {
        flex: 1;
        clip-path: none;
        display: flex;
        justify-content: center;
        padding: 15px 0;
    }

	.logo-block img {
		height: 40px;
	}

	/* ===== TOP BAR ===== */
	.top-bar {
		text-align: center;
		font-size: 12px;
		padding: 8px 10px;
	}

	/* ===== BOTTOM HEADER WRAP ===== */
	.bottom-header {
		position: relative;
		flex-wrap: wrap;
		padding: 10px 15px;
		gap: 10px;
	}

	/* ===== HAMBURGER MENU BUTTON ===== */
	.menu-toggle {
		display: flex;
		flex-direction: column;
		gap: 5px;
		cursor: pointer;
		margin-left: auto;
	}

	.menu-toggle span {
		width: 25px;
		height: 3px;
		background: #000;
		display: block;
	}

	/* ===== NAV MENU DROPDOWN ===== */
	.nav-menu {
		display: none;
		width: 100%;
		background: #fff;
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 999;
		box-shadow: 0 10px 25px rgba(0,0,0,0.1);
	}

	.nav-menu.active {
		display: block;
	}

	.nav-menu ul {
		flex-direction: column;
		gap: 0;
		padding: 10px 0;
	}

	.nav-menu ul li {
		border-bottom: 1px solid #eee;
		text-align: center;
		padding: 12px 0;
	}

	.nav-menu a {
		display: block;
		font-size: 14px;
	}

    .js nav button:hover, .js .menu-toggle:hover, .js .nav-primary {
        background-color: #fff;
        color: #000;
        align-items: center;
    }
}

.sticky-menu {
    position: fixed;
    right: 0;
    top: 56%;
    transform: translateY(-50%);
    z-index: 999;
}

/* Each item */
.sticky-menu-item {
    display: flex;
    align-items: center;
    margin: 2px 0;
    width: 60px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Icon */
.sticky-menu-item img {
    width: 60px;
    height: auto;
}

/* Text hidden initially */
.sticky-menu-item span {
    white-space: nowrap;
    margin-left: 10px;
    opacity: 0;
    transition: 0.3s;
    color: #fff;
    font-size: 14px;
}

/* Hover effect */
.sticky-menu-item:hover {
    width: 220px;
    background: #777e84; 
}

/* Show text on hover */
.sticky-menu-item:hover span {
    opacity: 1;
}

/* Default state (not sticky yet) */
.vehicle-sticky-bar {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 15px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative;
    z-index: 10;
}

.vehicle-sticky-bar h6, 
.vehicle-sticky-bar h4{
    margin: 0;
}

/* Sticky state */
.vehicle-sticky-bar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    animation: slideDown 0.3s ease;
}

.right{
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Smooth entry */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
/************ // Content // ************/

/*** Home Page - About Section***/
.home-about {
    width: 100%;
    padding: 80px 20px; 
    background: #fff; 
}

.home-about-content {
    max-width: 60%;   
    margin: 0 auto;     
    text-align: center;
}

.home-about-content h2, .vehicle-container h2{
    font-size: 32px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 20px;
}

.home-about-content p, .vehicle .vehicle-container p{
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;   
}

.vehicle .vehicle-container p{
    text-align: center; 
}

/* ===== MODEL RANGE SECTION ===== */
.vehicle.ranger {
    background: #f1f1f1;
    padding: 80px 20px;
}

.vehicle-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vehicle-container h2{
    text-align: center;
}

.vehicle-slider {
    gap: 30px;
}

.vehicle-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vehicle-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===== RED INFO BLOCK ===== */
.vehicle-info {
    background: #ee2642;
    color: #fff;
    padding: 20px;
    margin-top: auto;
    min-height: 260px;
    text-align: center;
}

.vehicle-info h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.vehicle-info p {
    font-size: 14px;
}

.single-variants{
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.car-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.car-img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    margin-bottom: 15px;
}

.car-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.car-info .variant {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.car-info .price {
    font-size: 20px;
    font-weight: bold;
    color: #ee2642; 
}

/* ===== SECTION ===== */
.find-dealer {
    padding: 80px 0;
    background: #fff;
    padding-bottom: 0;
}

/* ===== TITLE ===== */
.dealer-title {
    font-size: 32px;
    text-align: center;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 40px;
}

/* ===== WRAPPER ===== */
.dealer-wrapper {
    display: flex;
    margin: 0 auto;
}

/* ===== MAP ===== */
.map {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

/* ===== RIGHT SIDE ===== */
.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 70px;
}

/* ===== DEALER CARD ===== */
.dealer-card {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

/* ===== ICON STYLE (optional future upgrade) ===== */
.dealer-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.dealer-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}

.dealer-card span {
    color: #ee2642;
    font-weight: 600;
}

.dealer-address,
.dealer-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 6px 0;
}

.dealer-address img,
.dealer-phone img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

/* Optional polish */
.dealer-phone a {
	color: #555;
	text-decoration: none;
}

.dealer-phone a:hover {
	text-decoration: underline;
}

/************ MODELS ************/
/* ===== SECTION ===== */
.vehicle-grid {
    background: #F1F1F1;
    padding: 80px 20px;
    padding-top: 0PX;
}

.models-dark-bg{
    background: #E5E5E5;
    padding: 80px 20px;
}

/* ===== CONTAINER ===== */
.vehicle-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vehicle-container.single {
    max-width: 600px;
    margin: 0 auto;
}

/* ===== GRID ===== */
.vehicle-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== CARD ===== */
.vehicle-item {
    background: #fff;
    border-bottom: 15px solid #ee2642;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
}

/* HOVER EFFECT */
.vehicle-item:hover {
    transform: translateY(-5px);
}

/* ===== IMAGE ===== */
.vehicle-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vehicle-img img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

/* ===== CONTENT ===== */
.vehicle-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vehicle-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* ===== SKEW BUTTON ===== */
.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ee2642;
    color: #fff;
    padding: 12px 40px;
    transform: skew(-20deg);
    text-decoration: none;
    line-height: 1;
    border: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}

.explore-btn span {
    display: inline-block;
    transform: skew(20deg);
    line-height: 1;
}
/************ Service and Parts ************/
.service-block { max-width: 1200px; margin: 0 auto; display: flex; gap: 40px; align-items: stretch; }
.services {
    padding: 80px 20px;
    background: #f5f5f5;
}

/* ===== BLOCK LAYOUT ===== */
.service-image {
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: fill; 
}

/* ===== CONTENT ===== */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ===== HEADING (NOT SKEWED) ===== */
.service-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
    margin-left: 40px;
}

/* ===== SKEWED TEXT BLOCK ===== */
.skew-list {
    list-style: none;
    margin-bottom: 30px;
    transform: skew(-12deg);
}

.skew-list li {
    transform: skew(12deg); 
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1;
}

.skew-text {
    transform: skew(-12deg); 
    font-size: 16px;
}

.skew-text span{
    transform: skew(12deg); 
    line-height: 1;
}

/* ===== BUTTON AT BOTTOM ===== */
.service-button {
    display: flex;
    justify-content: flex-end;
}

.service-btn {
    margin-top: auto; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ee2642;
    color: #fff;
    padding: 12px 40px;
    transform: skew(-20deg);
    text-decoration: none;
    line-height: 1;
    border: none;
}

.service-btn span {
    display: inline-block;
    transform: skew(20deg);
    line-height: 1;
}

.bottom-services {
    max-width: 100%;
    background: #f5f5f5;
    margin: 0 auto;
    padding-bottom: 80px;
}

.bottom-services .text-content{
    max-width: 80%;
    margin: 0 auto;
}

.bottom-services ul {
    list-style: none; 
    padding-left: 0;
    margin-left: 0;  
}

.bottom-services ul li{
    list-style-type: none;
    font-size: 16px; 
}

.bottom-services  {
    font-size: 16px;
}
/************ Single Model************/

.overview {
    width: 100%;
    padding: 80px 20px;
    background: #fff;
    padding-bottom: 10px;
}

.overview-content{
    max-width: 60%;
    margin: 0 auto;
}

.overview h2 {
    font-size: 32px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 20px;
}

.model-name h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.model-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.gallery {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
}

.gallery-grid {
    max-width: 80%;
    display: grid;
    grid-template-columns: 2fr 1fr;  
    grid-template-rows: 1fr 1fr;     
    gap: 20px;
    height: 500px; 
}

.gallery-item.large {
    grid-row: span 2; 
}

.gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery img {
    border: none;
    height: auto;
    padding: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}
/************ // WooCommerce // ************/
/* ===== ACCORDION ===== */
.specs-accordion {
    max-width: 1200px;
    margin: 0 auto;
}

/* ITEM */
.accordion-item {
    border-bottom: 1px solid #ddd;
}

/* HEADER */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px 0;
}

.accordion-header h3 {
    font-size: 22px;
    font-weight: 600;
}

/* ICON */
.accordion-header .icon {
    font-size: 24px;
    color: #ee2642;
    transition: 0.3s;
}

/* CONTENT */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* ACTIVE */
.accordion-item.active .accordion-content {
    max-height: 500px; /* enough space */
}

.accordion-item.active .icon {
    content: "–";
}

/* GRID */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 20px;
}

/* ITEMS */
.feature-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    color: #555;
}

.feature-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 100px;      
    height: 100px;     
    flex-shrink: 0;    
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
}

/* Table */
/* ===== SECTION ===== */
.specs-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0px;
}

/* ===== TITLE ===== */
.specs-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.spec-title {
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 2;
}

.spec-section-title, .variant-name {
    font-weight: 700;
}

/* ===== TABLE WRAPPER (SCROLL MAGIC) ===== */
.specs-table-wrapper {
    max-height: 350px; 
    overflow-y: auto;
    border: 1px solid #ddd;
}

.specs-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ===== TABLE ===== */
.specs-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}



/* ===== ROWS ===== */
.specs-table tr {
    border-bottom: 1px solid #ddd;
}

/* ===== CELLS ===== */
.specs-table td {
    padding: 12px 15px;
    font-size: 15px;
}

/* LEFT COLUMN */
.specs-table td:first-child {
    width: 35%;
    color: #333;
}

/* RIGHT COLUMN */
.specs-table td:last-child {
    color: #555;
}

.variant-row td {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 3;
}

/* ===== SCROLLBAR (modern styling) ===== */
.specs-table-wrapper::-webkit-scrollbar {
    width: 6px;
}

.specs-table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.specs-table-wrapper::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

.specs-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #ee2642;
}

/************ Contact Us Section ************/
.contact-section {
	background: #efefef;
	padding: 60px 20px;
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
}

.contact-container h2 {
	font-weight: 700;
	margin-bottom: 20px;
}

/* ===== DEALER SWITCH ===== */
.dealer-switch {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.dealer-switch span{
    font-weight: 700;
}

.dealer {
	padding: 10px 25px;
	border: 1px solid #ccc;
	background: transparent;
	cursor: pointer;
    color:#ccc;
    transform: skew(-20deg);
}

.dealer.active {
	background: #ee2642;
	color: #fff;
	border: none;
}

/* ===== ADDRESS ===== */
.dealer-address {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* ===== BUTTONS ===== */
.dealer-actions {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

.btn {
    padding: 10px 30px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    font-weight: 700;
}

.btn.call, .btn.whatsapp, .btn.enquire, .btn.enquire-transparent{
    display: flex;
    justify-content: center;
    align-items: center;
    transform: skew(-20deg);
}

.btn.whatsapp {
	background: #25d366;
}

.btn.call {
	background: #444;
}

.btn.enquire {
	background: #ee2642;
}

.btn.enquire-transparent {
    background: transparent;        
    color: #ee2642;                 
    border: 2px solid #ee2642;    
}

.btn.call img, .btn.whatsapp img{
    width: 36px;
    height: 36px;
}

.btn.call span, .btn.whatsapp span, .btn.enquire span, .btn.enquire-transparent span, .dealer span, .form-area button span, .quform-4 .quform-button-submit button span, .quform-button-back-default>button span, .quform-button-next-default>button span, .quform-button-submit-default>button span{
    display: inline-block;
    transform: skew(20deg);
}

.btn.enquire-transparent:hover {
    background: #ee2642;
    color: #fff;
}

/* ===== GRID ===== */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.map {
	height: 350px;
	background: #ddd;
}

.form-area input,
.form-area textarea {
	width: 100%;
	padding: 12px;
	margin-bottom: 15px;
	border: none;
	background: #eaeaea;
}

.form-area button, .quform-4 .quform-button-submit button, .quform-button-back-default>button, .quform-button-next-default>button, .quform-button-submit-default>button {
    background: #ee2642;
    color: #fff;
    padding: 12px 40px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transform: skew(-20deg);
}

.bottom-buttons {
    width: 100%;
    padding: 10px 20px;
    background: #fff;
}

.bottom-buttons .right {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

/************ Stick Me ************/
.facebook-dropdown {
    position: relative;
    cursor: pointer;
}

.facebook-dropdown-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.facebook-dropdown:hover .facebook-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.facebook-dropdown-menu a {
    display: block;
    padding: 12px 15px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.facebook-dropdown-menu a:hover {
    background: #f4f4f4;
}

/************ // Footer // ************/
.site-footer {
    background-color: #333333; 
    border-top: 1px solid #eee;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    padding: 60px 0;
    padding-bottom: 20px;
    text-align: left;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 180px;
}

.footer-section h3 {
    color: #ee2642;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ee2642;
}

.contact p {
    color: #ccc;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.email-icon {
    font-size: 18px;
}

.social a {
    color: #ccc;
    text-decoration: none;
    font-size: 24px;
    margin-right: 15px;
    display: inline-block;
    transition: color 0.3s;
}

.social a:hover {
    color: #e67e22;
}

.copyright {
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

.footer-branding {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

/* Logos */
.company-logo img,
.rokkit-logo img {
    max-height: 75px;
    width: auto;
    display: block;
    opacity: 0.9;
    transition: 0.3s ease;
}

.company-logo img:hover,
.rokkit-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.site-footer hr {
    border: 0;
    border-collapse: collapse;
    border-top: 1px solid #e5e5e5;
    clear: both;
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-section h3 {
        border-left: none;
        padding-left: 0;
    }
    .contact p {
        justify-content: center;
    }
}
      
/************ // Responsive // ************/

@media screen and (max-width: 1200px) { /* Laptop */

}

@media screen and (max-width: 1024px) { /* Older Desktop */

}

@media screen and (max-width: 768px) { /* iPad */
    .vehicle-slider {
		padding-bottom: 40px;
	}

	.vehicle-slider .swiper-slide {
		width: 85% !important; /* makes nice card preview */
	}

	.swiper-button-next,
	.swiper-button-prev {
		display: none; /* cleaner mobile UX */
	}

    .vehicle-info {
		min-height: 250px;
		padding: 15px;
	}

	.vehicle-info h3 {
		font-size: 16px;
	}

	.vehicle-info p {
		font-size: 13px;
		line-height: 1.4;
	}

    .vehicle-card {
		overflow: hidden;
	}

    .dealer-wrapper {
        flex-direction: column;
    }

    .map {
        min-height: auto;
    }

    .contact-details {
        padding: 60px 20px;
    }

    .site-inner {
        padding: 0;
    }

    .home-about-content {
        max-width: 100%;
    }

    .vehicle-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .service-block {
        flex-direction: column;
    }

    .service-button {
        justify-content: center;
        padding-top: 10px;
    }

    .bottom-header {
        position: relative;
        flex-wrap: wrap;
        padding: 10px 15px;
        gap: 10px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .services {
        padding-bottom: 0;
    }

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

    .service-block {
        gap: 0px;
    }

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

    .top-bar {
        margin-left: 0;
    }

    .vehicle-sticky-bar {
        flex-direction: column;
    }

    .right {
        flex-direction: column;
        align-items: unset;
    }

    .overview-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .gallery-grid {
        max-width: 90%;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        height: auto;
    }

    .accordion-header {
        padding: 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .specs-section h2 {
        padding-left: 10px;
    }

    .vehicle-sticky-bar h6, 
    .vehicle-sticky-bar h4{
        margin: 0 0 10px;
    }

    .specs-table td {
        padding: 10px;
        font-size: 13px;
    }

    .spec-title {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) { /* iPhone 6 Plus, Landscape Display */

}

@media screen and (max-width: 320px) { /* iPhone 4,5, Portrait Display */

}

/* ===== SUBMENU BASE ===== */
.nav-menu ul li {
    position: relative;
}

/* Hide submenu by default */
.nav-menu ul .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 10px 0;
    z-index: 999;
}

/* Show on hover */
.nav-menu ul li:hover > .sub-menu {
    display: block;
}

/* Submenu items */
.sub-menu li {
    padding: 10px 20px;
    text-align: left;
    font-family: 'Hermes', Arial, sans-serif;
    font-size: 16px;
}

.sub-menu li a {
    font-weight: 500;
    color: #333;
}

.sub-menu li a:hover {
    color: #ee2642;
}

@media (max-width: 768px) {

    /* Hide submenus */
    .sub-menu {
        display: none;
        position: static;
        box-shadow: none;
        background: #f9f9f9;
    }

    /* Show when active */
    .menu-item.submenu-open > .sub-menu {
        display: block;
    }

    .sub-menu li {
        padding: 10px;
    }
}