/* ============================================
   SILUNAMA GROUP
   Colors:
   - Dark charcoal: #2d2d2d
   - Near black:    #1a1a1a
   - Yellow/Gold:   #F5B800
   - Dark blue:     #020742 / #1a237e
   - Red accent:    #cf3506
   - White:         #ffffff
   ============================================ */

:root {
    --dark-charcoal: #2d2d2d;
    --near-black: #1a1a1a;
    --yellow: #F5B800;
    --yellow-dark: #e0a800;
    --dark-blue: #020742;
    --dark-blue-light: #1a237e;
    --red-accent: #cf3506;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-gray: #cccccc;
    --text-dark: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

/* ============================================
   NAVIGATION
   ============================================ */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    background: var(--white);
}

nav {
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover { color: var(--red-accent); }

.quote-btn {
    background-color: var(--dark-blue);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.quote-btn:hover { background-color: var(--dark-blue-light); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background-color: var(--dark-blue);
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================
   HERO — FULL-BLEED CINEMATIC
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Slideshow fills the full hero */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slideshow img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: heroFade 20s infinite;
}

.hero-slideshow img:nth-child(1) { animation-delay: 0s; }
.hero-slideshow img:nth-child(2) { animation-delay: 5s; }
.hero-slideshow img:nth-child(3) { animation-delay: 10s; }
.hero-slideshow img:nth-child(4) { animation-delay: 15s; }

@keyframes heroFade {
    0%   { opacity: 0; }
    8%   { opacity: 1; }
    25%  { opacity: 1; }
    33%  { opacity: 0; }
    100% { opacity: 0; }
}

/* Layered dark overlay — gradient from left */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        100deg,
        rgba(10,10,20,0.88) 0%,
        rgba(10,10,20,0.70) 45%,
        rgba(10,10,20,0.35) 75%,
        rgba(10,10,20,0.15) 100%
    );
}

/* Gold vertical accent bar on left edge */
.hero-bg-overlay::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var( --dark-blue);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex: 1;
}

/* Left text */
.hero-left { max-width: 580px; }

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.eyebrow-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
}

.eyebrow-text {
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Bebas Neue', 'Poppins', sans-serif;
    line-height: 0.9;
    margin-bottom: 24px;
    letter-spacing: 6px;
}

.hero-title-gold {
    display: block;
    font-size: 9rem;
    color: var(--yellow);
}

.hero-title-white {
    display: block;
    font-size: 5.5rem;
    color: var(--white);
}

.hero-desc {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 440px;
}

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-btn-primary {
    background: var( --dark-blue);
    color: var( --white);
    border: none;
    padding: 14px 34px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.5px;
}

.hero-btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.45);
    padding: 13px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

/* Right stats panel */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(2,7,66,0.75);
    border: 1px solid rgba(245,184,0,0.25);
    border-radius: 6px;
    padding: 30px 40px;
    min-width: 210px;
    flex-shrink: 0;
}

.stat-item { text-align: center; padding: 16px 0; }

.stat-number {
    display: block;
    font-family: 'Bebas Neue', 'Poppins', sans-serif;
    font-size: 3.2rem;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: 2px;
}

.stat-label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 4px;
    text-transform: uppercase;
}

.stat-divider {
    width: 100%;
    height: 1px;
    background: rgba(245,184,0,0.2);
}

/* Bottom capabilities bar */
.hero-bottom-bar {
    position: relative;
    z-index: 2;
    background: rgba(2,7,66,0.92);
    border-top: 2px solid var(--yellow);
}

