/* base resets */
:root {
    --primary: #f3af22; /* Golden Yellow from logo */
    --primary-dark: #d99a1c;
    --secondary: #111111; /* Dark background from logo */
    --secondary-light: #222222;
    --accent: #58c9e6; /* Light Blue from logo */
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 25px 30px -5px rgba(249, 115, 22, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 2rem; }

.section-subtitle {
    color: var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-subtitle.accent {
    color: var(--accent);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.text-white {
    color: var(--bg-white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid white;
}

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

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-outline.dark-outline {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline.dark-outline:hover {
    background-color: var(--secondary);
    color: white;
}

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

.btn-dark:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-outline-white {
    border-color: white;
    color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--secondary);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
    background-color: transparent;
}

.site-header.scrolled {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img, .site-logo {
    max-height: 110px;
    width: auto;
    transition: var(--transition);
    mix-blend-mode: screen;
}

.site-header.scrolled .site-logo {
    max-height: 85px;
}

.logo-accent {
    color: var(--primary);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
    list-style: none;
}

.main-nav > ul > li {
    padding: 1.5rem 0;
}

.main-nav a {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.main-nav > ul > li > a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.main-nav > ul > li:hover > a:not(.btn)::after,
.main-nav a.active:not(.btn)::after {
    width: 100%;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: var(--bg-white);
    width: 800px;
    max-width: 90vw;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    padding: 2rem;
    gap: 2rem;
    pointer-events: none;
    border-top: 4px solid var(--primary);
}

.main-nav li.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-menu-column {
    flex: 1;
}

.mega-menu-column h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--bg-light);
    font-family: 'Outfit', sans-serif;
}

.mega-menu-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-menu-column ul li {
    padding: 0;
}

.mega-menu-column a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    display: block;
    transition: var(--transition);
}

.mega-menu-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.mega-menu-column a::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    color: white;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.hero-text-col {
    max-width: 900px;
}

.hero-visual-col {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        margin-top: 2rem;
    }
    .hero-visual-col {
        margin-top: 3rem;
        transform: scale(0.8);
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-title {
        font-size: 3.2rem;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -3; 
    animation: kenBurnsLoop 20s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes kenBurnsLoop {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(-2%, -2%);
    }
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.6) 100%);
    z-index: -1;
}


.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    margin-top: 1.5rem;
}

.feature-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--secondary);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== 3D HERO BOX ===== */
#sls-box {
    position: relative;
    z-index: 10;
    pointer-events: none;
    perspective: 1000px;
    width: 130px;
    height: 130px;
    filter: drop-shadow(0 25px 50px rgba(243, 175, 34, 0.5));
    transform: scale(2);
    margin: 0 auto;
}

.box-wrap {
    width: 130px;
    height: 130px;
    position: relative;
    transform-style: preserve-3d;
    animation: slowSpin 12s linear infinite;
}

@keyframes slowSpin {
    0% { transform: rotateX(-22deg) rotateY(0deg); }
    100% { transform: rotateX(-22deg) rotateY(360deg); }
}

.bface {
    position: absolute;
    width: 130px;
    height: 130px;
    background: var(--primary);
    border: 2px solid rgba(0,0,0,0.14);
    overflow: hidden;
}

/* Corrugated horizontal lines */
.bface::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 5px,
        rgba(0,0,0,0.045) 5px,
        rgba(0,0,0,0.045) 6px
    );
    pointer-events: none;
}

/* Lighting gradient */
.bface::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.38) 0%,
        rgba(255,255,255,0)    55%,
        rgba(0,0,0,0.14)      100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Face positions (half-size = 65px) */
