/* ============================================================
   Tejal Enterprises – Premium Industrial Stylesheet
   Redesigned for modern, responsive, accessible UI/UX
   Stack: HTML · CSS · JavaScript (no framework change)
   ============================================================ */

/* ── 1. Google Fonts & CSS Custom Properties ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Palette */
    --navy:          #0f172a;
    --navy-800:      #1e293b;
    --navy-700:      #334155;
    --navy-600:      #475569;
    --blue:          #1e40af;
    --blue-light:    #3b82f6;
    --orange:        #f97316;
    --orange-dark:   #ea580c;
    --orange-light:  #fed7aa;

    /* Neutrals */
    --white:         #ffffff;
    --gray-50:       #f8fafc;
    --gray-100:      #f1f5f9;
    --gray-200:      #e2e8f0;
    --gray-300:      #cbd5e1;
    --gray-500:      #64748b;
    --gray-700:      #334155;
    --text:          #0f172a;
    --text-muted:    #64748b;

    /* Semantic aliases (keeps old class names working) */
    --primary-color:   var(--blue);
    --secondary-color: var(--blue-light);
    --accent-color:    var(--orange);
    --accent-gradient: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --text-color:      var(--text);
    --light-text:      var(--text-muted);
    --bg-color:        var(--white);
    --light-bg:        var(--gray-50);
    --dark-bg:         var(--navy);
    --border-color:    var(--gray-200);

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(15,23,42,.06);
    --shadow:     0 4px 12px rgba(15,23,42,.08);
    --shadow-md:  0 8px 24px rgba(15,23,42,.10);
    --shadow-lg:  0 16px 40px rgba(15,23,42,.12);
    --shadow-xl:  0 24px 56px rgba(15,23,42,.16);
    --shadow-2xl: 0 40px 80px rgba(15,23,42,.22);

    /* Radii */
    --radius-sm:  6px;
    --radius:     12px;
    --radius-lg:  20px;
    --radius-xl:  28px;
    --radius-full: 9999px;

    /* Transitions */
    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.3s var(--ease);
    --transition-slow: 0.6s var(--ease);

    /* Layout */
    --container-max: 1200px;
    --section-pad:   96px;
}

/* ── 2. Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── 3. Layout ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: var(--section-pad) 0; }

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(249,115,22,.10);
    color: var(--orange-dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-header h2,
.section-title h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-header p,
.section-title p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-title {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-footer {
    text-align: center;
    margin-top: 52px;
}

/* ── 4. Typography ── */
h1, h2, h3, h4, h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.15;
}

/* ── 5. Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

/* ripple effect */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.btn:hover::after { transform: scaleX(1); }

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(249,115,22,.35);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(249,115,22,.45);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}

.btn-secondary:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

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

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.btn-light {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-weight: 600;
    font-size: .9rem;
    padding: 0;
    border: none;
    background: none;
    transition: gap var(--transition), color var(--transition);
}

.btn-link:hover { color: var(--orange); gap: 10px; }

/* ── 6. Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15,23,42,.0);
    border-bottom: 1px solid rgba(255,255,255,.0);
    transition: background 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
    padding: 0;
}

.navbar.scrolled {
    background: rgba(15,23,42,.96);
    border-bottom-color: rgba(255,255,255,.08);
    box-shadow: 0 4px 24px rgba(15,23,42,.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 24px;
}

.navbar-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.navbar-brand img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.navbar-brand span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: .03em;
    color: var(--white);
    line-height: 1;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-menu a {
    display: block;
    padding: 8px 14px;
    color: rgba(255,255,255,.85);
    font-size: .9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.navbar-menu a:hover,
.navbar-menu li.active a {
    color: var(--white);
    background: rgba(255,255,255,.1);
}

.navbar-menu .cta-btn a {
    background: var(--orange);
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: var(--radius-full);
    font-weight: 700;
    margin-left: 8px;
    box-shadow: 0 4px 14px rgba(249,115,22,.35);
}

.navbar-menu .cta-btn a:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249,115,22,.45);
}

/* Mobile Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.1);
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px;
    transition: background var(--transition);
}

.navbar-toggle:hover { background: rgba(255,255,255,.18); }

.navbar-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 7. Hero Slider ── */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
}

