/*
Theme Name: Protech2026
Description: Custom WordPress theme built on BlankSlate framework with ACF page builder functionality, responsive design, and modern features.
Author: Web Solutions IOM
Author URI: https://www.websolutions.im
Version: 1.0
Requires at least: 5.2
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: protech2026
Tags: custom-menu, featured-images, threaded-comments, translation-ready, page-builder
*/

/* ========================================
   CSS CUSTOM PROPERTIES (CSS VARIABLES)
   PROTECH VEHICLE SERVICES BRAND
   ======================================== */
:root {
	/* ===== PROTECH PRIMARY BRAND COLORS ===== */
	--color-primary: #3FD588;           /* Protech Green - Primary brand color */
	--color-primary-dark: #2DB870;      /* Protech Green Dark - Hover states, darker accents */
	--color-primary-light: #5FE09E;     /* Protech Green Light - Light accents, hover backgrounds */
	--color-primary-tint: #E8F8F0;      /* Protech Green Tint - Very light backgrounds */

	/* ===== DARK SECTION BACKGROUNDS ===== */
	--color-bg-dark: #1A1A1A;           /* Deep Charcoal - Primary dark backgrounds (hero, header, footer) */
	--color-bg-dark-secondary: #2A2A2A; /* Dark Secondary - Secondary dark backgrounds, cards on dark */
	--color-bg-dark-elevated: #333333;  /* Dark Elevated - Hover states on dark, elevated elements */
	--color-dark-border: #404040;       /* Dark Border - Borders and dividers on dark backgrounds */

	/* ===== LIGHT SECTION BACKGROUNDS ===== */
	--color-bg-primary: #FFFFFF;        /* Pure White - Primary light backgrounds, cards */
	--color-bg-secondary: #F8F9FA;      /* Off White - Alternate light backgrounds, subtle sections */
	--color-bg-light: #F8F9FA;          /* Light Grey (alias for bg-secondary) */
	--color-bg-accent: #E8F8F0;         /* Green Tint - Accent backgrounds */
	--color-light-gray: #E9ECEF;        /* Light Grey - Borders on light, dividers */
	--color-border-light: #E9ECEF;      /* Light Border - Borders on light backgrounds */
	--color-border-medium: #DEE2E6;     /* Medium Grey - Disabled states, inactive elements */

	/* ===== TEXT COLORS - DARK SECTIONS ===== */
	--color-text-light-primary: #FFFFFF;   /* White - Primary text on dark backgrounds */
	--color-text-light-secondary: #B8B8B8; /* Light Grey - Secondary text on dark backgrounds */
	--color-text-light-muted: #888888;     /* Muted Grey - Muted text, captions on dark */
	--color-text-green: #3FD588;           /* Green - Accent text, links on dark */

	/* ===== TEXT COLORS - LIGHT SECTIONS ===== */
	--color-text-primary: #1A1A1A;         /* Deep Charcoal - Primary text on light backgrounds */
	--color-text-secondary: #495057;       /* Dark Grey - Secondary text on light backgrounds */
	--color-text-muted: #6C757D;           /* Muted Dark - Muted text, captions on light */
	--color-text-green-dark: #2DB870;      /* Green Dark - Accent text, links on light (better contrast) */
	--color-text-white: #FFFFFF;           /* White - For use on dark backgrounds */
	--color-text-light: #6C757D;           /* Alias for text-muted */

	/* ===== LEGACY COMPATIBILITY (mapped to Protech colors) ===== */
	--color-secondary: #495057;            /* Mapped to text-secondary */
	--color-secondary-dark: #1A1A1A;       /* Mapped to bg-dark */
	--color-secondary-light: #B8B8B8;      /* Mapped to text-light-secondary */
	--color-accent: #3FD588;               /* Mapped to primary green */
	--color-white: #FFFFFF;                /* Pure white */
	--color-border-dark: #404040;          /* Dark borders */

	/* ===== BUTTON COLORS ===== */
	--color-button-primary: #3FD588;       /* Protech Green - Primary buttons */
	--color-button-primary-hover: #2DB870; /* Protech Green Dark - Primary button hover */
	--color-button-text: #1A1A1A;          /* Dark text on green buttons */
	--color-button-text-alt: #1a1a1a;      /* White text alternative */
	--color-button-border: #3FD588;        /* Green border for outline buttons */
	--color-button-blue: #3498DB;          /* Info blue */
	--color-button-blue-hover: #2980B9;    /* Info blue hover */
	--color-button-orange: #F39C12;        /* Warning orange */
	--color-button-green: #3FD588;         /* Success green (Protech primary) */

	/* ===== CONTACT FORM 7 & FORM COLORS ===== */
	--color-form-bg: #F8F9FA;              /* Light form backgrounds */
	--color-form-border: #3FD588;          /* Protech green form borders */
	--color-form-text: #1A1A1A;            /* Dark form text */
	--color-form-error: #E74C3C;           /* Error red */

	/* ===== HEADER COLORS ===== */
	--color-header-h1: #1A1A1A;            /* H1 - Deep charcoal on light, white on dark */
	--color-header-h2: #1A1A1A;            /* H2 - Deep charcoal on light, white on dark */
	--color-header-h3: #3FD588;            /* H3 - Protech green accent */
	--color-header-h4: #495057;            /* H4 - Secondary text color */
	--color-header-h5: #495057;            /* H5 - Secondary text color */
	--color-header-h6: #6C757D;            /* H6 - Muted text color */

	/* ===== LINK COLORS ===== */
	--color-link: #3FD588;                 /* Protech green links */
	--color-link-hover: #2DB870;           /* Protech green dark hover */
	--color-link-footer: #B8B8B8;          /* Light grey footer links */
	--color-link-footer-hover: #3FD588;    /* Green footer link hover */

	/* ===== STATUS/FUNCTIONAL COLORS ===== */
	--color-success: #3FD588;              /* Success - Protech green */
	--color-warning: #F39C12;              /* Warning - Orange */
	--color-error: #E74C3C;                /* Error - Red */
	--color-info: #3498DB;                 /* Info - Blue */

	/* ===== TYPOGRAPHY - FONT FAMILIES ===== */
	--font-body: 'Open Sans', 'Lato', sans-serif;      /* Body text - Professional & readable */
	--font-heading: 'Montserrat', sans-serif;          /* Headings - Modern & bold */
	--font-display: 'Poppins', sans-serif;             /* Display/Hero - Optional alternative */

	/* ===== SPECIAL EFFECTS & OVERLAYS ===== */
	--overlay-dark: rgba(0, 0, 0, 0.6);                /* Dark overlay for images */
	--overlay-green: rgba(63, 213, 136, 0.15);         /* Green tinted overlay */
	--shadow-dark: rgba(0, 0, 0, 0.2);                 /* Box shadows for depth */
	--shadow-green: rgba(63, 213, 136, 0.3);           /* Green glow on buttons/CTAs */

	/* ===== BORDER RADIUS ===== */
	--border-radius-small: 4px;
	--border-radius-medium: 8px;
	--border-radius-large: 16px;
	
	/* Background variations for grid items */
	--color-background-light: #f8f9fa;
}