.bface-front  { transform: rotateY(  0deg) translateZ(65px); }
.bface-back   { transform: rotateY(180deg) translateZ(65px); background: var(--primary-dark); }
.bface-right  { transform: rotateY( 90deg) translateZ(65px); background: var(--primary-dark); }
.bface-left   { transform: rotateY(-90deg) translateZ(65px); background: var(--primary-dark); }
.bface-top    { transform: rotateX( 90deg) translateZ(65px); background: #fce09a; }
.bface-bottom { transform: rotateX(-90deg) translateZ(65px); background: #b58000; }

/* Front face: SLS branding */
.bface-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
}
.bface-front strong {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    position: relative;
    z-index: 2;
}
.bface-front span {
    font-family: 'Inter', sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    color: rgba(17,17,17,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

/* Tape strip on top face */
.tape {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tape::before {
    content: '';
    width: 100%;
    height: 16px;
    background: rgba(255,255,255,0.35);
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    #sls-box { display: none; }
}

.about-image-wrapper {
    position: relative;
}

.about-image-box {
    position: relative;
    border-radius: var(--border-radius);
    overflow: visible;  /* allow 3D box to overlap edges */
    box-shadow: var(--shadow-lg);
}

.about-canvas {
    width: 100%;
    height: 520px;
    display: block;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.about-image-box:hover .about-img {
    transform: scale(1.05);
}

.stats-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
    transform: translate(-30px, -30px);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.stats-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
    height: 250px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.product-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.link-btn {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.link-btn:hover {
    color: var(--primary-dark);
}

/* Why Us Section */
.why-us {
    background-color: var(--secondary);
    color: white;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    background-color: var(--secondary-light);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
    background-color: rgba(17, 34, 64, 0.8);
}

.feature-box .icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Footer */
.site-footer {
    background-color: #050d1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.footer-logo {
    max-height: 110px;
    width: auto;
    mix-blend-mode: screen;
    opacity: 0.92;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.03);
}

.footer-about h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Products Section Grid */
.product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.product-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.product-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.product-item .badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background-color: rgba(88, 201, 230, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}


/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary);
        padding: 2rem;
        box-shadow: var(--shadow-md);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   PAGE HERO (shared across inner pages)
   ============================================= */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 4rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: var(--secondary);
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,25,47,0.92) 0%, rgba(10,25,47,0.65) 100%);
    z-index: 0;
}
.page-hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
}
.page-hero-title {
    font-size: 3.5rem;
    margin: 0.5rem 0 1rem;
    color: white;
}
.page-hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    max-width: 600px;
}

/* BREADCRUMB */
.breadcrumb-bar {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0.75rem 0;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--primary); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--text-muted); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.about-stat { text-align: center; }
.stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.stat-lab {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}
.about-collage {
    position: relative;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 1rem;
    height: 480px;
}
.collage-main {
    height: 100%;
}
.collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.collage-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}
.collage-side img {
    width: 100%;
    height: calc(50% - 0.5rem);
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.about-collage img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}
.image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

/* Mission/Vision/Values */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.mvv-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--accent);
    transition: var(--transition);
}
.mvv-card--accent { border-top-color: var(--primary); background: var(--secondary); color: white; }
.mvv-card--accent h3 { color: var(--primary); }
.mvv-card--accent p  { color: rgba(255,255,255,0.78); }
.mvv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.mvv-icon { color: var(--primary); margin-bottom: 1.5rem; }
.mvv-card--accent .mvv-icon { color: var(--accent); }
.mvv-card h3 { font-size: 1.3rem; margin-bottom: 1rem; }

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transform: translateX(-50%);
}
.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}
.timeline-right .timeline-content {
    margin-left: auto;
}
.timeline-content {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    width: calc(50% - 2.5rem);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
}
.timeline-content:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.timeline-year {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
}
.timeline-content h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.timeline-content p  { font-size: 0.9rem; color: var(--text-muted); }
.timeline-dot {
    width: 16px; height: 16px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 1.75rem;
    box-shadow: 0 0 0 4px rgba(243,175,34,0.25);
    z-index: 2;
}