.slider-container,
.slider-wrapper {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s var(--ease);
}

/* ── Service Areas Styles ── */
.service-areas-section {
    background: linear-gradient(135deg, rgba(59,130,246,.08) 0%, #f8fbff 40%, #fff 100%);
    padding: 64px 0;
}
.service-areas-header .section-badge { background: rgba(59,130,246,.08); color: var(--blue-light); }
.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 28px;
    align-items: start;
}
.service-area-card {
    background: #ffffff;
    border: 1px solid rgba(59,130,246,0.16);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 24px 60px rgba(15,23,42,0.08);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-area-card:hover { transform: translateY(-8px); box-shadow: 0 32px 75px rgba(15,23,42,0.12); }
.service-area-card .card-head { display:flex; align-items:center; gap:14px; margin-bottom:20px; }
.service-area-card .card-icon {
    width:52px;
    height:52px;
    border-radius:16px;
    background: rgba(59,130,246,.12);
    color: var(--blue);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.25rem;
}
.service-area-card .card-title { margin:0; color:var(--navy); font-size:1.12rem; letter-spacing:0.01em; }
.service-area-card .card-list {
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
}
.service-area-card .card-list li {
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 16px;
    border-radius:14px;
    background: rgba(59,130,246,.06);
    border: 1px solid rgba(59,130,246,.12);
    color: var(--navy);
    font-weight: 500;
}
.service-area-card .card-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
}
.service-area-card .muted { color:var(--text-muted); }

@media (max-width: 980px) {
    .service-areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .service-areas-grid { grid-template-columns: 1fr; }
    .service-area-card { padding:24px; }
}

.slide.active { opacity: 1; }

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 6s var(--ease);
}

.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15,23,42,.88) 0%,
        rgba(15,23,42,.60) 60%,
        rgba(15,23,42,.40) 100%
    );
}

/* Hero Content */
.hero-slider .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-content {
    max-width: 740px;
    padding-top: 72px; /* navbar offset */
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s var(--ease) both;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--orange);
}

.hero-slider h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.0;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.1s var(--ease) both;
}

.hero-slider h1 .text-orange { color: var(--orange); }

.hero-slider h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: rgba(255,255,255,.85);
    margin-bottom: 12px;
    animation: fadeInUp 0.8s 0.05s var(--ease) both;
}

.hero-slider p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.80);
    margin-bottom: 10px;
    animation: fadeInUp 0.8s 0.2s var(--ease) both;
    line-height: 1.7;
}

.hero-subtext {
    font-size: .95rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 36px;
    max-width: 580px;
    animation: fadeInUp 0.8s 0.25s var(--ease) both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeInUp 0.8s 0.35s var(--ease) both;
}

/* Slider Stats Bar */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.10);
}

.hero-stats-bar .container {
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 24px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 10px;
    border-right: 1px solid rgba(255,255,255,.10);
    text-align: center;
}

.hero-stat-item:last-child { border-right: none; }

.hero-stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.70);
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Slider Nav */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 10;
    pointer-events: none;
}

.nav-btn {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,.10);
    border: 1.5px solid rgba(255,255,255,.25);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
    pointer-events: all;
}

.nav-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,.35);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--orange);
    transform: scale(1.4);
}

/* ── 8. Scroll Reveal Utility ── */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 1;
    transform: none;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* stagger delays */
.stagger-1 { transition-delay: .10s; }
.stagger-2 { transition-delay: .20s; }
.stagger-3 { transition-delay: .30s; }
.stagger-4 { transition-delay: .40s; }
.stagger-5 { transition-delay: .50s; }

/* ── 9. Why Choose Us ── */
.why-choose-us-section { background: var(--white); }

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.why-choose-us-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.why-choose-us-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.why-choose-us-card:hover { 
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.why-choose-us-card:hover::before { transform: scaleX(1); }

.icon-wrapper {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
    transition: transform var(--transition);
    box-shadow: 0 8px 24px rgba(30,64,175,.25);
}

.why-choose-us-card:hover .icon-wrapper {
    transform: rotate(-6deg) scale(1.08);
    background: var(--accent-gradient);
    box-shadow: 0 8px 24px rgba(249,115,22,.30);
}

.why-choose-us-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.why-choose-us-card p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
}