/* ========================================
   BROWSER RESET & NORMALIZE
   ======================================== */

/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

/* Base HTML elements */
html { scroll-behavior: smooth; }

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

blockquote, q { quotes: none; }
blockquote::before, blockquote::after,
q::before, q::after { content: none; }

q { display: inline; font-style: italic; }
q::before, q::after { content: '"'; font-style: normal; }

table { border-collapse: collapse; border-spacing: 0; }
th, td { padding: 2px; }

textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}

button { outline: 0;}
/* Text elements */
big { font-size: 120%; }
small, sup, sub { font-size: 80%; }
sup { vertical-align: super; }
sub { vertical-align: sub; }
dd { margin-left: 20px; }
kbd, tt { font-family: monospace; font-size: 12px; }
ins { text-decoration: underline; }
del, strike, s { text-decoration: line-through; }
dt { font-weight: bold; }
address, cite, var { font-style: italic; }

/* Links */
a { text-decoration-skip-ink: auto; }
a[href^="tel"] { color: inherit; text-decoration: none; }

/* Accessibility */
.screen-reader-text,
.visually-hidden:not(:focus):not(:active),
.form-allowed-tags:not(:focus):not(:active) {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.screen-reader-text:focus,
.skip-link:focus {
	background: #f7f7f7;
	border-radius: 3px;
	box-shadow: 0 0 2px rgba(0,0,0,.6);
	color: #007acc;
	font-size: .875rem; font-weight: 700;
	line-height: normal;
	padding: 15px 23px 14px;
	position: absolute;
	top: 5px; left: 6px; right: auto;
	width: auto; height: auto;
	z-index: 100000;
}

.skip-link {
	left: -9999rem;
	top: 2.5rem;
	text-decoration: underline;
}


/* ========================================
   BODY & BASE STYLES
   ======================================== */

body {
	line-height: 1.2;
	font-family: var(--font-body);
	font-size: 1.1rem;
	color: var(--color-text-primary);
	background-color: var(--color-bg-primary);
}
#wrapper {
	width: 100%;
	max-width: 2000px;
	margin: 0 auto;
	font-family: var(--font-body);
	font-size: 1.1rem;
}
.content-block {
	width: 100%;
	max-width: 1240px;
	padding: 3em 1em;
	margin: 0 auto;
	box-sizing: border-box;
	overflow: hidden;
	
}