.hero-bottom-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 14px 60px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero-bottom-inner span {
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-bottom-inner span i {
    color: var(--yellow);
    font-size: 0.9rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.about-wrapper { display: flex; min-height: 700px; }

.about-left {
    flex: 1;
    padding: 60px 50px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-heading,
.why-heading,
.vision-heading,
.clients-heading,
.contact-heading {
    font-family: 'Bebas Neue', 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--near-black);
    letter-spacing: 2px;
    line-height: 1.1;
}

.heading-underline { width: 80px; height: 4px; background: var(--dark-blue); margin: 15px 0 25px; }
.heading-underline-left { width: 60px; height: 4px; background: var(--dark-blue); margin: 15px 0 25px; }
.heading-underline-center { width: 60px; height: 4px; background: rgba(255,255,255,0.3); margin: 15px auto 30px; }
.heading-underline-center-yellow { width: 60px; height: 4px; background: var(--yellow); margin: 15px auto 20px; }

.about-description { font-size: 0.95rem; color: #555; line-height: 1.8; margin-bottom: 20px; }
.about-sub-heading { font-size: 0.95rem; color: #333; font-weight: 500; margin-bottom: 15px; }

.about-services-list { list-style: disc; padding-left: 20px; margin-bottom: 30px; }
.about-services-list li { font-size: 0.9rem; color: #555; line-height: 1.7; margin-bottom: 10px; }
.about-services-list li strong { color: #333; }

.about-right { flex: 0 0 45%; position: relative; overflow: hidden; }

.about-image-container { position: relative; width: 100%; height: 100%; }
.about-image-container img { width: 100%; height: 100%; object-fit: cover; }

.about-yellow-accent-top {
    position: absolute; top: 0; right: 0;
    width: 100%; height: 60px;
    background: var(--dark-blue); z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 0);
}

.about-diagonal-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, transparent 5%, rgba(45,45,45,0.4) 50%);
    z-index: 1;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose-section { position: relative; background: var(--white); overflow: hidden; }
.why-choose-wrapper { display: flex; min-height: 650px; }

.why-choose-left {
    flex: 0 0 50%;
    position: relative;
    background: var(--dark-charcoal);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.why-choose-image-container { position: relative; flex: 1; margin-top: 10px; }

.why-diagonal-bg {
    position: absolute;
    top: 0; left: -40px; right: -40px; bottom: 0;
    background: var(--dark-charcoal);
    transform: skewY(-3deg);
    z-index: 0;
}

.why-choose-image-container img {
    position: relative; z-index: 1;
    width: 90%; height: 400px; object-fit: cover;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}

.why-badge {
    position: absolute; bottom: 80px; left: -10px;
    background: var(--dark-blue);
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
}

.why-badge i { font-size: 2rem; color: var(--yellow); }

.why-choose-right {
    flex: 1;
    padding: 80px 60px;
    display: flex; flex-direction: column; justify-content: center;
}

.why-heading { font-size: 3.5rem; }

.why-description { font-size: 0.95rem; color: #555; line-height: 1.9; margin-bottom: 30px; }

.why-checkmarks { display: flex; flex-direction: column; gap: 15px; }

.check-item { display: flex; align-items: center; gap: 12px; }
.check-icon { color: var(--yellow); font-size: 1.3rem; font-weight: 700; background: rgba(245,184,0,0.15); width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-text { font-size: 1.1rem; font-weight: 700; color: var(--near-black); }

/* ============================================
   VISION & MISSION
   ============================================ */
.vision-section { position: relative; background: var(--white); overflow: hidden; }
.vision-wrapper { display: flex; min-height: 650px; }

.vision-left { flex: 0 0 45%; position: relative; padding: 40px; }
.vision-image-container { position: relative; height: 80%; margin-top: 10px; }
.vision-image-container img { width: 100%; height: 100%; object-fit: cover; }

.vision-right { flex: 1; padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }

.vision-card { background: var(--dark-blue); padding: 30px; margin-bottom: 25px; position: relative; }
.vision-card-icon, .approach-card-icon { margin-bottom: 10px; }
.vision-card-icon i, .approach-card-icon i { font-size: 1.8rem; color: var(--yellow); }
.vision-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.vision-card p { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.7; }

.approach-card { border: 2px solid var(--dark-blue); border-left: 4px solid var(--yellow); padding: 30px; }
.approach-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--near-black); margin-bottom: 10px; }
.approach-card p { font-size: 0.9rem; color: #555; line-height: 1.7; margin-bottom: 8px; }

/* ============================================
   CORE CAPABILITIES
   ============================================ */
.capabilities-section {
    position: relative;
    background: var(--dark-charcoal);
    padding: 60px 40px 80px;
    overflow: hidden;
}

.capabilities-subtitle { text-align: center; color: var(--text-gray); font-size: 0.95rem; max-width: 700px; margin: 0 auto 20px; }

.capabilities-heading {
    font-family: 'Bebas Neue', 'Poppins', sans-serif;
    font-size: 3.5rem; font-weight: 900;
    color: var(--white); text-align: center; letter-spacing: 3px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 50px 0 0;
    border-top: 2px solid rgba(255,255,255,0.1);
}

.capability-column { text-align: left; }
.capability-icon { margin-bottom: 15px; }
.capability-icon i { font-size: 2.5rem; color: var(--yellow); }
.capability-column h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: 1px; }
.capability-column ul { list-style: none; }
.capability-column ul li { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }

.cap-check {
    color: var(--yellow); font-size: 1rem; font-weight: 700;
    background: rgba(245,184,0,0.15);
    width: 24px; height: 24px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.capabilities-cta {
    text-align: center; margin-top: 60px; padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.capabilities-cta p { font-size: 1.1rem; font-weight: 600; color: var(--white); }

.cap-quote-btn {
    background-color: var(--dark-blue);
    color: var(--white); border: none; padding: 12px 30px;
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem;
    cursor: pointer; border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.cap-quote-btn:hover { background-color: var(--dark-blue-light); transform: translateY(-2px); }

/* ============================================
   OUR CLIENTS
   ============================================ */
.clients-section { position: relative; background: var(--white); overflow: hidden; padding: 0; }

.clients-wrapper { display: flex; min-height: 600px; padding: 60px 60px 80px; gap: 60px; }

.clients-left { flex: 0 0 45%; }
.clients-heading { color: var(--near-black); font-size: 4rem; margin-bottom: 10px; }

.clients-description { font-size: 0.9rem; color: #555; line-height: 1.8; margin-bottom: 25px; }

.clients-list { list-style: disc; padding-left: 20px; }
.clients-list li { color: #555; font-size: 0.9rem; margin-bottom: 6px; }

.clients-right { flex: 1; display: flex; align-items: center; }

.clients-logos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; width: 100%; }

.client-logo-item {
    background: var(--light-gray); border: 1px solid #e0e0e0;
    padding: 20px; display: flex; align-items: center; justify-content: center;
    min-height: 80px; border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.client-logo-item:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.client-logo-item img { max-width: 160px; max-height: 60px; object-fit: contain; }

/* ============================================
   EQUIPMENT FOR HIRE — DARK BACKGROUND
   ============================================ */
.equipment-section {
    position: relative;
    background: var(--dark-charcoal);   /* matches capabilities */
    padding: 80px 40px;
    overflow: hidden;
}

.equipment-heading {
    font-family: 'Bebas Neue', 'Poppins', sans-serif;
    font-size: 3.5rem; font-weight: 900;
    color: var(--white); text-align: center; letter-spacing: 3px;
}

.equipment-subtitle {
    text-align: center; color: var(--text-gray);
    font-size: 0.95rem; max-width: 700px; margin: 15px auto 50px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-card {
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.equipment-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.5); }

.equipment-card-image { width: 100%; height: 200px; overflow: hidden; position: relative; }
.equipment-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.equipment-card:hover .equipment-card-image img { transform: scale(1.08); }

.equipment-cta {
    text-align: center; margin-top: 50px;
    display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.equipment-cta p { font-size: 1.1rem; font-weight: 600; color: var(--white); }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { position: relative; background: var(--white); overflow: hidden; }

.contact-wrapper { display: flex; min-height: 600px; }

.contact-left {
    flex: 0 0 50%; padding: 60px 50px 80px 60px;
    display: flex; flex-direction: column; justify-content: center;
}

.contact-heading { font-size: 3.5rem; margin-bottom: 5px; }
.contact-description { font-size: 0.95rem; color: #555; line-height: 1.8; margin-bottom: 35px; }

.contact-details-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 25px;
    background: var(--dark-charcoal); padding: 35px;
}

.contact-detail-item { display: flex; align-items: flex-start; gap: 12px; }

.contact-detail-icon {
    width: 40px; height: 40px; background: var(--dark-blue);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon i { font-size: 1rem; color: var(--yellow); }
.contact-detail-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }

.contact-detail-item p,
.contact-detail-item p.no-link {
    font-size: 0.85rem; color: var(--text-gray) !important;
    line-height: 1.5; text-decoration: none !important;
    -webkit-text-fill-color: var(--text-gray);
}
.contact-detail-item a { color: var(--text-gray) !important; text-decoration: none !important; }

.contact-right { flex: 1; position: relative; overflow: hidden; }

.contact-yellow-accent {
    position: absolute; top: 0; right: 0; width: 100%; height: 70px;
    background: var(--dark-blue); z-index: 3;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 0);
}

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

.contact-form-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(26,26,26,0.92); padding: 30px 35px; z-index: 5;
}
.contact-form-overlay h3 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.contact-form-overlay > p { font-size: 0.85rem; color: var(--text-gray); margin-bottom: 15px; }

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

.form-group input,
.form-group textarea {
    width: 100%; padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.2); border-radius: 4px;
    font-size: 0.9rem; font-family: 'Poppins', sans-serif;
    background: rgba(255,255,255,0.08); color: var(--white);
    transition: border-color 0.3s ease;
    -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--yellow); outline: none; background: rgba(255,255,255,0.12); }
.form-group textarea { resize: vertical; min-height: 80px; }

.btn-submit {
    background-color: var(--dark-blue); color: var(--white); border: none;
    padding: 10px 28px; font-family: 'Poppins', sans-serif;
    font-weight: 600; font-size: 0.95rem; cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; border-radius: 3px;
}
.btn-submit:hover { background-color: var(--dark-blue-light); transform: translateY(-2px); }

.map-container { width: 100%; overflow: hidden; }
.map-container iframe { display: block; }

/* ============================================
   FOOTER
   ============================================ */
footer { background-color: var(--dark-blue); color: var(--white); padding: 50px 20px 20px; font-size: 1rem; }

.footer-content {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px; max-width: 1200px; margin: 0 auto;
    padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section h4 {
    font-size: 1.2rem; color: var(--red-accent); margin-bottom: 20px;
    position: relative; padding-bottom: 12px;
}
.footer-section h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 50px; height: 2px; background-color: var(--red-accent);
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; transition: transform 0.3s ease; font-size: 0.9rem; }
.footer-section ul li:hover { transform: translateX(5px); }
.footer-section ul li a { color: var(--white); text-decoration: none; transition: color 0.3s ease; }
.footer-section ul li a:hover { color: var(--red-accent); }
.footer-section ul li i { margin-right: 10px; color: var(--red-accent); }

.footer-bottom { text-align: center; padding-top: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }

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

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

a[href^="tel"] { color: inherit !important; text-decoration: none !important; }

/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .hero-title-gold { font-size: 7rem; }
    .hero-title-white { font-size: 4.5rem; }

    .hero-stats { display: none; }

    .about-heading, .why-heading, .vision-heading,
    .clients-heading, .contact-heading, .capabilities-heading,
    .equipment-heading { font-size: 2.8rem; }

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

    nav { padding: 10px 24px; }
    .nav-links { gap: 16px; }
    .nav-links a { font-size: 0.82rem; }

    .hero-content { padding: 0 40px; }
    .hero-bottom-inner { padding: 14px 40px; gap: 24px; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {

    /* Nav */
    .mobile-menu-btn { display: flex; }
    nav { padding: 10px 20px; flex-wrap: wrap; }
    .logo img { height: 55px; }

    .nav-links {
        display: none; position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--white);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 24px; z-index: 999; padding: 40px 20px;
    }
    .nav-links.active { display: flex; }
    .nav-links a { color: var(--red-accent); font-size: 1.2rem; font-weight: 600; }
    .nav-links a:hover { color: var(--yellow); }
    .nav-links .quote-btn { margin-top: 10px; font-size: 1rem; padding: 14px 36px; width: 100%; max-width: 260px; text-align: center; }

    /* Hero */
    .hero { min-height: 100svh; }

    .hero-bg-overlay {
        background: linear-gradient(
            180deg,
            rgba(10,10,20,0.75) 0%,
            rgba(10,10,20,0.70) 60%,
            rgba(10,10,20,0.55) 100%
        );
    }

    .hero-content {
        padding: 0 24px;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        padding-bottom: 0;
    }

    .hero-left { max-width: 100%; padding-bottom: 10px; }

    .hero-title-gold { font-size: 5.5rem; }
    .hero-title-white { font-size: 3.5rem; }

    .hero-eyebrow { margin-bottom: 14px; }
    .eyebrow-text { font-size: 0.72rem; }

    .hero-desc { font-size: 0.9rem; max-width: 100%; margin-bottom: 24px; }

    .hero-cta-row { flex-direction: column; gap: 10px; width: 100%; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; text-align: center; padding: 14px; font-size: 1rem; }

    .hero-stats { display: none; }

    .hero-bottom-bar { border-top: 1px solid var(--yellow); }
    .hero-bottom-inner {
        padding: 12px 20px;
        gap: 16px; flex-wrap: wrap; justify-content: center;
    }
    .hero-bottom-inner span { font-size: 0.72rem; }

    /* About — stack vertically, image BELOW text */
    .about-wrapper { flex-direction: column; }
    .about-left { padding: 40px 24px; order: 1; }
    .about-right { flex: none; height: 280px; order: 2; }

    /* Why Choose — stack, image BELOW text */
    .why-choose-wrapper { flex-direction: column; }
    .why-choose-left { flex: none; padding: 30px 24px; min-height: 280px; order: 2; }
    .why-choose-right { padding: 40px 24px; order: 1; }
    .why-heading { font-size: 2.4rem; }
    .why-choose-image-container img { width: 100%; height: 260px; }

    /* Vision — stack, image BELOW text */
    .vision-wrapper { flex-direction: column; }
    .vision-left { flex: none; height: 260px; padding: 24px; order: 2; }
    .vision-right { padding: 40px 24px; order: 1; }

    /* Capabilities */
    .capabilities-section { padding: 50px 24px 60px; }
    .capabilities-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 30px; margin-top: 30px; }
    .capabilities-heading { font-size: 2.5rem; }
    .capabilities-cta { flex-direction: column; gap: 14px; }
    .capabilities-cta p { font-size: 1rem; }
    .cap-quote-btn { width: 100%; max-width: 260px; padding: 14px; font-size: 1rem; }

    /* Clients */
    .clients-wrapper { flex-direction: column; padding: 40px 24px 60px; gap: 30px; }
    .clients-logos-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .clients-heading { font-size: 3rem; }

    /* Equipment */
    .equipment-section { padding: 60px 20px; }
    .equipment-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .equipment-heading { font-size: 2.5rem; }
    .equipment-cta { flex-direction: column; gap: 14px; }
    .equipment-cta .cap-quote-btn { width: 100%; max-width: 260px; padding: 14px; font-size: 1rem; }

    /* Contact */
    .contact-wrapper { flex-direction: column; }
    .contact-left { flex: none; padding: 40px 24px; }
    .contact-details-grid { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
    .contact-right { min-height: 550px; }
    .contact-form-overlay { padding: 24px 20px; }
    .contact-heading { font-size: 2.5rem; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-section h4::after { left: 50%; transform: translateX(-50%); }
    footer { padding: 40px 16px 16px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-title-gold { font-size: 4rem; }
    .hero-title-white { font-size: 2.8rem; }
    .hero-content { padding: 0 18px; }

    .about-heading, .why-heading, .vision-heading,
    .clients-heading, .contact-heading, .capabilities-heading,
    .equipment-heading { font-size: 2.1rem; }

    .clients-logos-grid { grid-template-columns: 1fr; }
    .equipment-grid { grid-template-columns: 1fr; }
    .equipment-card-image { height: 180px; }
}