/* ── 10. Stats Section ── */
.stats-section {
    background: var(--navy);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
    margin-top: 40px;
}

.stat-card {
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    transition: all var(--transition);
}

.stat-card:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-4px);
    border-color: rgba(249,115,22,.30);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(249,115,22,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px;
    color: var(--orange);
}

.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-suffix { color: var(--orange); }

.stat-label {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.stats-section .section-header h2 { color: var(--white); }
.stats-section .section-header p  { color: rgba(255,255,255,.60); }

/* ── 11. Equipment Section ── */
.equipment-section { background: var(--gray-50); padding: 80px 0; }

.equipment-card-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.equipment-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
}

.equipment-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.equipment-card:hover::after { transform: scaleX(1); }

.equipment-card-img {
    height: 200px;
    overflow: hidden;
}

.equipment-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.equipment-card:hover .equipment-card-img img { transform: scale(1.07); }

.equipment-card-body {
    padding: 28px;
}

.equipment-card h3 {
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.equipment-category {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--orange-dark);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 10px;
}

.equipment-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: .92rem;
}

.equipment-features {
    list-style: none;
    padding: 0;
    background: var(--gray-50);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.equipment-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 16px;
    border-bottom: 1px solid var(--gray-100);
    font-size: .88rem;
    color: var(--text);
    font-weight: 500;
}

.equipment-features li:last-child { border-bottom: none; }

.equipment-features span {
    color: var(--blue);
    font-weight: 700;
}

/* Equipment Table */
.equipment-table-section { margin-top: 70px; }

.section-subheader { text-align: left; margin-bottom: 24px; }
.section-subheader h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.9rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.section-subheader p { color: var(--text-muted); font-size: .95rem; }

.equipment-table-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.equipment-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 700px;
}

.equipment-table thead tr {
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy-800) 100%);
}

.equipment-table th,
.equipment-table td {
    padding: 16px 20px;
    text-align: left;
    vertical-align: middle;
}

.equipment-table th {
    color: var(--white);
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.equipment-table tbody tr:nth-child(even) { background: var(--gray-50); }

.equipment-table tbody tr:hover { background: rgba(249,115,22,.04); }

.equipment-table td {
    color: var(--text);
    font-size: .92rem;
    border-bottom: 1px solid var(--gray-100);
}

.equipment-table .badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: .78rem;
    font-weight: 700;
    background: rgba(34,197,94,.10);
    color: #15803d;
}

/* ── 12. Services Section ── */
.services-section { background: var(--white); }

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-image {
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.07);
}

.service-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15,23,42,.8));
    color: var(--white);
    padding: 12px 16px;
    font-size: .85rem;
    font-weight: 500;
}

.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card.no-image .service-content {
    padding-top: 36px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-gradient);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    transition: transform var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(-6deg) scale(1.08);
}

.service-content h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-content p:last-of-type {
    margin-bottom: 0;
}

/* ── 13. About Section ── */
.about-section { background: var(--white); }

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

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--navy);
    margin-bottom: 20px;
}

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

.about-text .btn { margin-top: 10px; }

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* Homepage about: centred button */
.about-section .about-content {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

/* ── 14. Mission Vision Values ── */
.mvv-section { background: var(--gray-50); padding: 96px 0; }

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.mvv-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #00b4d8);
}

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

.mvv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 24px;
}