/* Typography - Apply font variables */
body, p, div, span, td, th, li, dd, dt {
	font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
}

.full-screen .content-block {
	max-width: 2000px;
	padding: 2em 0;
}
.small {
	margin: -4em 0 0 0;
}
blockquote {
	padding: 2em;
	color: var(--color-secondary);
	width: 100%;
	max-width: 900px;
	margin: .5em auto;
	box-sizing: border-box;
	background: var(--color-bg-secondary);
	font-size: 1.2em;
	line-height: 1.3;
}
blockquote,q {
	quotes:none;
}
blockquote:before,blockquote:after,q:before,q:after {
	content:'';
	content:none;
	
	
}


table {
	border-collapse:collapse;
	border-spacing:0;
}
article, aside , details , figcaption , figure , footer , header , hgroup , menu , nav , section {
	display:block;
}
.clear {
	clear:both;
}
.screen-reader-text {
	clip:rect(1px, 1px, 1px, 1px);
	position:absolute !important;
}
.aligncenter {
	text-align: center;
	margin: .5em auto;
	display:block;
}
.aligncenter img {
	width: 100%;
	max-width: 600px;
	height: auto;
}
img {	
   max-width: 100%;
   height: auto;
}

/*TEXT STYLING*/

ol,
ul {
	list-style: none;
}

ul , ol {
	list-style: disc;
	line-height: 1.4;
	font-size: 1.1em;
	margin: 1em  0 1em 2em;
	color: var(--color-secondary);
}
ol {
	list-style: decimal;
}
a {
	color: var(--color-link);
	font-weight: bold;
	text-decoration: none;
}

a:hover {
	color: var(--color-link-hover);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-weight: 500;
}

h1{
	font-size: clamp(1.8rem, 5.5vw, 2.9rem);
	font-weight: bold;
	margin: .5em 0;
	color: var(--color-header-h1);

}

h2{
	font-size: clamp(1.5rem, 5vw, 2.4rem);
	color: var(--color-header-h2);
	margin-bottom: .5em;

}


h3{
	font-size: clamp(1.8rem, 6vw, 2.7rem);
	/*font-weight: bold; */
	margin-bottom: .3em;
	color: var(--color-header-h3);
}

h4{
	font-size: clamp(1.1rem, 4vw, 1.4rem);
	color: var(--color-header-h4);
	margin-bottom: .1em;
}

h5{
	font-size: clamp(1rem, 3vw, 1.2rem);
	color: var(--color-header-h5);
	font-style: italic;
	line-height: 1.4;
}

h6{
	font-size: clamp(0.6rem, 2.5vw, 0.7rem);
	color: var(--color-header-h6);
}

b, strong {
	font-weight: 600;
}

em,
i {
	font-style: italic;
}

pre {
	padding: 12px;
	letter-spacing: 2px;
	font-style: italic;
	margin: 0.5em;
}


p {
	margin-bottom: 15px;
    line-height: 1.2;
}

/*blockquote {
	border-left: 4px solid  #999;
	background: #F0F0F0;
	font-style: italic;
	font-weight: 300;
	line-height: 1.27em;
	margin-bottom: 14px;
	padding-left: 25px;
} */

.alignright {
	float: right;
	margin: 0 0 .5em .5em;
}

img alignright {
	float: right;
	margin: 0 0 .5em .5em;
}


