﻿:root {
    --primary-color: #FF6600;
    /* Vibrant Orange */
    --primary-dark: #cc5200;
    --secondary-color: #2c3e50;
    /* Dark Blue/Grey for text */
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --top-bar-bg: #002b49;
    /* Deep Blue for top bar */
    --header-bg: rgba(255, 255, 255, 0.95);
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* =========================================
   Top Bar
   ========================================= */
.top-bar {
    background-color: var(--top-bar-bg);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links span {
    margin-right: 15px;
    font-weight: 500;
    color: #ff9e42;
    /* Light orange highlight */
}

.social-links a {
    color: var(--white);
    margin-right: 15px;
    transition: color 0.3s;
}

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

.contact-email {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-email i {
    color: var(--primary-color);
    margin-right: 2px;
}

.mail-label {
    color: #ff9e42;
    font-weight: 600;
    margin-right: 2px;
}

.contact-email a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s;
}

.contact-email a:hover {
    color: var(--primary-color);
}

.separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* =========================================
   Header & Navigation
   ========================================= */
.main-header {
    background-color: var(--header-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 60px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav .dropdown a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 18px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.contact-text span {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.contact-text a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 16px;
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    color: var(--white);
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e67e22, var(--primary-color));
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e2e8f0;
    /* Solid light grey for visibility */
    color: #334155;
    /* Dark slate text for contrast */
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #cbd5e1;
    /* Subtle border definition */
    cursor: pointer;
}

.btn-secondary:hover {
    background: #cbd5e1;
    /* Darker grey on hover */
    color: #1e293b;
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: #f1f5f9;
    color: #94a3b8;
    border-color: #e2e8f0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* =========================================
   Widgets
   ========================================= */
.side-widget {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 20px 5px;
    border-radius: 0 10px 10px 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.enquiry-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 14px;
}

.enquiry-number {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 12px;
    color: #ccc;
}

.catalog-widget {
    position: fixed;
    left: 0;
    top: 65%;
    /* Adjusted to not overlap with enquiry widget if it uses position absolute in hero */
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 12px;
    border-radius: 0 10px 10px 0;
    text-decoration: none;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.catalog-widget:hover {
    padding-left: 20px;
    background-color: var(--primary-dark);
}

.catalog-widget i {
    font-size: 24px;
}

.catalog-widget span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}


.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.expert-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
}

.expert-label {
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--secondary-color);
}

.expert-icon {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    /* WhatsApp Green style icon or similar */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* =========================================
   Why Choose Us
   ========================================= */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--white);
}

.why-choose-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-choose-image {
    flex: 1;
    position: relative;
    padding: 30px;
}

.image-wrapper {
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s;
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    left: -30px;
    background: linear-gradient(to right, #a07e5e, #8a6d50);
    color: var(--white);
    padding: 25px 35px;
    text-align: center;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
    z-index: 20;
}

.experience-badge .years {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.experience-badge::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    border-style: solid;
    border-width: 0 0 10px 30px;
    border-color: transparent transparent #6e553d transparent;
}

.why-choose-text {
    flex: 1;
}

.sub-heading {
    color: #a07e5e;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-choose-text h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.why-choose-text p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

/* =========================================
   Core Strengths Section (Diagrammatic)
   ========================================= */
.strengths-diagram-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.diagram-header {
    text-align: center;
    margin-bottom: 60px;
}

.diagram-header h2 {
    color: #002b49;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diagram-line {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.strength-frame {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e1e8ed;
    box-shadow: 0 10px 30px rgba(0, 43, 73, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.strength-frame:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 43, 73, 0.12);
    border-color: var(--primary-color);
}

.frame-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.frame-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.frame-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    position: absolute;
    top: 168px;
    /* Slightly overlapping image and body */
    left: 40px;
    z-index: 5;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s;
}

.strength-frame:hover .frame-icon {
    transform: scale(1.1) translateY(-5px);
}

.frame-icon.purple {
    background-color: #8e44ad;
}

.frame-icon.yellow {
    background-color: #f39c12;
}

.frame-icon.green {
    background-color: #27ae60;
}

.frame-icon.blue {
    background-color: #2980b9;
}

.frame-body {
    padding: 50px 40px 40px;
    text-align: left;
}

.strength-frame h3 {
    color: #002b49;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.strength-frame p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .strengths-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .frame-icon {
        left: 20px;
    }

    .frame-body {
        padding: 40px 20px 30px;
    }
}

/* =========================================
   Feature Card Visual Variant (For Product Subpages)
   ========================================= */
.feature-card.visual {
    background-size: cover;
    background-position: center;
    border: none;
    color: #fff;
    z-index: 1;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card.visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85));
    z-index: -1;
    transition: background 0.3s;
}

.feature-card.visual:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
}

.feature-card.visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-card.visual .feature-icon-box {
    background-color: rgba(255, 102, 0, 0.9);
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-card.visual h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card.visual p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0;
}

/* =========================================
   Stats Section
   ========================================= */
.stats-section {
    background-color: #050505;
    background-image:
        radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 70%),
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
        url('img/hero2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 200px;
    color: var(--white);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    transition: transform 0.3s, border-color 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.stat-label {
    font-size: 15px;
    line-height: 1.3;
    color: #ddd;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   Products Section
   ========================================= */
.products-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
    /* Bottom half white */
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55%;
    /* Top half orange overlay with image */
    background-image: url('img/hero2.png');
    background-color: rgba(255, 102, 0, 0.85);
    /* Vibrant Orange Overlay */
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.products-header {
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.products-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.products-header p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.read-more-link {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px 25px;
    border: 2px solid #000;
    transition: all 0.3s;
}

.read-more-link:hover {
    background-color: #000;
    color: var(--white);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 50px;
    z-index: 2;
}

.slider-container {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.product-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 550px;
    /* Slightly increased for info short */
    border: none;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background-image: url('img/hero2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Back to cover for a fuller look */
    transition: transform 0.3s;
    opacity: 1;
}

/* Remove image-based read more as it's now in the white info part */
.product-image .card-read-more {
    display: none;
}

.product-info {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--white);
    /* White part for info */
}

.product-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.card-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-top: auto;
}

.card-read-more:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.2);
}