.mvv-icon.mission  { background: linear-gradient(135deg,#f97316,#ea580c); }
.mvv-icon.vision   { background: linear-gradient(135deg,#1e40af,#3b82f6); }
.mvv-icon.values   { background: linear-gradient(135deg,#16a34a,#22c55e); }

.mvv-card h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 14px; }
.mvv-card p  { color: var(--text-muted); line-height: 1.8; font-size: .95rem; }

/* ── 15. Gallery ── */
.gallery-section { background: var(--white); }

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 9px 22px;
    background: var(--gray-100);
    color: var(--text-muted);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(15,23,42,.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--white);
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery-overlay h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.gallery-overlay p  { font-size: .82rem; opacity: .80; }

/* ── 16. Blog ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
}

.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.blog-image {
    height: 210px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-image img { transform: scale(1.06); }

.blog-content { padding: 28px; }

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-meta i    { color: var(--orange); }

.blog-content h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.blog-content p  { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 16px; }

/* ── 17. Testimonials ── */
.testimonials-section { background: var(--gray-50); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px; right: 28px;
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--orange);
    opacity: .12;
    line-height: 1;
}

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

.testimonial-content { margin-bottom: 24px; }

.testimonial-content i {
    color: var(--orange);
    font-size: 1.6rem;
    margin-bottom: 14px;
    opacity: .6;
}

.testimonial-content p {
    color: var(--text);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
    color: #f59e0b;
    font-size: .9rem;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-author h4 { font-size: 1rem; color: var(--navy); margin-bottom: 2px; }
.testimonial-author p  { color: var(--text-muted); font-size: .82rem; }

/* ── 18. CTA Section ── */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -60%; left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -60%; right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,.12) 0%, transparent 70%);
}

.cta-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-content .btn-primary { box-shadow: 0 6px 24px rgba(249,115,22,.45); }

/* ── 19. Page Header ── */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 50px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 12px;
    animation: fadeInUp .7s var(--ease) both;
}

.page-header p {
    color: rgba(255,255,255,.75);
    font-size: 1.1rem;
    animation: fadeInUp .7s .1s var(--ease) both;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: .85rem;
    color: rgba(255,255,255,.60);
    animation: fadeInUp .7s .2s var(--ease) both;
}

.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: .65rem; }

/* ── 20. Contact ── */
.contact-section {
    background: var(--gray-50);
    padding: 96px 0;
}

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

.contact-layout .contact-info,
.contact-layout .contact-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

.contact-details { display: grid; gap: 16px; margin-bottom: 36px; }

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.contact-item:hover {
    border-color: rgba(249,115,22,.25);
    background: rgba(249,115,22,.03);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(249,115,22,.10);
    color: var(--orange);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--text);
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}

.social-links a:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: translateY(-2px);
}

/* Form */
.contact-form { display: grid; gap: 0; }
.contact-form-wrapper h2 { font-size: 2rem; color: var(--navy); margin-bottom: 32px; }

.form-group { margin-bottom: 22px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: .02em;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}

.form-control::placeholder { color: var(--gray-300); }

textarea.form-control { resize: vertical; min-height: 150px; }

select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }

.contact-submit-btn { width: 100%; justify-content: center; }

.form-success-msg {
    display: none;
    text-align: center;
    padding: 28px;
    background: rgba(34,197,94,.07);
    border: 1px solid rgba(34,197,94,.25);
    border-radius: var(--radius-lg);
    color: #15803d;
    font-weight: 600;
}

/* ── 21. Products ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
}

.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }

.product-image { height: 240px; overflow: hidden; position: relative; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-image img { transform: scale(1.07); }

.product-badge {
    position: absolute; top: 14px; right: 14px;
    padding: 5px 14px; border-radius: var(--radius-full);
    font-size: .75rem; font-weight: 700; color: var(--white);
    z-index: 2;
}

.product-badge.featured { background: var(--orange); }
.product-badge.new      { background: #16a34a; }

.product-content { padding: 28px; }

.product-category {
    font-size: .75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--orange-dark); margin-bottom: 6px;
}

.product-sku { font-size: .8rem; color: var(--text-muted); margin-bottom: 8px; }

.product-content h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.product-content p  { color: var(--text-muted); font-size: .9rem; margin-bottom: 18px; line-height: 1.7; }

.product-price { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 18px; }

.product-actions { display: flex; gap: 10px; }
.product-actions .btn { flex: 1; justify-content: center; padding: 12px 18px; }

/* ── 22. Industries ── */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
}

.industry-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
}

.industry-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }

.industry-image { height: 240px; overflow: hidden; }
.industry-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.industry-card:hover .industry-image img { transform: scale(1.06); }

.industry-content { padding: 32px; }