.aligncenter  img , .aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.alignleft {
	float: left;
	margin: 0 .5em .5em 0;
}

.entry-title {
	font-size: 1.9em;
}

.entry-title ul {
	list-style: none;
}

legend {

	font-size: 1.2em;
	padding: 5px;
	font-weight: bold;
}

.entry-meta {
	display: none;
}

.entry-footer {
	display: none;
}


/* ********** Page Header *********/
#branding {
	background: #2e2e2e;
	border-bottom: 1px solid var(--color-primary-dark);
}

.branding-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1240px;
	margin: 0 auto;
	padding: 1em 2em;
}

#logo {
	flex: 0 0 33.333%;
	text-align: left;
}

.main-logo {
	overflow: hidden;
	padding: 1.5em 0;
}

.main-logo img {
	width: 100%;
	max-width: 300px;
	height: auto;
}

.header-buttons {
	flex: 0 0 66.666%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
}
.header-btn {
	display: inline-block;
	padding: 0.875rem 2rem;
	background: transparent;
	border: 3px solid #3FD588;
	border-radius: 25px;
	color: #3FD588;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.header-btn:hover {
	background: #3FD588;
	color: #FFFFFF;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(63, 213, 136, 0.3);
}

.background-black {
	background: rgba(102, 102, 102, .8); /* Using --color-secondary with opacity */
	margin-bottom:  450px;

}

.main-background {
      background: url(uploads/2019/02/main-header.jpg) bottom center no-repeat #273657;
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
      background-size: cover;
	  background-attachment: fixed;
}


#strap-line {
	background: rgba(102, 102, 102, .5); /* Using --color-secondary with opacity */
	padding: 2em;
	width: 100%;
	max-width: 700px;
	font-size: 1.7em;
	position: relative;
	margin: -300px auto 275px auto;
	border-radius: 2px;
}
#small-strap {
	background: var(--color-bg-dark);
	padding: .7em 0;
	color: var(--color-text-white);
	font-size: 125%;
	/*margin-top: -.5em;
	text-align: right;
	padding-right: 2em;
	*/
}

/* START   Icons with tool tips ******/
#icon-list {
	background: var(--color-bg-primary);
}
.icon-displays {
	padding: .3em;
	float: left;
}
.tooltip {
    position: relative;
    display: inline-block;
	padding: 0 1em;
}
.tooltip img {
	width: 100%;
	max-width: 100px;
	height: auto;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 180px;
    background-color: var(--color-secondary);
    color: var(--color-text-white);
    text-align: center;
    border-radius: 2px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 110%;
    left: 50%;
    margin-left: -90px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--color-secondary) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.list-icons {
	list-style: none;
	line-height: 3.5;
	vertical-align: top;
}
.list-icons li {
	width: 50%;
	float: left;
	padding: 0 .2em;
	box-sizing: border-box;
}
.list-icons img {
	width: 100%;
	max-width: 45px;
	height: auto;
	vertical-align: middle;
	margin-right: .5em;
}
/* END   Icons with tool tips ******/
.big-form {
	font-size: 150%;
	color: #3fd588;
	font-weight: bold;
}
.wpcf7 form .wpcf7-response-output {
	border: none !important;
}
/**** Contact Form Styling  *****/
.red-required {
	color: var(--color-form-error);
	font-size: .8em;
	font-weight: bold;
}
#enquiry-form {
	padding: 2em;
	box-sizing: border-box;
	border-radius: 2px;
	background: #fff;
}
#form-your-details , #form-camping-details {
	padding: 1em;
	box-sizing: border-box;
	border: solid 1px #fff;
	margin: .5em 0;
}
.form-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form-50 {
  flex: 0 0 48%;
  padding: .2em 0;
  box-sizing: border-box;
}
.small-text {
	font-size: 80%;
	color: var(--color-text-primary);
	margin-left: 100px;
}
input {
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
}
input[type=text] , input[type=email] , input[type=url]  {
	width:100%;
}
select {
	padding: 12px 20px !important;
    margin: 8px 0 !important;
    box-sizing: border-box;
	background: #fff
}
textarea {
    width: 100%;
    padding: 12px 20px;
	margin: 8px 0;
    box-sizing: border-box;   
    border-radius: 4px;
}