/* Special Side-by-Side Card */
.product-card.side-by-side-frames {
    background-color: transparent;
    box-shadow: none;
    border: none;
    flex-direction: row;
    gap: 15px;
    padding: 0;
}

.frame-box {
    flex: 1;
    height: 100%;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.frame-content {
    position: relative;
    z-index: 2;
    padding: 15px;
    text-align: center;
}

.slider-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.slider-pagination .dot {
    width: 40px;
    height: 4px;
    background-color: #ddd;
    border-radius: 2px;
    cursor: pointer;
}

/* =========================================
   Refined Contact Section
   ========================================= */
.contact-refined-section {
    position: relative;
    padding: 120px 0;
    background-image: url('img/hero3.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-refined-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.contact-card-refined {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.contact-card-refined h3 {
    color: #003366;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 35px;
    text-align: center;
}

.form-grid-refined {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group-refined {
    position: relative;
}

.form-group-refined.full-width {
    grid-column: span 2;
}

.form-group-refined i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #003366;
    font-size: 16px;
    pointer-events: none;
}

.form-group-refined textarea+i {
    top: 25px;
}

.form-group-refined input,
.form-group-refined select,
.form-group-refined textarea {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid #e1e8ef;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background-color: #f9fbfd;
    outline: none;
    transition: all 0.3s;
}

.form-group-refined textarea {
    height: 120px;
    resize: none;
}

.form-group-refined input:focus,
.form-group-refined select:focus,
.form-group-refined textarea:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-bottom-refined {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.captcha-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border: 1px solid #e1e8ef;
    border-radius: 8px;
    background: #f9fbfd;
}

.captcha-mini input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.captcha-mini label {
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.captcha-mini img {
    height: 30px;
}

.btn-refined-submit {
    background-color: #003366;
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-refined-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

@media (max-width: 768px) {
    .form-grid-refined {
        grid-template-columns: 1fr;
    }

    .form-group-refined.full-width {
        grid-column: span 1;
    }

    .form-bottom-refined {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .btn-refined-submit {
        width: 100%;
    }
}

.slider-pagination .dot.active {
    background-color: var(--primary-color);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* =========================================
   Services Overlap
   ========================================= */
.services-overlap {
    position: relative;
    z-index: 10;
    margin-top: -100px;
    padding-bottom: 80px;
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: all 0.3s;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 40px;
    color: #0066cc;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-line {
    width: 40px;
    height: 3px;
    background-color: #eee;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-card:hover .service-line {
    width: 60px;
    background-color: var(--primary-color);
}

/* =========================================
   Featured Project
   ========================================= */
.featured-section {
    padding: 100px 0;
    background-color: var(--white);
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.featured-header h2 {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
}

.project-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.project-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

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

.featured-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
}

#featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-info-card {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background-color: #004d99;
    padding: 35px;
    border-radius: 8px;
    max-width: 400px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 47, 99, 0.3);
}

/* =========================================
   Multi-Layered Safety Section
   ========================================= */
.safety-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
    overflow: hidden;
}

/* Sophisticated Geometric Background */
.safety-bg-mesh {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 50%;
    height: 100%;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(0, 89, 154, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    mask-image: linear-gradient(to right, black 40%, transparent);
    transform: translateY(-50%) skewX(-10deg);
    z-index: 1;
}

.safety-bg-dots {
    position: absolute;
    top: 5%;
    right: 3%;
    width: 240px;
    height: 240px;
    background-image: radial-gradient(rgba(255, 204, 0, 0.15) 2px, transparent 2px);
    background-size: 24px 24px;
    z-index: 1;
    animation: pulseDots 8s infinite ease-in-out;
}

@keyframes pulseDots {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.safety-header {
    text-align: left;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.safety-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
    padding: 4px 12px;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 20px;
}

.safety-header h2 {
    color: #002b49;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.safety-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.safety-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.02),
        0 1px 1px rgba(0, 0, 0, 0.01);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.safety-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 25px 50px rgba(0, 43, 73, 0.08);
}

.safety-num {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #d4a74a 0%, #ffcc66 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 15px;
    box-shadow: 0 8px 15px rgba(212, 167, 74, 0.25);
    border: 3px solid #fff;
}

.safety-card-content h3 {
    color: #1a2b3c;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.safety-card-content p {
    color: #556b82;
    font-size: 14px;
    line-height: 1.6;
}

.safety-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.safety-visual::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border: 2px dashed rgba(0, 43, 73, 0.1);
    border-radius: 50% / 40%;
    animation: rotateSlow 20s linear infinite;
    z-index: -1;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.safety-oval-wrapper {
    position: relative;
    width: 340px;
    height: 520px;
    border-radius: 170px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 43, 73, 0.25);
    border: 10px solid #fff;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.safety-oval-wrapper:hover {
    transform: scale(1.02);
}

.safety-oval-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.safety-oval-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 43, 73, 0.4) 100%);
}

/* =========================================
   Refined Contact Section
   ========================================= */
.contact-refined-section {
    position: relative;
    padding: 100px 0;
    background-image: url('img/hero2.png');
    /* Using hero4 as it looks closer to high-end interior */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-refined-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 43, 73, 0.4);
}

.contact-card-refined {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-card-refined h3 {
    color: #002b49;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.form-grid-refined {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-group-refined {
    position: relative;
}

.form-group-refined.full-width {
    grid-column: span 2;
}

.form-group-refined i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #002b49;
    font-size: 14px;
    opacity: 0.7;
}

.form-group-refined textarea+i {
    top: 20px;
}

.form-group-refined input,
.form-group-refined select,
.form-group-refined textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: all 0.3s;
}

.form-group-refined textarea {
    height: 100px;
    resize: none;
}

.form-group-refined input:focus,
.form-group-refined select:focus,
.form-group-refined textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-bottom-refined {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.captcha-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fdfdfd;
    width: 100%;
    max-width: 300px;
}

.captcha-mini label {
    font-size: 13px;
    color: #555;
    cursor: pointer;
}