/* Team Banner */
.team-banner-section { 
    background: linear-gradient(90deg, #263343 0%, #3a4a5e 100%); /* Slate grey-blue matching the user's initial image */
    padding: 4rem 0; 
}
.team-banner-content { max-width: 650px; color: white; }
.team-banner-content h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.team-banner-content p { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* Team Profile Cards */
.team-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.team-profile-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}
.team-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.team-profile-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    background-color: #eaeaea; 
}
.team-profile-info {
    padding: 1.5rem;
    text-align: center;
}
.team-profile-info h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}
.team-profile-info .designation {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.team-profile-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Advantage Grid */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.advantage-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.advantage-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.adv-num {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.55;
    position: absolute;
    top: 0.75rem; right: 1.25rem;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 2px 8px rgba(243,175,34,0.25);
}
.advantage-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; position: relative; }
.advantage-card p  { font-size: 0.9rem; color: var(--text-muted); position: relative; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.contact-card--primary { background: var(--secondary); color: white; }
.contact-card--primary h3 { color: var(--primary); }
.contact-card--primary p  { color: rgba(255,255,255,0.7); }
.cc-icon { color: var(--primary); margin: 0 auto 1.25rem; display: flex; justify-content: center; }
.contact-card--primary .cc-icon { color: var(--accent); }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.contact-card p  { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.cc-link { display: block; font-size: 0.9rem; font-weight: 600; color: var(--primary); margin-top: 0.4rem; transition: var(--transition); }
.cc-link:hover { color: var(--primary-dark); }
.contact-card--primary .cc-link { color: var(--accent); }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-form-wrapper, .contact-map-wrapper { background: white; border-radius: 16px; padding: 2.5rem; box-shadow: var(--shadow-sm); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; }
.form-group--full { margin-bottom: 1.5rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--secondary); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition);
    background: var(--bg-light);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(243,175,34,0.15); }
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-alert { padding: 1rem 1.25rem; border-radius: 8px; margin-bottom: 1.5rem; font-weight: 500; }
.form-alert--success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-alert--error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.map-embed { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 1.5rem; }
.business-hours { background: var(--bg-light); border-radius: 10px; padding: 1.25rem 1.5rem; }
.business-hours h4 { margin-bottom: 0.75rem; font-size: 1rem; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.hours-table td { padding: 0.4rem 0; }
.hours-table td:last-child { text-align: right; }
.closed { color: #dc2626; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.faq-item { border: 1.5px solid rgba(0,0,0,0.08); border-radius: 10px; overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--primary); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem; background: white; border: none; cursor: pointer;
    font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600;
    color: var(--secondary); text-align: left; transition: var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-item.open .faq-question { background: var(--primary); color: white; }
.faq-icon { font-size: 1.4rem; font-weight: 300; flex-shrink: 0; margin-left: 1rem; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 1.25rem 1.5rem; background: var(--bg-light); }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.cat-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }
.cat-pill {
    padding: 0.55rem 1.25rem;
    border-radius: 30px;
    border: 1.5px solid rgba(0,0,0,0.12);
    background: white;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}
.cat-pill:hover { border-color: var(--primary); color: var(--primary); }
.cat-pill.active { background: var(--primary); color: white; border-color: var(--primary); }

.prod-category-block { margin-bottom: 4rem; }
.prod-cat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.prod-cat-icon { font-size: 1.8rem; }
.prod-cat-header h2 { font-size: 1.75rem; color: var(--secondary); }
.prod-cat-line { flex: 1; height: 1px; background: linear-gradient(to right, var(--primary), transparent); }

.product-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.product-detail-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
.product-detail-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pd-img-wrap { position: relative; height: 240px; overflow: hidden; background: var(--bg-light); }
.pd-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-detail-card:hover .pd-img-wrap img { transform: scale(1.08); }
.pd-overlay {
    position: absolute; inset: 0;
    background: rgba(10,25,47,0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.product-detail-card:hover .pd-overlay { opacity: 1; }
.pd-info { padding: 1.75rem; }
.pd-info h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--secondary); }
.pd-info p  { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.pd-specs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.pd-spec-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(88,201,230,0.1);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(88,201,230,0.25);
}
.pd-actions { display: flex; align-items: center; justify-content: space-between; }

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}
.blog-feat-img { position: relative; height: 480px; overflow: hidden; }
.blog-feat-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-feat-content { padding: 3rem 3rem 3rem 0; }
.blog-feat-content h2 { font-size: 1.9rem; margin: 0.75rem 0 1.25rem; line-height: 1.3; }
.blog-feat-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.blog-grid--3 { grid-template-columns: repeat(3, 1fr); }
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-card-img { position: relative; height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-cat-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--primary); color: white;
    font-size: 0.75rem; font-weight: 700;
    padding: 0.3rem 0.8rem; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 1px;
    z-index: 1;
}
.blog-card-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-body h3 { font-size: 1.1rem; margin: 0.5rem 0 0.75rem; line-height: 1.4; }
.blog-card-body h3 a { color: var(--secondary); transition: var(--transition); }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.meta-sep { opacity: 0.4; }

