/* ========================================
   The Air Con Co — Main Stylesheet
   ======================================== */

:root {
    --blue: #408cc2;
    --blue-light: #93c3c2;
    --blue-dark: #1e4d7b;
    --navy: #0f2b47;
    --orange: #c66a29;
    --orange-dark: #8b3a1f;
    --orange-light: #e89a52;
    --white: #ffffff;
    --off-white: #f5f7fa;
    --grey-light: #e8ecf1;
    --grey: #6b7280;
    --grey-dark: #374151;
    --black: #1a1a2e;
    --text: #2d2d2d;
    --text-light: #555;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: 0.3s ease;
    --max-width: 1440px;
    --topbar-height: 34px;
    --header-height: 80px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
}
.lead { font-size: 1.15rem; color: var(--text-light); line-height: 1.8; }

/* Utility */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section--grey { background: var(--off-white); }
.section--navy {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
    color: var(--white);
}
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--gradient {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--orange) 100%);
    color: var(--white);
}
.section--gradient h2, .section--gradient h3 { color: var(--white); }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    border: 2px solid transparent;
}
.btn--primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn--primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn--secondary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn--secondary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn--outline:hover {
    background: var(--white);
    color: var(--blue-dark);
    transform: translateY(-2px);
}
.btn--outline-dark {
    background: transparent;
    color: var(--blue-dark);
    border-color: var(--blue-dark);
}
.btn--outline-dark:hover {
    background: var(--blue-dark);
    color: var(--white);
    transform: translateY(-2px);
}
.btn svg, .btn i {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}
.btn:hover svg, .btn:hover i { transform: translateX(3px); }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 43, 71, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all var(--transition);
}
.site-header.scrolled {
    background: rgba(15, 43, 71, 0.98);
    box-shadow: var(--shadow-lg);
}

.top-bar {
    background: var(--navy);
    padding: 0.4rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}
.top-bar a {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
}
.top-bar a:hover { color: var(--orange-light); }
.top-bar svg { width: 14px; height: 14px; fill: var(--orange); }

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    white-space: nowrap;
}
.site-logo img {
    height: 50px;
    width: auto;
}
.site-logo .logo-text span {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}
.main-nav a:hover::after,
.main-nav a.active::after {
    width: 70%;
}

.nav-dropdown {
    position: relative;
}
.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 255px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    padding: 0.75rem 0;
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--text);
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover {
    background: var(--off-white);
    color: var(--orange);
}
.dropdown-menu a.active {
    color: var(--orange);
    background: var(--off-white);
    font-weight: 700;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}
.header-phone svg { width: 20px; height: 20px; fill: var(--orange); }

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO SECTIONS
   ======================================== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: calc(var(--header-height) + var(--topbar-height));
}
.hero--home { min-height: 600px; }
.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 30%, var(--blue) 60%, var(--orange) 100%);
    z-index: 0;
}
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}
.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    color: var(--white);
    padding: 3rem 0;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero__badge svg { width: 16px; height: 16px; fill: var(--orange-light); }
.hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
}
.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stat { text-align: center; }
.hero__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange-light);
}
.hero__stat-label {
    font-size: 0.82rem;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   CONTENT BLOCKS
   ======================================== */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.content-split--reverse .content-split__text { order: 2; }
.content-split--reverse .content-split__media { order: 1; }
.content-split__text h2 { margin-bottom: 1rem; }
.content-split__text .lead { margin-bottom: 1.5rem; }
.content-split__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.content-split__media img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}
.content-split__media::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

/* Feature/Benefit Lists */
.feature-list { margin: 1.5rem 0; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}
.feature-list li svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    fill: var(--orange);
    margin-top: 2px;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 1px solid var(--grey-light);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.service-card__img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}
.service-card__body { padding: 1.5rem; }
.service-card__body h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.service-card__body p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}
.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-card__link svg { width: 16px; height: 16px; fill: currentColor; transition: transform var(--transition); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ========================================
   WHY CHOOSE US / BENEFITS
   ======================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.benefit-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--grey-light);
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-light);
}
.benefit-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefit-card__icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}
.benefit-card h4 { margin-bottom: 0.75rem; }
.benefit-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin: 0;
}

/* ========================================
   BRANDS SECTION
   ======================================== */
.brands-section {
    padding: 3rem 0;
    background: var(--off-white);
    border-top: 1px solid var(--grey-light);
    border-bottom: 1px solid var(--grey-light);
}
.brands-section h3 {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey);
    font-weight: 600;
    margin-bottom: 2rem;
}
.brands-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.brands-grid img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition);
}
.brands-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.brand-placeholder {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--grey-dark);
    opacity: 1;
    transition: all var(--transition);
    padding: 0.5rem 1rem;
    border: 1px solid var(--grey-light);
    border-radius: var(--radius-sm);
    background: var(--white);
}
.brand-placeholder:hover {
    color: var(--blue);
    border-color: var(--blue-light);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--grey-light);
}
.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--orange);
    opacity: 0.3;
    font-family: Georgia, serif;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}
