/*
Theme Name: Kims Marketing
Theme URI: https://www.kimsmarketing.com.sg/
Author: Kims Marketing Pte Ltd
Author URI: https://www.kimsmarketing.com.sg/
Description: Official WordPress theme for Kims Marketing Pte Ltd - Authorized Distributor of Mobil Lubricants
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: kims-marketing
Tags: business, marine, lubricants, corporate
*/

/* ===== CSS VARIABLES ===== */
:root {
    --primary:       #c8102e;      /* Mobil Red */
    --primary-dark:  #a00d25;
    --navy:          #0a1a2e;
    --navy-mid:      #0d2240;
    --navy-light:    #1a3a5c;
    --white:         #ffffff;
    --off-white:     #f5f7fa;
    --light-gray:    #e8edf3;
    --mid-gray:      #8896a7;
    --dark-gray:     #2c3e50;
    --text:          #1a2535;
    --text-light:    #5a6a7e;
    --gold:          #c9a84c;
    --font-heading:  'Montserrat', sans-serif;
    --font-body:     'Open Sans', sans-serif;
    --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
    --shadow-md:     0 4px 20px rgba(0,0,0,.12);
    --shadow-lg:     0 8px 40px rgba(0,0,0,.18);
    --radius:        4px;
    --transition:    0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy);
}

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

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,16,46,.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 55px;
}
.section-header h2 {
    font-size: clamp(26px, 4vw, 38px);
    color: var(--navy);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 55px;
    height: 3px;
    background: var(--primary);
    margin: 12px auto 0;
    border-radius: 2px;
}
.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
}

/* ===== ANNOUNCEMENT BAR ===== */
#announcement-bar {
    background: var(--navy);
    color: var(--white);
    padding: 9px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--navy-light);
}
#announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.ann-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: .85;
}
.ann-item .icon {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    flex-shrink: 0;
}
.ann-item span { font-size: 12.5px; }

/* ===== HEADER / NAVIGATION ===== */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: background var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0,0,0,.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 24px;
}

/* Logo */
.site-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}
.site-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.site-logo .logo-text span { color: var(--primary); }

/* Primary Nav */
#primary-nav { display: flex; align-items: center; gap: 4px; }

#primary-nav > li { position: relative; }

#primary-nav > li > a {
    display: block;
    padding: 10px 15px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--navy);
    border-radius: var(--radius);
    transition: all var(--transition);
}
#primary-nav > li > a:hover,
#primary-nav > li.current-menu-item > a {
    color: var(--primary);
    background: rgba(200,16,46,.06);
}

/* Dropdown */
.sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 100;
}
#primary-nav > li:hover .sub-menu,
#primary-nav > li:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sub-menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 13.5px;
    color: var(--text);
    border-bottom: 1px solid var(--light-gray);
    transition: all var(--transition);
}
.sub-menu li:last-child a { border-bottom: none; }
.sub-menu li a:hover { background: var(--off-white); color: var(--primary); padding-left: 24px; }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-estore {
    background: var(--primary);
    color: var(--white);
    padding: 9px 20px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition);
}
.nav-estore:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.nav-icon-btn {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--white);
    color: var(--navy);
    position: relative;
}
.nav-icon-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.nav-icon-btn svg { width: 18px; height: 18px; }
.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SLIDER ===== */
#hero-slider {
    position: relative;
    overflow: hidden;
    height: 580px;
    background: var(--navy);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}
.slide.active { opacity: 1; }

/* Gradient overlay */
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10,26,46,.80) 0%,
        rgba(10,26,46,.55) 55%,
        rgba(10,26,46,.25) 100%
    );
    z-index: 1;
}

/* Fallback decorative slides */
.slide-1 { background: linear-gradient(135deg, #0a1a2e 0%, #1a3a5c 50%, #0d2240 100%); }
.slide-2 { background: linear-gradient(135deg, #1a2535 0%, #0a1a2e 50%, #162032 100%); }
.slide-3 { background: linear-gradient(135deg, #0d2240 0%, #1a3a5c 50%, #0a1a2e 100%); }

/* decorative lines */
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -55deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,.018) 2px,
            rgba(255,255,255,.018) 4px
        );
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.slide-text { max-width: 600px; }

.slide-eyebrow {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 20px;
    animation: fadeUp .6s .2s both;
}

.slide-title {
    font-size: clamp(30px, 5vw, 52px);
    color: var(--white);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
    animation: fadeUp .6s .35s both;
}

.slide-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,.8);
    margin-bottom: 32px;
    max-width: 480px;
    animation: fadeUp .6s .5s both;
}

.slide-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .6s .65s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Slider controls */
.slider-nav {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}
.slider-dot.active {
    background: var(--primary);
    width: 26px;
    border-radius: 5px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.25);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }
.slider-arrow svg { width: 20px; height: 20px; }

/* ===== ABOUT SECTION ===== */
#about {
    padding: 90px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-content h3 {
    font-size: clamp(22px, 3.5vw, 32px);
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
}
.about-content h3 span { color: var(--primary); }

.about-content .lead {
    font-size: 15.5px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.75;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-content .btn { margin-top: 12px; }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}
.stat-box {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 22px 20px;
    border-left: 3px solid var(--primary);
    transition: all var(--transition);
}
.stat-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-num {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 6px;
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 6px;
}
.about-image::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--primary);
    border-radius: 6px;
    z-index: -1;
}
.about-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    width: 96px;
    height: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    box-shadow: 0 6px 24px rgba(200,16,46,.4);
}
.about-badge .years { font-size: 28px; line-height: 1; }
.about-badge .label { font-size: 10px; letter-spacing: 1px; text-align: center; line-height: 1.3; }