.btn-refined-submit {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 30px auto 0;
    background-color: #002b49;
    color: var(--white);
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-refined-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .safety-container {
        grid-template-columns: 1fr;
    }

    .safety-visual {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .form-grid-refined {
        grid-template-columns: 1fr;
    }

    .form-group-refined.full-width {
        grid-column: span 1;
    }

    .contact-card-refined {
        padding: 25px 20px;
    }

    .contact-card-refined h3 {
        font-size: 20px;
    }
}


/* =========================================
   Advanced Features (Neat Bento Design)
   ========================================= */
.advanced-features-section {
    background-color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advanced-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55%;
    /* Top half brown overlay with image */
    background-image: url('img/hero2.png');
    background-color: rgba(101, 67, 33, 0.85);
    /* Light Brown Overlay */
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

/* Removed previous pseudo-element as it's replaced by two-tone background */

.features-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.features-header h4 {
    color: var(--primary-color);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.features-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-top: 15px;
    transition: all 0.3s;
}

.view-all-link {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
    gap: 15px;
    /* Arrow slide effect */
}

.read-more-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    grid-column: span 4;
    background: var(--white);
    border: none;
    border-radius: 8px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Make center card larger/distinct for bento feel if desired, or just span */
.feature-card:nth-child(2) {
    grid-column: span 4;
    border-color: rgba(255, 102, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    font-size: 32px;
    color: var(--primary-color);
    box-shadow: none;
    border: none;
    padding: 0;
}

.feature-image img {
    display: none;
    /* Using icons instead for cleaner look */
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    pointer-events: none;
}

.feature-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    text-shadow: none;
}

/* =========================================
   Advanced Features - Reference Design
   ========================================= */
.feature-card {
    grid-column: span 4;
    background: var(--white);
    border: none;
    border-radius: 12px;
    padding: 0 !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 480px !important;
}

/* Image Top - 50% Height */
.feature-context-image {
    position: relative;
    width: 100% !important;
    height: 50% !important;
    flex-grow: 0;
    display: block !important;
    object-fit: cover !important;
    margin: 0 !important;
    z-index: 1;
    opacity: 1;
    order: -1 !important;
}

/* Info Card Bottom - 50% Height */
.feature-info-card {
    padding: 30px 25px !important;
    background: var(--white);
    box-shadow: none;
    position: relative;
    z-index: 2;
    height: 50% !important;
    flex-grow: 0;
    order: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* Hide Icon and Badge */
.feature-image,
.feature-badge {
    display: none !important;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center !important;
    text-shadow: none;
    font-weight: 400;
}

.feature-link {
    font-size: 13px;
    font-weight: 700;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 15px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feature-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.2);
}

@media (max-width: 992px) {
    .feature-card {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .feature-card {
        grid-column: span 12;
    }

    .features-header h2 {
        font-size: 32px;
    }
}

/* =========================================
   Responsive Media Queries
   ========================================= */
@media (max-width: 992px) {

    .why-choose-content,
    .stats-container,
    .features-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .product-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 32px;
    }
}


/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-section {
    padding: 120px 0;
    background-color: #f0f8ff;
    /* AliceBlue - Very light blue */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23002b49' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 43, 73, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.03) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.section-header .sub-title {
    display: block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header h2 {
    color: #002b49;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 70px;
    letter-spacing: -1px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    perspective: 1000px;
}

.testimonial-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    /* Soft, deep shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Quote Icon Background */
.testimonial-card::before {
    content: '\f10d';
    /* FontAwesome Quote Left */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    color: rgba(0, 43, 73, 0.03);
    z-index: 0;
    transition: all 0.5s ease;
}

.testimonial-card:hover {
    background: #002b49;
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 43, 73, 0.15);
    border-color: transparent;
}

.testimonial-card:hover::before {
    transform: rotate(-10deg) scale(1.1);
    color: rgba(255, 255, 255, 0.05);
    /* Subtle white quote on blue bg */
}

/* Text color changes on hover */
.testimonial-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card:hover .client-name {
    color: #fff;
}

.testimonial-card:hover .client-name::before {
    background-color: #ffb400;
    /* Keep accent visible */
}

/* Uniform Featured Card (Scale only, no color change) */
.testimonial-card.featured {
    transform: scale(1.05);
    border: 1px solid rgba(255, 102, 0, 0.1);
    /* Subtle orange border */
    box-shadow: 0 20px 50px rgba(0, 43, 73, 0.06);
    z-index: 5;
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 43, 73, 0.12);
    background: #002b49;
}

/* Ensure featured card text also turns white on hover */
.testimonial-card.featured:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card.featured:hover .client-name {
    color: #fff;
}

.testimonial-card .rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-card .stars {
    color: #ffb400;
    /* Golden Yellow */
    font-size: 14px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.testimonial-card .client-name {
    font-size: 18px;
    font-weight: 800;
    color: #002b49;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-card .client-name::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Featured card specifcs - ensure text remains dark */
.testimonial-card.featured .client-name {
    color: #002b49;
}

.testimonial-card.featured p {
    color: #555;
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.testimonial-pagination .dot {
    width: 10px;
    height: 10px;
    background-color: #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-pagination .dot.active {
    background-color: var(--primary-color);
    width: 35px;
    border-radius: 20px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card.featured {
        transform: scale(1);
        /* Disable scale on tablet */
    }

    .testimonial-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Video Testimonials Section
   ========================================= */
.video-testimonials-section {
    padding: 20px 0 140px;
    background-color: #fffcf9;
    /* Very light warm tint */
    position: relative;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.video-item {
    perspective: 1000px;
}

.video-thumb {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.video-thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.video-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(255, 120, 0, 0.4));
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: #ff7800;
    /* Orange Play Button */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 0 0 0 rgba(255, 120, 0, 0.4);
    transition: all 0.4s;
}

.video-thumb:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 20px rgba(255, 120, 0, 0);
}

.video-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-view-more {
    display: inline-block;
    background: linear-gradient(135deg, #ff7800, #ffb347);
    /* Vibrant Orange Gradient */
    color: var(--white);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(255, 120, 0, 0.3);
    transition: all 0.3s;
}

.btn-view-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 120, 0, 0.4);
    background: linear-gradient(135deg, #ffb347, #ff7800);
}

@media (max-width: 992px) {

    .testimonials-grid,
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {

    .testimonials-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Partners Section (Compact Slider)
   ========================================= */
.partners-slider-section {
    position: relative;
    padding: 50px 0;
    text-align: center;
    background-color: var(--white);
    overflow: hidden;
}

.partners-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background-image: url('img/hero2.png');
    background-color: rgba(255, 102, 0, 0.85);
    /* Vibrant Orange */
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.partners-slider-header {
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.partners-slider-header h2 {
    font-size: 32px;
}

.partners-slider-header p {
    font-size: 13px;
    margin-bottom: 20px;
}

.partner-style {
    flex: 0 0 calc(20% - 20px) !important;
    /* Default 5 items */
    height: 180px !important;
    border-top: 3px solid var(--primary-color) !important;
}

.partner-style .product-image {
    height: 100px !important;
    background: #fff;
}

.partner-style .product-image img {
    padding: 20px !important;
}

.partner-style .product-info {
    padding: 15px 10px !important;
}

.partner-style .product-info h3 {
    font-size: 14px !important;
    margin-bottom: 0 !important;
}

@media (max-width: 992px) {
    .partner-style {
        flex: 0 0 calc(33.333% - 20px) !important;
    }
}

@media (max-width: 576px) {
    .partner-style {
        flex: 0 0 calc(50% - 20px) !important;
    }
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Experience & Contact CTA Sections
   ========================================= */
.experience-cta {
    padding: 40px 0;
    background-color: #fcfcfc;
}

.experience-card {
    background: linear-gradient(135deg, #001220 0%, #002744 100%);
    border-radius: 8px;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 850px;
    margin: 0 auto;
}

/* Very Subtle Map Dots Path */
.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    z-index: 1;
}

.experience-content {
    flex: 1;
    padding: 25px 40px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.experience-content h2 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 100%;
}

.brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eeb32a;
    /* Vibrant Gold/Orange from image */
    color: #000;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(238, 179, 42, 0.15);
}

.brochure-btn i {
    font-size: 18px;
}

.brochure-btn:hover {
    background: #f5c04a;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(238, 179, 42, 0.4);
}

.experience-image {
    flex: 0 0 280px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Contact Bar - Refined for "Format" */
.contact-bar-section {
    background-color: #9d7d56;
    /* Precise Tan/Brown */
    padding: 2px 0;
}

.contact-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.headset-icon {
    width: 28px;
    height: 28px;
    border: 1.2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.1);
}

.contact-info span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--white);
    text-transform: uppercase;
}

.contact-divider {
    height: 20px;
    width: 1.5px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 20px;
}

.contact-action {
    display: flex;
    align-items: center;
}

.contact-us-btn {
    background: var(--white);
    color: #9d7d56;
    padding: 4px 15px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-size: 11px;
}

.contact-us-btn:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    .experience-card {
        margin: 0 20px;
    }

    .experience-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .experience-card {
        flex-direction: column;
    }

    .experience-image {
        flex: 0 0 500px;
        width: 100%;
    }

    .experience-image img {
        clip-path: none;
    }

    .experience-content {
        padding: 50px 40px;
        align-items: center;
        text-align: center;
    }

    .experience-content h2 {
        max-width: 100%;
    }

    .contact-bar {
        flex-direction: column;
        gap: 25px;
    }

    .contact-divider {
        display: none;
    }
}

/* =========================================
   Premium Footer
   ========================================= */
.main-footer {
    background: linear-gradient(170deg, #0d1117 0%, #070a0f 100%);
    color: var(--white);
    padding: 80px 0 60px;
    font-family: var(--font-main);
    position: relative;
    border-top: 3px solid var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    /* Symmetrical columns */
    gap: 80px;
    /* Increased gap for better "white space" */
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 13px;
    /* Slightly smaller, more elegant */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #ffffff;
    /* Crisp white titles */
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 25px;
    /* Shorter, neater line */
    height: 2px;
    background-color: var(--primary-color);
}

.footer-about h2 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.footer-about h2 span {
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about p {
    color: #b0bec5;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    border-left: 3px solid var(--primary-color);
    padding-left: 14px;
}

.footer-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    transition: background 0.3s ease;
}

.footer-detail-item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.footer-detail-item i {
    color: var(--primary-color);
    font-size: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-detail-item a {
    color: #cfd8dc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #cfd8dc;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-size: 18px;
}

.footer-social a:nth-child(1):hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.35);
}

.footer-social a:nth-child(2):hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.35);
}

.footer-social a:nth-child(3):hover {
    background: #0077b5;
    border-color: #0077b5;
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.35);
}

.footer-social a:nth-child(4):hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #e6683c;
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.35);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 5px;
}