.industry-icon {
    width: 64px; height: 64px;
    background: var(--accent-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.industry-content h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 12px; }
.industry-content p  { color: var(--text-muted); margin-bottom: 18px; line-height: 1.7; font-size: .95rem; }

.industry-solutions {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 18px;
}

.industry-solutions strong { display: block; margin-bottom: 8px; font-size: .88rem; color: var(--text); }

.industry-solutions ul { padding: 0; }

.industry-solutions li {
    position: relative;
    padding: 4px 0 4px 22px;
    color: var(--text-muted);
    font-size: .88rem;
}

.industry-solutions li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }

/* ── 23. Case Studies ── */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
    gap: 36px;
}

.case-study-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
}

.case-study-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }

.case-study-image { height: 270px; overflow: hidden; position: relative; }
.case-study-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.case-study-card:hover .case-study-image img { transform: scale(1.06); }

.case-study-badge {
    position: absolute; top: 14px; right: 14px;
    padding: 6px 18px; border-radius: var(--radius-full);
    font-size: .78rem; font-weight: 700; color: var(--white);
}

.case-study-badge.featured { background: var(--orange); }

.case-study-content { padding: 32px; }

.case-study-industry {
    font-size: .75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--orange-dark); margin-bottom: 8px;
}

.case-study-content h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 18px; }

.case-study-client,
.case-study-location,
.case-study-date {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-muted); font-size: .88rem; margin-bottom: 8px;
}

.case-study-client i,
.case-study-location i,
.case-study-date i { color: var(--orange); width: 14px; }

.case-study-content p { color: var(--text-muted); margin: 18px 0; line-height: 1.7; font-size: .95rem; }

.case-study-testimonial {
    background: var(--gray-50);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin: 20px 0;
    border-left: 4px solid var(--orange);
}

.case-study-testimonial i { color: var(--orange); font-size: 1.2rem; margin-bottom: 8px; display: block; }
.case-study-testimonial p { font-style: italic; margin: 0 0 8px; font-size: .92rem; }
.case-study-testimonial .testimonial-author { font-weight: 700; font-size: .85rem; color: var(--navy); }

/* ── 24. Footer ── */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-brand h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

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

.footer-social-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: .04em;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--orange);
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
    color: rgba(255,255,255,.55);
    font-size: .9rem;
    transition: color var(--transition), padding-left var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a::before {
    content: '›';
    font-size: 1.1rem;
    color: var(--orange);
    opacity: 0;
    margin-left: -10px;
    transition: opacity var(--transition), margin var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-col ul li a:hover::before { opacity: 1; margin-left: 0; }

/* Footer Contact Info */
.footer .contact-info { list-style: none; }

.footer .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

.footer .contact-info i {
    color: var(--orange);
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
}

/* Footer Social */
.footer .social-links { margin-top: 24px; }

.footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: all var(--transition);
}

.footer .social-links a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,.40);
    font-size: .85rem;
}

.footer-bottom a {
    color: rgba(255,255,255,.55);
    transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--orange); }

/* ── 25. Misc / Utilities ── */
.page-header .page-header-dark { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); }

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    margin-bottom: 20px;
}

.card-header { padding: 20px 24px; border-bottom: 1px solid var(--gray-200); }
.card-header h2 { font-size: 1.3rem; color: var(--text); }
.card-body { padding: 24px; }

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: .78rem;
    font-weight: 700;
}