span.wpcf7-list-item { 
     display: block !important; 
	 padding: .3em 0;
}
input[type=submit] {
	width: 100%;
    max-width: 450px;
	padding: 1em 2em;
	background: var(--color-button-primary);
	color: var(--color-button-text);
	font-size: 1.2em;
	overflow: hidden;
	border: solid 1px var(--color-button-border);
	border-radius: 3px;
	cursor: pointer;
	-webkit-transition: background .5s;
    transition: background .5s;
	box-sizing: border-box;
    margin-top: 1em;

}
input[type=submit]:hover , .more-button:hover  {
	background: var(--color-button-primary-hover);
	color: var(--color-button-text);
}
#enquiry-form h3 {
	background: var(--color-bg-secondary);
	padding: .5em;
	box-sizing: border-box;
	margin: .5em 0;
	border-radius: 2px;
}
hr.soft {
	border: solid 5px var(--color-bg-secondary);
	margin: 1em 0;
	clear: both;
}

hr.soft-small {
	border: solid 5px var(--color-bg-primary);
	margin: 1em 0;
	clear: both;
}
/************ Custom Code ***********/
/*  Anchor Links Offset 
p .anchor-point {
	padding-top: 200px !important;
	position: relative;
}
This works ....
a[name] {
	padding-top: 200px;
        margin-top: -200px;
	display: inline-block;
}
*/
.top-space {
	margin-top: 2em;
}

/* ********** FOOTER CTA SECTION *********/
#footer-cta {
	background: #2e2e2e;
	padding: 2em 0;
}

.footer-cta-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 2em;
	gap: 2rem;
}

.footer-cta-icon {
	flex: 0 0 auto;
}

.footer-cta-icon img {
	width: 60px;
	height: auto;
	display: block;
}

.footer-cta-buttons {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.footer-btn {
	display: inline-block;
	padding: 0.875rem 2rem;
	background: transparent;
	border: 3px solid #3FD588;
	border-radius: 25px;
	color: #3FD588;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
	white-space: nowrap;
	box-sizing: border-box; /* Ensure padding/border included in width */
}

.footer-btn:hover {
	background: #3FD588;
	color: #FFFFFF;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(63, 213, 136, 0.3);
}

/* ********** START FOOTER *********/
#footer {
	background: var(--color-bg-dark);
	padding: 2em 0;
	font-size: 90%;
}
#footer h3 {
    color: #4aba6f;
	font-size: 1.5em;
	font-weight: bold;
}
#footer a:link , #footer a:visited {
	color: var(--color-link-footer);

	transition: all ease-in-out .3s;
}
#footer a:hover {
	color: var(--color-link-footer-hover);
}
/* Three footer widgets: left (30%), middle (40%), right (30%) */
#footer-left , #footer-middle , #footer-right {
	width: 30%;
	float: left;
	padding: 2em;
	box-sizing: border-box;
	overflow: hidden;
	list-style: none;
	text-align: left; /* Keep all footer text left-aligned */
}
#footer-middle {
	width: 40%;
}
.footer-widget ul {
	list-style: none;
	color: var(--color-link-footer);
	line-height: 1.1;
	font-size: .9em;
	font-weight: 400;
	text-align: left; /* Keep all footer text left-aligned */
	padding-left: 0; /* Remove default padding */
	margin-left: 0; /* Remove default margin */
}

.footer-widget ul li {
	line-height: 2;
	text-align: left; /* Keep all footer text left-aligned */
}

.footer-widget h3,
.footer-widget p,
.footer-widget div {
	text-align: left; /* Keep all footer text left-aligned */
}
#business-details {
	text-align: center;
	background: var(--color-bg-secondary);
}
#business-details a:link , #business-details a:visited {
	color: var(--color-text-primary);
}
#copyright {
	padding: 1em 0;
	font-size: .9em;
	text-align: center;
	color: #fff;
	background: #000;
	}
#copyright a:link , #copyright a:visited {
    color: var(--color-link);
}
#copyright a:hover {
	color: #F8F9FA;
	font-weight: bold;
}

/* ********** END FOOTER*********/

/* ********** HEADER RESPONSIVE *********/
@media (max-width: 900px) {
	.branding-container {
		padding: 1em;
	}

	.header-buttons {
		gap: 1.5rem;
	}

	.header-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
	}

	.main-logo img {
		max-width: 300px;
	}
}