.footer-contact-item .text h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-contact-item .text p,
.footer-contact-item .text a {
    color: #bbbbbb;
    font-size: 14px;
    text-decoration: none;
    margin: 0;
}

.footer-contact-item .text a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background: #04070a;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 102, 0, 0.15);
    margin-top: 40px;
}

.footer-bottom p {
    color: #64748b;
    font-size: 13px;
    margin: 0;
}

.footer-legal-links a {
    color: #64748b;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* =========================================
   About Page & Content Overhaul Styles
   ========================================= */
.page-hero {
    height: 45vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-bottom: 80px;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
}



.about-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
    background: linear-gradient(145deg, #ffffff, #f5f7fa);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.about-intro h2 {
    font-size: 38px;
    color: var(--top-bar-bg);
    margin-bottom: 25px;
    font-weight: 800;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.about-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 25px;
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.values-section {
    background: #f8faff;
    padding: 100px 0;
    margin-bottom: 80px;
}

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

.value-item,
.motto-item {
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.value-item .badge,
.motto-item .badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 20px;
}

.choose-grid-section {
    padding: 100px 0;
}

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

.choose-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.choose-item:hover {
    background: #002b49;
    color: #fff;
    border-color: #002b49;
}

.choose-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.services-about-section {
    padding-bottom: 100px;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {

    .about-grid,
    .values-grid,
    .services-content {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Visual Showcase Gallery
   ========================================= */
.aesthetic-gallery {
    padding: 100px 0;
    background-color: #fbfbfb;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.decoration-line {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--white);
    transition: bottom 0.4s ease;
    backdrop-filter: blur(5px);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.8;
}

/* Glassmorphism & UI Polish */
.about-card,
.value-item,
.motto-item {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    border: none;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 2;
        height: 300px;
    }
}

/* =========================================
   About Page Aesthetic Overhaul
   ========================================= */
.about-hero {
    height: 60vh;
    overflow: hidden;
}

.about-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
}

.about-hero .hero-tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--primary-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.about-hero h1 {
    font-size: 68px;
    line-height: 1.1;
}

.about-hero .highlight {
    color: var(--primary-color);
    background: linear-gradient(to right, #ff6600, #ff9933);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.7;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* Product Page Hero Styles */
.product-hero {
    height: 60vh;
    overflow: hidden;
}

.product-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.product-hero .hero-content {
    position: relative;
    z-index: 2;
}

.product-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--top-bar-bg);
    margin-bottom: 100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bento Values Section */
.bento-values-section {
    padding-bottom: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 30px;
}

.bento-item {
    background: #fff;
    border-radius: 30px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #e1e8ed;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 18, 32, 0.08);
    border-color: var(--primary-color);
}

.bento-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 24px 24px;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
}

/* Professional Integrity - Split Layout */
.bento-item.main-value {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    /* Remove default padding for split layout */
    display: flex;
    overflow: hidden;
    background: #fff;
    min-height: 500px;
}

.integrity-content {
    flex: 1;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.integrity-visual {
    flex: 0.8;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?q=80&w=800');
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: -20px;
}

.integrity-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.8), rgba(0, 43, 73, 0.6));
    z-index: 1;
}

.visual-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
    color: #fff;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.visual-overlay i {
    font-size: 40px;
    opacity: 0.8;
}