.badge-success { background: rgba(34,197,94,.12); color: #15803d; }
.badge-danger  { background: rgba(239,68,68,.12);  color: #991b1b; }
.badge-warning { background: rgba(245,158,11,.12); color: #92400e; }

.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 18px; font-size: .92rem; }
.alert-success { background: rgba(34,197,94,.08);  color: #15803d; border: 1px solid rgba(34,197,94,.25); }
.alert-danger  { background: rgba(239,68,68,.08);  color: #991b1b; border: 1px solid rgba(239,68,68,.25); }
.alert-warning { background: rgba(245,158,11,.08); color: #92400e; border: 1px solid rgba(245,158,11,.25); }

.no-data { text-align: center; padding: 60px 20px; color: var(--text-muted); font-size: 1rem; }

/* Back-to-top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(249,115,22,.40);
    z-index: 900;
}

#back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ── 26. Keyframe Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.04); }
}

@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ── 27. Responsive ── */

/* Tablet */
@media (max-width: 1024px) {
    :root { --section-pad: 72px; }

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

    .about-layout { gap: 40px; }

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

    .hero-stat-item:nth-child(2) { border-right: none; }
    .hero-stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.10); }
}

/* Mobile */
@media (max-width: 768px) {
    :root { --section-pad: 56px; }

    /* Navbar */
    .navbar-toggle { display: flex; }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 20px 24px 28px;
        gap: 2px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(255,255,255,.08);
    }

    .navbar-menu.active { display: flex; }

    .navbar-menu a { padding: 11px 14px; border-radius: var(--radius-sm); }

    .navbar-menu .cta-btn { margin-top: 8px; }
    .navbar-menu .cta-btn a { margin-left: 0; display: block; text-align: center; }

    /* Hero */
    .hero-slider { min-height: 520px; }
    .hero-content { padding-top: 80px; }

    .hero-stats-bar .container { grid-template-columns: repeat(2, 1fr); }
    .hero-stat-item { padding: 16px 8px; }
    .hero-stat-number { font-size: 1.7rem; }

    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .hero-buttons .btn { width: 100%; max-width: 260px; justify-content: center; }

    /* Layouts */
    .about-layout { grid-template-columns: 1fr; gap: 32px; }
    .about-image { order: -1; }
    .about-image img { height: 260px; }

    .contact-layout { grid-template-columns: 1fr; gap: 28px; }
    .contact-info, .contact-form-wrapper { padding: 28px 22px; }

    /* Grids */
    .services-grid,
    .gallery-grid,
    .equipment-grid,
    .blog-grid,
    .testimonials-grid,
    .stats-grid { grid-template-columns: 1fr; }

    .why-choose-us-grid { grid-template-columns: 1fr; }

    .industries-grid,
    .case-studies-grid,
    .products-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer { padding-top: 56px; }

    /* Page Header */
    .page-header { padding: 100px 0 50px; }
    .page-header::after { display: none; }

    /* Slider dots */
    .slider-dots { bottom: 120px; }

    /* Equipment table */
    .equipment-table { min-width: 100%; }
    .equipment-table th, .equipment-table td { padding: 12px 14px; }

    #back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* Small mobile */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-slider h1 { font-size: 2.4rem; }
    .section-header h2 { font-size: 1.8rem; }
    .hero-stats-bar .container { grid-template-columns: repeat(2, 1fr); }
    .mvv-card, .why-choose-us-card { padding: 28px 20px; }
}

/* ── 28. Accessibility ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ── Service Area Section ── */
.service-area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-area-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
}

.service-area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.area-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-100);
}

.area-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.area-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
}

.area-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-tag {
    background: var(--gray-50);
    color: var(--text);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--gray-200);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.location-tag:hover {
    background: var(--orange-light);
    border-color: var(--orange);
    color: var(--navy);
}

/* Responsive for service area */
@media (max-width: 992px) {
    .service-area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-area-grid {
        grid-template-columns: 1fr;
    }
    
    .service-area-card {
        padding: 24px 20px;
    }
    
    .area-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .area-header h3 {
        font-size: 1.2rem;
    }
}

/* ── Projects Section ── */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: var(--gray-100);
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(15, 23, 42, 0.8));
    z-index: 1;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    color: var(--orange);
    font-size: 3rem;
}

.project-placeholder i {
    opacity: 0.6;
}

.project-content {
    padding: 28px;
    position: relative;
    z-index: 2;
}

.project-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 14px 0;
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 1.3;
}

.project-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.project-location i {
    color: var(--orange);
    font-size: 1rem;
}

/* Responsive for projects */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-hero h1 {
        font-size: 2.8rem;
    }
    
    .projects-hero .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 24px;
    }
    
    .projects-hero {
        padding: 80px 0 60px;
    }
    
    .projects-hero h1 {
        font-size: 2.2rem;
    }
    
    .projects-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .projects-hero .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .projects-hero .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .projects-hero h1 {
        font-size: 1.8rem;
    }
    
    .projects-hero .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .project-content h3 {
        font-size: 1.2rem;
    }
}

