/* ═══════════════════════════════════════════════
   BENEJAF INTERNATIONAL LIMITED — Site Styles
   Version 3.0 — Multi-Page Architecture
   ═══════════════════════════════════════════════ */

:root {
    --orange: #FF6B35;
    --orange-dark: #E55A25;
    --orange-light: #FF8C42;
    --charcoal: #1a1a2e;
    --dark: #16213e;
    --text: #2d2d3a;
    --text-light: #5a5a6e;
    --bg-warm: #faf8f5;
    --bg-section: #f3f0eb;
    --white: #ffffff;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-warm);
    overflow-x: hidden;
}

/* ─── HEADER ─── */
header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-decoration: none;
}

.logo span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
    background: var(--orange) !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.3s, transform 0.2s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text);
}

/* ─── HERO ─── */
.hero {
    margin-top: 72px;
    color: white;
    padding: 100px 2rem 110px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.6) 50%, rgba(255,107,53,0.3) 100%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,107,53,0.15);
    border: 1px solid rgba(255,107,53,0.3);
    color: var(--orange-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 700px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 em { font-style: normal; color: var(--orange); }

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 550px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-primary {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 2px solid var(--orange);
}

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.3);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.25);
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}

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

/* ─── STATS BAR ─── */
.stats-bar {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    padding: 2.5rem 1rem;
    border-right: 1px solid rgba(0,0,0,0.06);
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ─── SECTION COMMON ─── */
.section {
    padding: 5rem 2rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 650px;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* ─── PAGE HERO (for inner pages) ─── */
.page-hero {
    margin-top: 72px;
    background: var(--charcoal);
    color: white;
    padding: 60px 2rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,107,53,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(255,140,66,0.1) 0%, transparent 50%);
}

.page-hero .section-inner { position: relative; z-index: 1; }

.page-hero .section-label { color: var(--orange-light); }
.page-hero .section-title { color: white; margin-bottom: 0.5rem; }

.page-hero .section-subtitle {
    color: rgba(255,255,255,0.65);
    margin-bottom: 0;
}

/* ─── ABOUT ─── */
.about-section { background: var(--bg-warm); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-cards {
    display: grid;
    gap: 1.5rem;
}

.about-card {
    background: white;
    padding: 1.8rem;
    border-radius: 10px;
    border-left: 4px solid var(--orange);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.about-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.about-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ─── SERVICES ─── */
.services-section { background: white; }

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

.service-card {
    background: var(--bg-warm);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

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

.service-card:hover {
    border-color: rgba(255,107,53,0.15);
    box-shadow: 0 8px 30px rgba(255,107,53,0.08);
    transform: translateY(-3px);
}

.service-icon { font-size: 1.8rem; margin-bottom: 1rem; }

.service-card h3 {
    color: var(--charcoal);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ─── CLIENTS ─── */
.clients-section { background: var(--charcoal); color: white; }

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.client-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s;
}

.client-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,107,53,0.3);
    transform: translateY(-2px);
}

.client-card .client-name { font-weight: 600; font-size: 0.95rem; color: white; }
.client-card .client-type { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.3rem; }

/* ─── PROJECTS ─── */
.projects-section { background: var(--bg-section); }

.projects-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.project-card .project-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-header {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 100%);
    padding: 1.5rem;
    color: white;
}

.project-header .project-year {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 0.4rem;
}

.project-header h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.4; }

.project-body { padding: 1.5rem; }

.project-client {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.project-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-completed { background: #e8f5e9; color: #2e7d32; }
.status-ongoing { background: #fff3e0; color: #ef6c00; }
.status-suspended { background: #fce4ec; color: #c62828; }

/* Full project table */
.projects-table-wrap {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.projects-table-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.projects-table-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--charcoal);
}

.filter-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.filter-btn {
    padding: 6px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    background: transparent;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    color: var(--text);
}

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

.projects-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.projects-table thead { background: var(--bg-warm); }

.projects-table th {
    text-align: left;
    padding: 0.9rem 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.projects-table td {
    padding: 0.9rem 1.2rem;
    border-top: 1px solid rgba(0,0,0,0.04);
    color: var(--text);
    vertical-align: top;
}

.projects-table tr:hover td { background: rgba(255,107,53,0.02); }
.projects-table .td-desc { max-width: 400px; line-height: 1.6; }
.table-scroll { overflow-x: auto; max-height: 600px; overflow-y: auto; }

/* ─── SAFETY ─── */
.safety-section { background: white; }

.safety-highlight {
    background: linear-gradient(135deg, var(--charcoal), var(--dark));
    color: white;
    padding: 3rem;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.safety-highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.safety-highlight h3 em { font-style: normal; color: var(--orange); }

.safety-highlight p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.safety-badges { display: flex; flex-direction: column; gap: 1rem; }

.safety-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.safety-badge .badge-icon { font-size: 1.6rem; flex-shrink: 0; }
.safety-badge .badge-text { font-size: 0.9rem; line-height: 1.5; }
.safety-badge .badge-text strong { display: block; color: white; margin-bottom: 2px; }
.safety-badge .badge-text span { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

/* ─── GALLERY ─── */
.gallery-section { background: var(--bg-section); }

.gallery-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 8px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    background: white;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    color: var(--text);
}

.gallery-tab:hover, .gallery-tab.active {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

.gallery-item .caption small {
    display: block;
    color: var(--orange-light);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    min-height: 1.2em;
}
.lightbox-counter {
    color: white;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.55;
    margin-top: 0.2rem;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    background: none;
    border: none;
    opacity: 0.6;
    transition: opacity 0.2s;
    padding: 1rem;
    z-index: 2001;
    user-select: none;
}
.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }
.lightbox-nav:hover { opacity: 1; }

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.photo-count {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.1rem 0.45rem;
    border-radius: 20px;
    margin-left: 0.35rem;
    vertical-align: middle;
    opacity: 0.9;
}

/* ─── CONTACT ─── */
.contact-section { background: var(--bg-section); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.contact-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.info-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,107,53,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-details strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.info-details p, .info-details a {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
}

.info-details a:hover { color: var(--orange); }

.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.contact-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.contact-form-card .form-sub {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--bg-warm);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
    background: white;
}

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

.submit-btn {
    background: var(--orange);
    color: white;
    padding: 14px 36px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    width: 100%;
}

.submit-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.3);
}

.success-message {
    background: #2e7d32;
    color: white;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.2rem;
    display: none;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ─── FOOTER ─── */
footer {
    background: var(--charcoal);
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { margin-bottom: 1rem; }

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 350px;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
    .about-grid,
    .contact-grid,
    .safety-highlight {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu { display: block; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 16px;
        left: 16px;
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        gap: 0.2rem;
    }

    .nav-links.open a { display: block; padding: 0.7rem 0.5rem; }
    .nav-links.open .nav-cta { text-align: center; margin-top: 0.5rem; }

    .hero { padding: 70px 1.5rem 80px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .projects-featured { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
    .stat-item:last-child { border-bottom: none; }
    .gallery-grid { grid-template-columns: 1fr; }
}