.visual-overlay span {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bento-item.main-value .bento-decor {
    background-image: linear-gradient(rgba(255, 102, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 102, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.bento-item .badge {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.bento-item h3 {
    font-size: 36px;
    font-weight: 800;
    margin: 20px 0;
    position: relative;
    z-index: 2;
    color: var(--top-bar-bg);
    line-height: 1.2;
}

.bento-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.value-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.value-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--top-bar-bg);
    font-size: 15px;
}

.value-list i {
    width: 32px;
    height: 32px;
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.motto-block {
    background: linear-gradient(135deg, #002b49, #001220);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.motto-block .bento-decor {
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 0.5px, transparent 0.5px);
    opacity: 0.1;
}

.motto-block h3,
.motto-block p {
    color: var(--white);
}

.motto-icon {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    bottom: -10px;
    right: -10px;
    transform: rotate(-15deg);
    z-index: 1;
}

.why-grid {
    background: #fff;
    grid-column: span 1;
    grid-row: span 1;
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
    position: relative;
    z-index: 2;
}

.mini-item {
    background: #f8faff;
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f3f5;
}

.mini-item:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
    border-color: var(--primary-color);
}

.mini-item i {
    display: block;
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.mini-item:hover i {
    color: #fff;
}

.mini-item span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-block {
    grid-column: span 2;
    background: linear-gradient(rgba(255, 102, 0, 0.9), rgba(255, 102, 0, 0.8)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=600');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 30px;
    min-height: 250px;
}

.highlight-block h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.highlight-block p {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin: 0;
}

.glow-accent {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.highlight-block:hover .glow-accent {
    opacity: 1;
}

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-item.main-value {
        grid-column: span 1;
        flex-direction: column;
        height: auto;
    }

    .integrity-visual {
        height: 250px;
        clip-path: none;
        margin-left: 0;
        width: 100%;
        order: -1;
        /* Image on top */
    }

    .about-hero h1 {
        font-size: 48px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Precision Range Section */
.precision-range-section {
    padding: 100px 0;
    background: #fbfdff;
}

.range-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.range-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.range-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.range-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.range-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.range-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 18, 32, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.range-item:hover .range-overlay {
    opacity: 1;
}

.range-item:hover .range-image img {
    transform: scale(1.1);
}

.specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.range-item:hover .specs {
    transform: translateY(0);
}

.spec-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-badge::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
}

.range-info {
    padding: 30px;
    text-align: center;
}

.range-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--top-bar-bg);
}

.range-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 992px) {
    .range-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Rich Imagery Sections (About Page)
   ========================================= */

/* Manufacturing Section (Parallax) */
.manufacturing-section {
    position: relative;
    padding: 160px 0;
    color: var(--white);
    overflow: hidden;
    margin-bottom: 120px;
}

.manufacturing-section .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.manufacturing-content {
    max-width: 650px;
    background: rgba(0, 18, 32, 0.4);
    padding: 50px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.manufacturing-content h2 {
    font-size: 52px;
    margin: 25px 0;
    line-height: 1.1;
}

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

.feat-item i {
    font-size: 28px;
    color: var(--primary-color);
}

.feat-item span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Team Gallery Refinement - NEAT SETTLEMENT */
.team-gallery-section {
    padding: 120px 0;
    background: #fff;
    border-top: 1px solid #f0f3f5;
}

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

.team-item {
    position: relative;
    border-radius: 30px;
    /* High radius for premium feel */
    overflow: hidden;
    height: 480px;
    /* Taller for elegance */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fbfdff;
    border: 1px solid #f0f3f5;
}

.team-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 18, 32, 0.95), transparent 60%);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.team-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 70px rgba(0, 18, 32, 0.2);
}

.team-item:hover::after {
    opacity: 0.9;
}

.team-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-item:hover img {
    transform: scale(1.15);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 30px;
    color: var(--white);
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-item:hover .team-overlay {
    transform: translateY(0);
    opacity: 1;
}

.team-overlay h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.team-overlay p {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Enhanced About Cards Alignment */
.about-card {
    border-radius: 24px !important;
    overflow: hidden;
    height: 100%;
}

.card-image-bg {
    height: 250px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .manufacturing-section {
        padding: 100px 0;
    }

    .manufacturing-content h2 {
        font-size: 40px;
    }

    .team-item {
        height: 400px;
    }
}

/* =========================================
   Decorative Imagery & Motif Utilities
   ========================================= */

/* Ghost Motifs - Large background elements */
.ghost-motif {
    position: absolute;
    font-size: 300px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.04;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.ghost-motif.right {
    right: -50px;
    top: 10%;
}

.ghost-motif.left {
    left: -50px;
    bottom: 10%;
}

/* Floating Accents - Small decorative images */
.floating-accent {
    position: absolute;
    width: 280px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 8px solid #fff;
    z-index: 5;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-accent:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.accent-1 {
    top: -40px;
    right: -60px;
}

.accent-2 {
    bottom: -60px;
    left: -60px;
}

/* Section Separators - Textured dividers */
.textured-divider {
    height: 100px;
    background-image: radial-gradient(var(--primary-color) 0.8px, transparent 0.8px);
    background-size: 30px 30px;
    opacity: 0.3;
    margin: 40px 0;
}

/* About Main Section Refinement */
.about-main-section {
    position: relative;
    overflow: visible;
    padding-bottom: 150px;
}

.about-intro {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 18, 32, 0.05);
    margin-bottom: 100px;
    background-image: radial-gradient(#f0f3f5 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

/* Services About Refinement */
.services-about-section {
    padding: 120px 0;
    background: #fbfdff;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('https://www.transparenttextures.com/patterns/cubes.png');
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.services-text {
    position: relative;
}

.services-image {
    position: relative;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 18, 32, 0.1);
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.secondary-service-img {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 220px;
    height: 220px;
    border-radius: 30px;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.secondary-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .floating-accent {
        display: none;
        /* Hide on mobile to avoid clutter */
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================
   VISUAL FRAMES & DIAGRAMS
   ========================================= */

/* Decorative Image Frames */
.tech-img,
.maint-img {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.tech-img::before,
.maint-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    opacity: 0.15;
    pointer-events: none;
}

.tech-img::after,
.maint-img::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.tech-img img,
.maint-img img {
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

/* Diagram-Style Category Cards */
.cat-card {
    position: relative;
    overflow: visible;
}

.cat-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed rgba(255, 102, 0, 0.2);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s;
}

.cat-card:hover::before {
    opacity: 1;
}

/* Corner Brackets for Tech Section */
.tech-pane.active::before,
.tech-pane.active::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-color);
    opacity: 0.3;
}

.tech-pane.active::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 20px;
}

.tech-pane.active::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 20px;
}

/* Series Card Diagram Effect */
.series-card {
    position: relative;
}

.series-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255, 102, 0, 0.1);
    border-radius: 15px;
    pointer-events: none;
}

/* Icon Frame Enhancement */
.cat-icon {
    position: relative;
    border: 2px solid rgba(255, 102, 0, 0.1);
}

.cat-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(255, 102, 0, 0.05);
    border-radius: 50%;
}

/* Cabin Gallery Frame */
.cabin-item {
    position: relative;
    padding: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cabin-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(255, 102, 0, 0.1);
    border-radius: 15px;
    pointer-events: none;
}

.cabin-item img {
    border-radius: 10px;
}

/* Safety Item Diagram Style */
.safety-item {
    position: relative;
}

.safety-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px dashed rgba(255, 102, 0, 0.1);
    border-radius: 12px;
    pointer-events: none;
}

/* Decorative Corner Dots */
.section-header::before,
.section-header::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 0;
}

.section-header::before {
    left: 50%;
    transform: translateX(-30px);
}

.section-header::after {
    left: 50%;
    transform: translateX(30px);
}

/* Maintenance Box Frame */
.maint-box {
    position: relative;
    border: 2px solid rgba(255, 102, 0, 0.1);
}

.maint-box::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 30px;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Tech Specs List Diagram Style */
.tech-specs {
    position: relative;
    padding-left: 20px;
}

.tech-specs::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    border-radius: 2px;
}