/* ===== SERVICES SECTION ===== */
#services {
    padding: 90px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

#services::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,16,46,.12) 0%, transparent 70%);
    pointer-events: none;
}

#services .section-header h2 { color: var(--white); }
#services .section-header h2::after { background: var(--gold); }
#services .section-header p { color: rgba(255,255,255,.65); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 6px;
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.09);
    border-color: rgba(200,16,46,.4);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.service-card-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    filter: brightness(.85) saturate(.7);
    transition: filter var(--transition);
}
.service-card:hover .service-card-img {
    filter: brightness(.9) saturate(.9);
}

.service-card-body { padding: 26px 24px; }

.service-card-icon {
    width: 46px;
    height: 46px;
    background: rgba(200,16,46,.18);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.service-card-icon svg { width: 22px; height: 22px; color: var(--primary); fill: var(--primary); }

.service-card h3 {
    font-size: 17px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: rgba(255,255,255,.6);
    font-size: 13.5px;
    line-height: 1.75;
}

/* ===== CLIENTELE ===== */
#clientele {
    padding: 90px 0;
    background: var(--off-white);
}

.clientele-slider {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
}

.client-slides { display: flex; transition: transform .5s ease; }

.client-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
}

.client-slide-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}
.client-slide-img-placeholder {
    width: 100%;
    height: 380px;
    background: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.3);
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
}

.client-slide-body {
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--navy);
}

.client-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 20px;
    width: fit-content;
}

.client-slide-body h3 {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 16px;
}

.client-slide-body p {
    color: rgba(255,255,255,.65);
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.client-nav { display: flex; gap: 12px; margin-top: 8px; }
.client-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.25);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.client-nav-btn:hover { background: var(--primary); border-color: var(--primary); }
.client-nav-btn svg { width: 18px; height: 18px; }

/* ===== PRODUCT CATEGORIES ===== */
#products {
    padding: 90px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .5s ease;
}
.product-card:hover img { transform: scale(1.06); }

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,26,46,.85) 0%, rgba(10,26,46,.2) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 18px;
    transition: background var(--transition);
}
.product-card:hover .product-card-overlay {
    background: linear-gradient(to top, rgba(10,26,46,.92) 0%, rgba(10,26,46,.4) 70%, transparent 100%);
}

.product-card-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.product-card-link {
    font-size: 12px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(6px);
    transition: all var(--transition);
}
.product-card:hover .product-card-link { opacity: 1; transform: translateY(0); }

/* Product placeholder colors */
.prod-bg-1 { background: linear-gradient(135deg, #1a3a5c, #0a1a2e); }
.prod-bg-2 { background: linear-gradient(135deg, #c8102e, #7a0a1c); }
.prod-bg-3 { background: linear-gradient(135deg, #2c3e50, #1a2535); }
.prod-bg-4 { background: linear-gradient(135deg, #0d5c3a, #072e1c); }

/* ===== CTA BANNER ===== */
#cta-banner {
    padding: 70px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
    text-align: center;
}
#cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    pointer-events: none;
}
#cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -40px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(0,0,0,.08);
    pointer-events: none;
}
#cta-banner h2 {
    color: var(--white);
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
#cta-banner p {
    color: rgba(255,255,255,.85);
    margin-bottom: 32px;
    font-size: 16px;
    position: relative;
    z-index: 1;
}
#cta-banner .btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ===== */
#site-footer {
    background: var(--navy);
    color: var(--white);
    padding-top: 65px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    display: block;
}
.footer-brand .logo-text span { color: var(--primary); }

.footer-brand p {
    color: rgba(255,255,255,.55);
    font-size: 13.5px;
    line-height: 1.8;
    max-width: 300px;
    margin-bottom: 24px;
}

.social-links { display: flex; gap: 10px; }
.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: rgba(255,255,255,.6);
}
.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.social-link svg { width: 16px; height: 16px; }

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,.55);
    font-size: 13.5px;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
}
.footer-links a::before {
    content: '›';
    color: var(--primary);
    font-size: 16px;
    line-height: 1;
}
.footer-links a:hover { color: var(--white); }

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}
.footer-contact .fi {
    width: 34px;
    height: 34px;
    background: rgba(200,16,46,.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}
.footer-contact .fi svg { width: 16px; height: 16px; }
.footer-contact .fc-text { color: rgba(255,255,255,.6); font-size: 13.5px; }
.footer-contact .fc-text strong { display: block; color: var(--white); font-size: 12.5px; font-family: var(--font-heading); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 3px; }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ===== SCROLL TO TOP ===== */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}
#scroll-top.show { opacity: 1; visibility: visible; }
#scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
#scroll-top svg { width: 20px; height: 20px; }

/* ===== MOBILE MENU ===== */
#mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 2000;
    flex-direction: column;
    padding: 30px 24px;
    overflow-y: auto;
}
#mobile-menu.open { display: flex; }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}
.mobile-close {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    border: none;
}
.mobile-close svg { width: 22px; height: 22px; }

.mobile-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
}
.mobile-nav a:hover { color: var(--primary); padding-left: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    #primary-nav, .nav-actions { display: none; }
    .hamburger { display: flex; }

    #hero-slider { height: 420px; }
    .slide-content { padding: 0 24px; }
    .slide-title { font-size: 26px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; }

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

    .client-slide { grid-template-columns: 1fr; }
    .client-slide-img, .client-slide-img-placeholder { height: 220px; }
    .client-slide-body { padding: 32px 28px; }

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

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    #announcement-bar .container { gap: 14px; }
}

@media (max-width: 480px) {
    .about-stats { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .slide-actions { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
}