/* Newsletter */
.newsletter-section { background: var(--secondary); }
.newsletter-box {
    display: flex; align-items: center; justify-content: space-between;
    gap: 3rem; padding: 3rem;
    background: var(--secondary-light);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}
.newsletter-text h2 { font-size: 1.8rem; color: white; margin-bottom: 0.5rem; }
.newsletter-text p  { color: rgba(255,255,255,0.65); }
.newsletter-form { display: flex; gap: 1rem; flex-shrink: 0; }
.newsletter-form input {
    padding: 0.85rem 1.25rem; border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: var(--border-radius); background: rgba(255,255,255,0.08);
    color: white; font-size: 0.95rem; font-family: 'Inter', sans-serif;
    outline: none; width: 280px; transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--primary); background: rgba(255,255,255,0.12); }

/* =============================================
   BLOG POST PAGE
   ============================================= */
.post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}
.post-content { min-width: 0; }
.post-hero-img { border-radius: 16px; overflow: hidden; margin-bottom: 2.5rem; box-shadow: var(--shadow-md); }
.post-hero-img img { width: 100%; height: 420px; object-fit: cover; }
.post-body { font-size: 1.05rem; line-height: 1.85; color: var(--text-main); }
.post-body h2 { font-size: 1.65rem; margin: 2rem 0 1rem; color: var(--secondary); }
.post-body h3 { font-size: 1.3rem; margin: 1.5rem 0 0.75rem; color: var(--secondary); }
.post-body p  { margin-bottom: 1.25rem; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body li { margin-bottom: 0.5rem; }
.post-body strong { color: var(--secondary); }
.post-figure { margin: 2.5rem 0; }
.post-figure img { border-radius: 12px; width: 100%; object-fit: cover; max-height: 380px; box-shadow: var(--shadow-md); }
.post-figure figcaption { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 0.75rem; font-style: italic; }
.post-share { display: flex; align-items: center; gap: 1rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.08); }
.post-share span { font-weight: 600; font-size: 0.9rem; }
.share-btn { padding: 0.5rem 1.25rem; border-radius: 30px; font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.share-wa    { background: #25D366; color: white; }
.share-wa:hover { background: #1da851; }
.share-email { background: var(--bg-light); color: var(--secondary); border: 1px solid rgba(0,0,0,0.1); }
.share-email:hover { background: var(--secondary); color: white; }

/* Sidebar */
.post-sidebar { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget {
    background: white; border-radius: 14px; padding: 1.75rem;
    box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.06);
}
.sidebar-widget--cta { background: var(--secondary); color: white; }
.sidebar-widget--cta h4 { color: var(--primary); }
.sidebar-widget--cta p  { color: rgba(255,255,255,0.7); }
.sidebar-widget h4 { font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--secondary); }
.sidebar-widget p  { font-size: 0.88rem; color: var(--text-muted); }
.sidebar-links { display: flex; flex-direction: column; gap: 0.75rem; }
.sidebar-links li a {
    font-size: 0.88rem; color: var(--text-muted);
    display: block; padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition); line-height: 1.4;
}
.sidebar-links li:last-child a { border-bottom: none; padding-bottom: 0; }
.sidebar-links li a:hover { color: var(--primary); transform: translateX(4px); }

/* Testimonials */
.testimonials { background-color: var(--secondary); color: white; }
.testimonials .section-title { color: white; }
.testimonials .section-subtitle { color: var(--accent); }

.testimonial-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0;
    /* gradient masks to fade the edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.testimonial-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: autoScroll 45s linear infinite;
}
.testimonial-track:hover {
    animation-play-state: paused;
}
@keyframes autoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

.testimonial-card { 
    background: var(--secondary-light); 
    border-radius: 16px; 
    padding: 2.5rem 2rem; 
    position: relative; 
    box-shadow: var(--shadow-sm); 
    transition: var(--transition); 
    border: 1px solid rgba(255,255,255,0.05); 
    display: flex; 
    flex-direction: column; 
    width: 400px;
    flex-shrink: 0;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--primary); background: rgba(30, 40, 50, 0.8); }
.quote-icon { font-family: Georgia, serif; font-size: 5rem; color: var(--primary); opacity: 0.15; position: absolute; top: 1rem; left: 1.5rem; line-height: 1; }
.testimonial-text { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.7; font-style: italic; position: relative; z-index: 1; margin-bottom: 2rem; flex: 1; margin-top: 1rem; }
.testimonial-author h4 { font-size: 1.05rem; color: white; margin-bottom: 0.2rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }

/* BF Grid Cards */
.bf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.bf-card {
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.bf-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.bf-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    display: inline-block;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--primary);
}
.bf-card.highlight-card {
    background: #fff9f0;
    border-color: var(--primary);
}
.bf-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
}
/* Business Stats Section */
.business-stats {
    background-color: #16253A;
    padding: 4rem 0;
}
.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.stat-box {
    flex: 1;
    min-width: 200px;
    border: 1px solid #F0AD22;
    padding: 2.5rem 1rem;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
}
.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(240, 173, 34, 0.2);
}
.stat-box h3 {
    color: #F0AD22;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.stat-box p {
    color: #F0AD22;
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 992px) { 

    .faq-grid { grid-template-columns: 1fr; } 
}
@media (max-width: 768px) {
    .testimonial-card { width: 320px; }
    .hero-title { font-size: 2.8rem; }
}