/* Responsive Frame Adjustments */
@media (max-width: 768px) {

    .tech-img,
    .maint-img {
        padding: 10px;
    }

    .tech-pane.active::before,
    .tech-pane.active::after {
        width: 30px;
        height: 30px;
    }
}

/* =========================================
   STRUCTURED VISUAL BLOCKS
   ========================================= */

/* Visual Feature Showcase */
.visual-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 100px 0;
}

.feature-blocks {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f3f5;
    position: relative;
    overflow: hidden;
}

.feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), transparent);
}

.feature-block.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-block.reverse .feature-image {
    order: 2;
}

.feature-block.reverse .feature-info {
    order: 1;
}

.feature-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

.feature-block:hover .feature-image img {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: rgba(255, 102, 0, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.feature-info {
    padding: 20px;
}

.feature-info h3 {
    font-size: 2rem;
    color: var(--top-bar-bg);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 12px 0;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 14px;
}

/* Diagram-Style Info Blocks */
.info-diagram {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.diagram-block {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 2px solid #f0f3f5;
    position: relative;
    transition: all 0.3s ease;
}

.diagram-block::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 0 0 4px 4px;
}

.diagram-block:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.diagram-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff5eb, #ffe8d6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-color);
    border: 3px solid rgba(255, 102, 0, 0.1);
}

.diagram-block h4 {
    font-size: 1.2rem;
    color: var(--top-bar-bg);
    margin-bottom: 10px;
    font-weight: 600;
}

.diagram-block p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.comparison-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f3f5;
}

.comparison-header {
    background: linear-gradient(135deg, var(--top-bar-bg), #001a2e);
    color: #fff;
    padding: 30px;
    text-align: center;
}

.comparison-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.comparison-header .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.comparison-body {
    padding: 35px 30px;
}

.comparison-body ul {
    list-style: none;
    padding: 0;
}

.comparison-body li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-body li i {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {

    .feature-block,
    .feature-block.reverse {
        grid-template-columns: 1fr;
    }

    .feature-block.reverse .feature-image,
    .feature-block.reverse .feature-info {
        order: initial;
    }

    .info-diagram {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .feature-image {
        height: 250px;
    }

    .feature-info h3 {
        font-size: 1.5rem;
    }
}

/* =========================================
   VIBRANT COLORFUL DESIGN
   ========================================= */

/* Colorful Section Backgrounds */
.product-categories {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
    padding: 100px 0;
}

.tech-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    padding: 100px 0;
}

.series-section {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe6f0 100%);
    padding: 100px 0;
}

.cabins-section {
    background: linear-gradient(135deg, var(--top-bar-bg) 0%, #001a2e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cabins-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 102, 0, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.visual-showcase {
    background: linear-gradient(135deg, #f5f0ff 0%, #ebe6ff 100%);
}

.safety-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 100px 0;
}

.maintenance-section {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 100px 0;
}

/* Full-Width Image Blocks */
.full-image-block {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0;
}

.full-image-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 43, 73, 0.8), rgba(255, 102, 0, 0.6));
}