@media (max-width: 768px) {
	.branding-container {
		flex-direction: column;
		padding: 1em;
		gap: 1.5rem;
	}

	#logo {
		flex: 1 1 100%;
		text-align: center;
	}

	.header-buttons {
		flex: 1 1 100%;
		justify-content: center;
		gap: 1rem;
		flex-wrap: wrap;
	}

	.header-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
	}

}

@media (max-width: 480px) {
	.header-buttons {
		flex-direction: column;
		width: 100%;
		gap: 1.5rem;
		padding: .8em .5em;
		box-sizing: border-box;
	}

	.header-btn {
		width: 100%;
		box-sizing: border-box;
	}
}

/* ********** FOOTER CTA RESPONSIVE *********/
@media (max-width: 1024px) {
	.footer-cta-container {
		padding: 0 1em;
	}

	.footer-cta-buttons {
		gap: 1rem;
	}

	.footer-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
	}

	.footer-cta-icon img {
		width: 50px;
	}
}

@media (max-width: 768px) {
	.footer-cta-container {
		flex-direction: column;
		gap: 1.5rem;
		padding: 0 1em;
	}

	.footer-cta-icon {
		text-align: center;
	}

	.footer-cta-buttons {
		width: 100%;
		justify-content: center;
		gap: 1rem;
	}

	.footer-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.footer-cta-buttons {
		flex-direction: column;
		width: 100%;
		gap: 1.5rem;
		padding: .8em .5em;
		box-sizing: border-box; /* Match header fix */
	}

	.footer-btn {
		width: 100%;
		max-width: 280px;
		box-sizing: border-box; /* Match header fix */
	}
}

/* Extra small mobile - 320px */
@media (max-width: 320px) {
	.footer-cta-buttons {
		padding: .5em .3em;
		gap: 1rem;
	}

	.footer-btn {
		width: 100%;
		max-width: 100%; /* Allow full width on very small screens */
		padding: 0.75rem 1rem; /* Reduce padding to fit */
		font-size: 0.9rem;
	}
}

/* ********** FOOTER CAR BRANDS CAROUSEL *********/
.we-offer {
	padding: .3em;
	text-align: center;
	font-size: 1.5em;
	color: #2ccb6f;
	text-transform: capitalize;
	margin-top: 1em;
	box-sizing: border-box;
}
.footer-car-brands {
	background: #fff;
	padding: 3em 0;
	}

.car-brands-slider {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 2em;
}

.car-brand-slide {
	padding: 0 1rem;
	display: flex !important;
	align-items: center;
	justify-content: center;
	height: 100px;
	outline: none;
}

/* Center Focus Effect - Non-centered slides are dimmed and scaled down */
.car-brands-slider .slick-slide {
	opacity: 0.4;
	transform: scale(0.75);
	transition: all 0.4s ease;
}

/* Center slide is full opacity and full scale */
.car-brands-slider .slick-slide.slick-center {
	opacity: 1;
	transform: scale(1);
}

.car-brand-slide img {
	max-width: 100px;
	max-height: 75px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%) brightness(0.8);
	transition: all 0.4s ease;
	display: block;
	margin: 0 auto;
}

/* Center slide image gets color and brightness */
.car-brands-slider .slick-slide.slick-center img {
	filter: grayscale(0%) brightness(1);
}

/* Hover effect on any slide */
.car-brand-slide:hover img {
	filter: grayscale(0%) brightness(1.1);
	transform: scale(1.05);
}

/* Slick slider overrides for car brands */
.car-brands-slider .slick-track {
	display: flex;
	align-items: center;
}

.car-brands-slider .slick-slide {
	height: auto;
}

.car-brands-slider .slick-list {
	overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.footer-car-brands {
		padding: 2em 0;
	}

	.car-brand-slide {
		height: 80px;
	}

	.car-brand-slide img {
		max-width: 75px;
		max-height: 55px;
	}
}

@media (max-width: 480px) {
	.footer-car-brands {
		padding: 1.5em 0;
	}

	.car-brands-slider {
		padding: 0 1em;
	}

	.car-brand-slide {
		height: 70px;
		padding: 0 0.5rem;
	}

	.car-brand-slide img {
		max-width: 60px;
		max-height: 45px;
	}
}

/****** Media Queries moved to style-responsive.css *******/