/* =============================================
   RESPONSIVE — INNER PAGES
   ============================================= */
@media (max-width: 1024px) {
    .mvv-grid, .advantage-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-feat-img { height: 300px; }
    .blog-feat-content { padding: 2rem; }
    .post-layout { grid-template-columns: 1fr; }
    .post-sidebar { position: static; }
    .blog-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .page-hero-title { font-size: 2.5rem; }
    .about-split-grid { grid-template-columns: 1fr; }
    .about-collage { grid-template-columns: 1fr; height: auto; }
    .collage-main { height: 300px; }
    .collage-side { flex-direction: row; height: 150px; }
    .collage-side img { width: calc(50% - 0.5rem); height: 100%; }
    .about-stats-row { grid-template-columns: repeat(2, 1fr); }
    .mvv-grid, .advantage-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 24px; }
    .timeline-item { padding-left: 56px; }
    .timeline-dot { left: 24px; }
    .timeline-content { width: 100%; }
    .contact-cards-row { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .newsletter-box { flex-direction: column; gap: 1.5rem; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-form input { width: 100%; }
    .blog-grid--3 { grid-template-columns: 1fr; }
    .team-banner-content h2 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .contact-cards-row { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .about-stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* Floating Sidebars */
.floating-sidebars {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fs-btn {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 12px 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-radius: 8px 0 0 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
}
.fs-btn:hover {
    background-color: var(--secondary);
    color: var(--bg-white);
}
.fs-calculator {
    background-color: var(--secondary);
}
.fs-calculator:hover {
    background-color: var(--primary);
}

/* Enquiry Slideout */
.enquiry-slideout {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}
.enquiry-slideout.active {
    right: 0;
}
.enquiry-slideout-header {
    background: var(--secondary);
    color: white;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.enquiry-slideout-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}
.close-enquiry {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
.enquiry-slideout-body {
    padding: 1.5rem;
    overflow-y: auto;
}
@media (max-width: 480px) {
    .enquiry-slideout { width: 100%; right: -100%; }
}