.full-image-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.full-image-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.full-image-content p {
    font-size: 1.3rem;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

/* Colorful Diagram Blocks */
.diagram-block {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.diagram-block:nth-child(1) {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
}

.diagram-block:nth-child(2) {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
}

.diagram-block:nth-child(3) {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe6f0 100%);
}

/* Colorful Category Cards */
.cat-card:nth-child(1) {
    background: linear-gradient(135deg, #fff5eb 0%, #fff 100%);
}

.cat-card:nth-child(2) {
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
}

.cat-card:nth-child(3) {
    background: linear-gradient(135deg, #fff0f5 0%, #fff 100%);
}

.cat-card:nth-child(4) {
    background: linear-gradient(135deg, #f0fff4 0%, #fff 100%);
}

/* Colorful Series Cards */
.series-card:nth-child(1) {
    background: linear-gradient(135deg, #fff 0%, #fff5eb 100%);
    border-left: 5px solid var(--primary-color);
}

.series-card:nth-child(2) {
    background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
    border-left: 5px solid #2196F3;
}

.series-card:nth-child(3) {
    background: linear-gradient(135deg, #fff 0%, #f0fff4 100%);
    border-left: 5px solid #4CAF50;
}

/* Safety Items with Colors */
.safety-item:nth-child(1),
.safety-item:nth-child(6) {
    background: linear-gradient(135deg, #fff 0%, #fff5eb 100%);
}

.safety-item:nth-child(2),
.safety-item:nth-child(7) {
    background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
}

.safety-item:nth-child(3),
.safety-item:nth-child(8) {
    background: linear-gradient(135deg, #fff 0%, #fff0f5 100%);
}

.safety-item:nth-child(4),
.safety-item:nth-child(9) {
    background: linear-gradient(135deg, #fff 0%, #f0fff4 100%);
}

.safety-item:nth-child(5),
.safety-item:nth-child(10) {
    background: linear-gradient(135deg, #fff 0%, #fff3e0 100%);
}

/* Feature Blocks with Colored Backgrounds */
.feature-block:nth-child(1) {
    background: linear-gradient(135deg, #fff 0%, #fff5eb 50%, #fff 100%);
}

.feature-block:nth-child(2) {
    background: linear-gradient(135deg, #fff 0%, #f0f7ff 50%, #fff 100%);
}

.feature-block:nth-child(3) {
    background: linear-gradient(135deg, #fff 0%, #f0fff4 50%, #fff 100%);
}

/* Tech Pane Colored Backgrounds */
.tech-pane.active {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

/* Maintenance Box */
.maint-box {
    background: linear-gradient(135deg, #fff 0%, #fff5eb 100%);
}

/* Remove plain white backgrounds */

/* =========================================
   Contact Page Styles
   ========================================= */
.contact-hero {
    min-height: 400px;
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff9000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    font-size: 24px;
    color: var(--white);
}

.contact-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.contact-card-content p,
.contact-card-content a {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-decoration: none;
}

.contact-card-content a:hover {
    color: var(--primary-color);
}

.contact-form-side {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 15px;
    color: #666;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group.full-width {
    grid-column: span 2;
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), #ff9000);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

/* Map Section */
.map-section {
    padding: 60px 0 0 0;
    background: var(--white);
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.map-container {
    width: 100%;
    height: 450px;
    background: #e0e0e0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Contact Page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-side {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-info-side {
        grid-template-columns: 1fr;
    }

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

    .contact-form .form-group.full-width {
        grid-column: span 1;
    }

    .contact-form-side {
        padding: 25px;
    }
}

body {
    background: #f8f9fa;
}

/* =========================================
   Why Contact Section
   ========================================= */
.why-contact-section {
    padding: 80px 0;
    background: var(--white);
}

.why-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-contact-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-contact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), #ff9000);
    padding: 25px 30px;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.overlay-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.overlay-icon i {
    font-size: 24px;
    color: var(--white);
}

.image-overlay-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.image-overlay-card p {
    font-size: 13px;
    opacity: 0.9;
}

.why-contact-content .badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.why-contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 20px;
}

.why-contact-content h2 .highlight {
    color: var(--primary-color);
}

.why-contact-content>p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-feature:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

.why-feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.why-feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.why-feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.why-feature-text p {
    font-size: 14px;
    color: #666;
}

/* Responsive Why Contact */
@media (max-width: 992px) {
    .why-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-contact-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .why-contact-content h2 {
        font-size: 28px;
    }

    .why-contact-image img {
        height: 300px;
    }

    .image-overlay-card {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }


}

/* Range Item Link */
.range-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.range-item-link:hover {
    transform: translateY(-5px);
}

.range-item-link:hover .range-item {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* =========================================
   Mobile Navigation & Responsive Improvements
   ========================================= */

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn,
.mobile-nav-extras {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .header-content {
        position: relative;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav a {
        display: block;
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .header-contact {
        display: none;
        /* Hide header contact on mobile to save space */
    }

    .top-bar {
        display: none;
        /* Hide top bar on mobile */
    }

    /* Mobile Nav Extras */
    .mobile-nav-extras {
        display: block;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
    }

    .mobile-social-links {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        gap: 15px;
    }

    .mobile-social-links span {
        font-weight: 600;
        color: var(--secondary-color);
    }

    .mobile-social-links a {
        display: inline-flex;
        width: 36px;
        height: 36px;
        background: #f5f5f5;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        color: var(--secondary-color);
        border: none;
        padding: 0;
    }

    .mobile-contact-email {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-contact-email .email-item {
        display: flex;
        flex-direction: column;
        font-size: 14px;
    }

    .mobile-contact-email .mail-label {
        font-weight: 600;
        color: var(--primary-color);
        font-size: 12px;
        text-transform: uppercase;
    }

    .mobile-contact-email a {
        border: none;
        padding: 2px 0;
        color: #555;
        font-size: 14px;
    }

    /* Add overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    /* Hero Typography on Mobile */
    .hero-text h1 {
        font-size: 32px;
    }

    .gallery-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .gallery-hero h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
        padding: 12px 25px;
    }
}

/* =========================================
   Enhanced Mobile Styles - Header & Hero
   ========================================= */

@media (max-width: 768px) {

    /* Header Adjustments */
    .main-header {
        padding: 10px 0;
    }

    .logo img {
        height: 40px;
        /* Smaller logo for mobile */
    }

    .mobile-menu-btn {
        font-size: 22px;
        padding: 5px;
    }

    /* Hero Section Adjustments */
    .hero-section {
        height: 60vh;
        /* Reduced height */
        min-height: 400px;
    }

    .hero-content {
        text-align: center;
        /* Center align text for better mobile focus */
        padding-top: 20px;
    }

    .hero-text {
        margin: 0 auto;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-text .btn-primary {
        display: inline-flex;
        /* Ensure button stays inline-flex */
    }

    /* Hide less critical floating widgets on mobile to clear view */
    .catalog-widget {
        display: none;
    }

    .side-widget {
        display: none;
    }

    .floating-chat {
        width: 50px;
        height: 50px;
        font-size: 20px;
        right: 20px;
        bottom: 80px;
        /* Move up slightly to avoid overlap with bottom UI if any */
    }

    .expert-widget {
        bottom: 20px;
        right: 15px;
    }

    .expert-label {
        display: none;
        /* Only show icon on mobile */
    }

    .expert-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {

    /* Further adjustments for small screens */
    .hero-text h1 {
        font-size: 24px;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .slider-dots {
        bottom: 20px;
    }
}

/* =========================================
   Enhanced Mobile Styles - Content Sections
   ========================================= */

@media (max-width: 992px) {

    /* Stack sections that are side-by-side on desktop */
    .why-choose-content {
        flex-direction: column;
        gap: 40px;
    }

    .why-choose-image,
    .why-choose-text {
        width: 100%;
        padding: 0;
    }

    .experience-badge {
        right: 0;
        left: auto;
        bottom: 20px;
    }

    /* Stats Section */
    .stats-container {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 30px;
    }

    .stat-divider {
        display: none;
        /* Hide dividers on mobile/tablet if they clutter */
    }
}

@media (max-width: 768px) {

    /* Services Section */
    .services-overlap {
        margin-top: 0;
        /* Remove negative margin on mobile to avoid overlap issues */
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        /* Stack services */
        gap: 20px;
    }

    /* Products Section */
    .product-card {
        flex: 0 0 100%;
        /* Full width cards on mobile */
        height: auto;
        /* Allow auto height */
        min-height: 450px;
    }

    .slider-track {
        gap: 0;
        /* Let JS handle positioning or keep gap if slider uses it */
    }

    .product-image {
        height: 200px;
    }

    /* Stats Section - Full Stack */
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .stat-item {
        width: 100%;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        /* Slightly more visible background */
    }

    /* Advanced Features / Strengths */
    .features-grid {
        display: flex;
        /* Ensure it was grid/flex */
        flex-direction: column;
        gap: 30px;
    }

    .feature-card {
        margin-bottom: 0;
    }

    /* Diagrams */
    .strengths-grid {
        grid-template-columns: 1fr;
    }

    /* Sections Padding */
    .why-choose-section,
    .products-section,
    .stats-section,
    .safety-section,
    .advanced-features-section,
    .testimonials-section,
    .featured-section {
        padding: 50px 0;
    }

    /* Featured Project */
    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .featured-image-wrapper {
        height: 400px;
    }

    .featured-info-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin: -50px 20px 0;
        width: calc(100% - 40px);
        max-width: 100%;
    }

    .featured-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .products-header h2 {
        font-size: 28px;
    }

    .safety-header h2 {
        font-size: 32px;
    }

    /* Safety Section */
    .safety-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .safety-visual {
        display: none;
        /* Hide visual on very small screens */
    }

    /* Why Choose Us Badge */
    .experience-badge {
        padding: 15px 25px;
    }

    .experience-badge .years {
        font-size: 36px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 25px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        /* Ensure single column */
    }
}

/* =========================================
   Enhanced Mobile Styles - Footer & Contact
   ========================================= */

@media (max-width: 992px) {
    .contact-refined-section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {

    /* Footer */
    .footer-grid {
        display: grid;
        /* Ensure grid */
        grid-template-columns: 1fr;
        /* Stack footer columns */
        gap: 40px;
    }

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

    .footer-contact-details {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-social {
        justify-content: center;
        display: flex;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Contact Form Section */
    .contact-card-refined {
        padding: 30px 20px;
        /* Reduced padding */
    }

    .contact-card-refined h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .form-group-refined input,
    .form-group-refined select,
    .form-group-refined textarea {
        font-size: 16px;
        /* Prevent zoom on iOS input focus */
    }

    /* Experience CTA */
    .experience-card {
        flex-direction: column-reverse;
        /* Image on top or bottom? usually content first on mobile is better, or image first. Let's keep flex column */
        display: flex;
    }

    .experience-content {
        text-align: center;
        align-items: center;
        padding: 40px 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .experience-image {
        width: 100%;
        height: 250px;
    }

    .experience-content h2 {
        font-size: 24px;
        text-align: center;
    }

    /* Contact Bar */
    .contact-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
        height: auto;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-divider {
        display: none;
    }

    /* Global Footer Fixes */
    .footer-legal-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .footer-legal-links a {
        display: block;
        padding: 5px 0;
    }

    /* Product Page Fixes */
    .product-hero {
        padding-top: 140px;
        /* Add space for header */
    }

    .product-hero .hero-content {
        padding-top: 20px;
    }

    .product-hero h1 {
        font-size: 32px;
    }

    /* Fix Excessive Card Heights on Mobile - Optimized */
    .about-card,
    .cat-card-enhanced,
    .bento-card,
    .series-card-enhanced {
        height: auto !important;
        min-height: auto !important;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .cat-content,
    .bento-content,
    .series-card-content {
        padding: 20px !important;
    }

    .card-image-bg,
    .series-card-image,
    .bento-image {
        height: 180px !important;
    }

    .category-grid-enhanced,
    .bento-grid,
    .series-grid-enhanced {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Contact Page Fix */
    .contact-hero {
        padding-top: 120px;
    }

    /* Prevent Section Title Overlap */
    .section-header,
    .why-contact-section {
        position: relative;
        z-index: 1;
        /* Ensure content is above background elements */
        background-color: #fff;
        /* Ensure readability */
    }
}