.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-top: 1.5rem;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}
.testimonial-card__name {
    font-weight: 600;
    font-size: 0.95rem;
}
.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.5rem;
}
.testimonial-card__stars svg { width: 16px; height: 16px; fill: #f59e0b; }

/* ========================================
   AREAS SERVED
   ======================================== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.area-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.2rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--grey-light);
    color: var(--text);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all var(--transition);
}
.area-link svg { width: 18px; height: 18px; fill: var(--orange); min-width: 18px; }
.area-link:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 50%, var(--orange-dark) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(198,106,41,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
}
.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.cta-banner__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info-block { padding: 2rem 0; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-info-item__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-item__icon svg { width: 22px; height: 22px; fill: var(--white); }
.contact-info-item h4 { margin-bottom: 0.25rem; }
.contact-info-item p { margin: 0; color: var(--text-light); font-size: 0.92rem; }
.contact-info-item a { color: var(--blue); font-weight: 600; }

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--grey-light);
}
.contact-form-wrapper h3 { margin-bottom: 0.5rem; }
.contact-form-wrapper .lead { margin-bottom: 1.5rem; font-size: 0.95rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--text);
}
.form-group label span { color: var(--orange); }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--grey-light);
    border-radius: var(--radius-sm);
    background: var(--off-white);
    transition: all var(--transition);
    color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(64,140,194,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-message {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.92rem;
}
.form-message--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.form-message--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
    max-width: 300px;
}
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.75;
    line-height: 1.7;
}
.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: all var(--transition);
}
.footer-links a:hover {
    color: var(--orange-light);
    padding-left: 4px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.footer-contact svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    fill: var(--orange);
    margin-top: 3px;
}
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--orange-light); }

.footer-certifications {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-certifications img { height: 50px; width: auto; }
.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}
.cert-badge svg { width: 20px; height: 20px; fill: var(--orange); }

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    opacity: 0.6;
}
.footer-bottom p { margin-bottom: 0;font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ========================================
   ACCREDITATIONS / TRUST BAR
   ======================================== */
.trust-bar {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--grey-light);
}
.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--grey-dark);
}
.trust-item svg { width: 28px; height: 28px; fill: var(--orange); }

/* ========================================
   INTERIOR PAGE HEADERS
   ======================================== */
.page-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}
.page-intro h2 { margin-bottom: 1rem; }
.page-intro p { color: var(--text-light); font-size: 1.05rem; }

/* Three Column Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.info-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--grey-light);
    transition: all var(--transition);
}
.info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--blue-light);
}
.info-card h4 { margin-bottom: 0.75rem; color: var(--blue-dark); }
.info-card p { font-size: 0.92rem; color: var(--text-light); margin: 0; }

/* Section with navy bg and white text */
.navy-section .info-card {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}
.navy-section .info-card h4 { color: var(--orange-light); }
.navy-section .info-card p { color: rgba(255,255,255,0.8); }

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-up {
    opacity: 1;
    transform: translateY(0);
}
.js-loaded .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-loaded .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.js-loaded .fade-up:nth-child(2) { transition-delay: 0.1s; }
.js-loaded .fade-up:nth-child(3) { transition-delay: 0.2s; }
.js-loaded .fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   IMAGE PLACEHOLDERS
   ======================================== */
.img-placeholder {
    background: linear-gradient(135deg, var(--grey-light) 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    font-size: 0.85rem;
    font-weight: 500;
    min-height: 200px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1280px) {
    :root { --header-height: 65px; }

    .top-bar { display: none; }

    .hero { margin-top: var(--header-height); min-height: 450px; }

    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: var(--navy);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right var(--transition);
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
        align-items: flex-start;
        z-index: 1001;
    }
    .main-nav.open { right: 0; }

    .main-nav > a,
    .main-nav > .nav-dropdown {
        display: block;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .main-nav > a {
        font-size: 1rem;
    }
    .main-nav > .nav-dropdown > .dropdown-toggle {
        padding: 0;
        font-size: 1rem;
        width: 100%;
        display: block;
    }
    .main-nav a::after { display: none; }

    .nav-dropdown .dropdown-menu,
    .nav-dropdown:hover .dropdown-menu {
        position: static;
        transform: none;
        background: rgba(255,255,255,0.05);
        box-shadow: none;
        border-radius: var(--radius-sm);
        display: none;
        opacity: 1;
        visibility: visible;
        margin: 0;
        padding: 0;
        left: auto;
        top: auto;
        min-width: 0;
        width: 100%;
    }
    .nav-dropdown.open .dropdown-menu {
        display: block;
        margin: 0 0 0.5rem;
        padding: 0.5rem;
    }
    .dropdown-toggle::after {
        content: '';
        display: inline-block;
        width: 8px;
        height: 8px;
        border-right: 2px solid rgba(255,255,255,0.5);
        border-bottom: 2px solid rgba(255,255,255,0.5);
        transform: rotate(45deg);
        margin-left: 0.5rem;
        transition: transform 0.25s ease;
        vertical-align: middle;
    }
    .nav-dropdown.open .dropdown-toggle::after {
        transform: rotate(-135deg);
    }
    .dropdown-menu a {
        color: rgba(255,255,255,0.7);
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    .dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: var(--orange-light); }

    .header-cta .btn { display: none; }
    .header-phone { display: none; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .content-split { gap: 3rem; }
    .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .content-split--reverse .content-split__text,
    .content-split--reverse .content-split__media { order: unset; }

    .contact-section { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

    .hero__stats { flex-direction: column; gap: 1.5rem; }

    .section { padding: 3rem 0; }

    .brands-grid { gap: 1.5rem; }

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

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { text-align: center; justify-content: center; }
    .areas-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 1.5rem; }
}

/* ========================================
   PAGE-SPECIFIC STYLES
   ======================================== */

/* About Page Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--blue), var(--orange));
    border-radius: 3px;
}
.timeline-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 2rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 0.3rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}
.timeline-item h4 { color: var(--blue-dark); margin-bottom: 0.25rem; }
.timeline-item p { color: var(--text-light); font-size: 0.92rem; margin: 0; }

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    counter-reset: step;
}
.process-step {
    text-align: center;
    padding: 2rem 1rem;
    counter-increment: step;
    position: relative;
}
.process-step::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* Overlay for mobile nav */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.nav-overlay.active { opacity: 1; visibility: visible; }
