@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

:root {
    --black: #0F0F10;
    --charcoal: #1C1C1E;
    --orange: #F57C00;
    --orange-light: #FF8C00;
    --grey: #6E6E73;
    --red-orange: #D84315;
    --yellow: #FFC107;
    --white: #FFFFFF;
    --dark-surface: #141416;
    --card-bg: #1E1E21;
    --border: rgba(245,124,0,0.18);
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ── SELECTION ── */
::selection { background: var(--orange); color: var(--black); }

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; line-height: 1; }
h4, h5, h6 { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; letter-spacing: 0.02em; }

.display-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: 0.03em;
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--orange);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-title span { color: var(--orange); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red-orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}
.btn-primary-custom:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-primary-custom:hover { color: var(--white); }
.btn-primary-custom span { position: relative; z-index: 1; }
.btn-primary-custom i { position: relative; z-index: 1; transition: transform var(--transition); }
.btn-primary-custom:hover i { transform: translateX(4px); }

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 30px;
    border: 1.5px solid rgba(255,255,255,0.3);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-outline-custom:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(245,124,0,0.07);
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
#mainNav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    padding: 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#mainNav.scrolled {
    background: rgba(15,15,16,0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 40px rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--border);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    max-width: 1400px;
    margin: 0 auto;
    transition: padding var(--transition);
}
#mainNav.scrolled .navbar-inner { padding: 12px 40px; }

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    object-fit: cover;
    border: 2px solid var(--orange);
    transition: var(--transition);
}
.brand-logo:hover { transform: rotate(-3deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    color: var(--white);
    line-height: 1.1;
}
.brand-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0; padding: 0;
}
.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 8px 16px;
    position: relative;
    transition: color var(--transition);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 16px; right: 16px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--orange);
    color: var(--black) !important;
    padding: 10px 22px !important;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: background var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-orange) !important; color: var(--white) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,15,16,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.06em;
    color: var(--white);
    text-decoration: none;
    padding: 8px 0;
    transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-close {
    position: absolute;
    top: 24px; right: 30px;
    background: none; border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color var(--transition);
}
.mobile-close:hover { color: var(--orange); }

/* ═══════════════════════════════════════
   TOP BAR
═══════════════════════════════════════ */
.top-bar {
    background: var(--charcoal);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 0.78rem;
}
.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.65);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color var(--transition);
}
.top-bar-item:hover { color: var(--orange); }
.top-bar-item i { color: var(--orange); font-size: 0.85rem; }
.top-bar-divider { color: var(--border); margin: 0 4px; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../image/generators-on-rent1600-1200.jpg') center/cover no-repeat;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(15,15,16,0.95) 0%,
        rgba(15,15,16,0.8) 55%,
        rgba(15,15,16,0.4) 100%
    );
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245,124,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,124,0,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 40px ;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,124,0,0.12);
    border: 1px solid rgba(245,124,0,0.3);
    color: var(--orange);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease both;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 7vw, 6rem);
    line-height: 0.88;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-title .line-orange { color: var(--orange); }
.hero-title .line-stroke {
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
    color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.6s 0.4s ease both;
}
.hero-stat { text-align: left; }
.hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--orange);
    line-height: 1;
}
.hero-stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

/* HERO FORM CARD */
.hero-form-card {
    background: rgba(30, 30, 33, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245,124,0,0.25);
    border-radius: 12px;
    padding: 36px;
    animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 6px;
}

.hero-form-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

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

.form-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(245,124,0,0.2);
    border-radius: 6px;
    padding: 12px 14px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    transition: all var(--transition);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-control:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(245,124,0,0.12);
}

select.form-control {
    cursor: pointer;
}

select.form-control option {
    background: var(--charcoal);
    color: var(--white);
}

.w-100 { width: 100%; }

.hero-form-note {
    margin-top: 18px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
}

.hero-form-note a {
    color: var(--orange);
    text-decoration: none;
    transition: color var(--transition);
}

.hero-form-note a:hover {
    color: var(--orange-light);
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeIn 1s 1s ease both;
    cursor: pointer;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(var(--orange), transparent);
    animation: scroll-line 2s ease infinite;
}
@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════
   TICKER / MARQUEE
═══════════════════════════════════════ */
.ticker-wrap {
    background: var(--orange);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}
.ticker-wrap::before, .ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
}
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--orange), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(-90deg, var(--orange), transparent); }

.ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 30s linear infinite;
    width: max-content;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--black);
    white-space: nowrap;
    padding-right: 60px;
}
.ticker-dot {
    width: 5px; height: 5px;
    background: var(--black);
    border-radius: 50%;
    opacity: 0.5;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
section { padding: 100px 0; }

.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-image-wrap {
    position: relative;
}
.about-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}
.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--orange);
    color: var(--black);
    padding: 20px 24px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    text-align: center;
}
.about-img-badge .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    display: block;
}
.about-img-badge .lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 28px; }
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--orange);
    transition: var(--transition);
}
.about-feature:hover { background: rgba(245,124,0,0.06); }
.about-feature-icon {
    width: 42px; height: 42px;
    background: rgba(245,124,0,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--orange);
    flex-shrink: 0;
}
.about-feature h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
    color: var(--white);
}
.about-feature p {
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.5;
    margin: 0;
}

/* ── SERVICES ── */
.services-section { background: var(--black); }

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 20px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    height: 100%;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    height: 3px; width: 0;
    background: var(--orange);
    transition: width var(--transition);
}
.service-card:hover { border-color: rgba(245,124,0,0.4); transform: translateY(-4px); }
.service-card:hover::before { width: 100%; }

.service-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.service-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.85);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(15,15,16,0.85));
}

.service-card-body { padding: 24px; }
.service-card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: rgba(245,124,0,0.12);
    line-height: 1;
    position: absolute;
    top: 14px; right: 18px;
    pointer-events: none;
    transition: color var(--transition);
}
.service-card:hover .service-card-num { color: rgba(245,124,0,0.22); }

.service-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}
.service-card p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.6;
    margin: 0;
}
.service-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(245,124,0,0.1);
    color: var(--orange);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-top: 14px;
}

/* ── WHY CHOOSE US ── */
.why-section {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,124,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.why-img-stack {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}
.why-img-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}
.why-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 200px; height: 160px;
    object-fit: cover;
    border: 4px solid var(--charcoal);
}

.why-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--dark-surface);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.why-item:hover { border-color: rgba(245,124,0,0.35); background: rgba(245,124,0,0.04); }
.why-item-icon {
    width: 40px; height: 40px;
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    color: var(--black);
    font-size: 1rem;
    flex-shrink: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.why-item-text h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 3px;
}
.why-item-text p { font-size: 0.82rem; color: var(--grey); margin: 0; line-height: 1.5; }

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}
.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    min-height: 200px;
    transition: transform 0.6s ease;
    filter: brightness(0.8) saturate(0.9);
}
.gallery-item:nth-child(1) img { min-height: 400px; }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.7) saturate(1.1); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(245,124,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--black); }

/* ── PROCESS ── */
.process-section { background: var(--black); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 36px; left: 12.5%;
    width: 75%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
    pointer-events: none;
}

.process-step {
    padding: 40px 28px;
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}
.process-step:hover { background: rgba(245,124,0,0.05); border-color: rgba(245,124,0,0.3); }

.process-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--orange);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}
.process-step h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}
.process-step p { font-size: 0.84rem; color: var(--grey); line-height: 1.6; margin: 0; }

/* ── CTA BAND ── */
.cta-band {
    background: var(--orange);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: 'POWER';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18rem;
    color: rgba(0,0,0,0.07);
    right: -20px; top: -40px;
    pointer-events: none;
    letter-spacing: -0.04em;
    line-height: 1;
}
.cta-band-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.cta-band h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--black);
    line-height: 1.1;
}
.cta-band p {
    font-size: 1rem;
    color: rgba(0,0,0,0.65);
    max-width: 480px;
    margin-top: 8px;
}
.btn-dark-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    white-space: nowrap;
}
.btn-dark-custom:hover { background: var(--charcoal); color: var(--orange); }

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

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 36px;
    height: 100%;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 46px; height: 46px;
    background: rgba(245,124,0,0.12);
    border: 1px solid rgba(245,124,0,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 4px;
}
.contact-info-value {
    font-size: 0.92rem;
    color: var(--white);
    line-height: 1.5;
    margin: 0;
}
.contact-info-value a { color: var(--white); text-decoration: none; transition: color var(--transition); }
.contact-info-value a:hover { color: var(--orange); }

.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 36px;
}
.form-group-custom { margin-bottom: 20px; }
.form-label-custom {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
    display: block;
}
.form-control-custom {
    width: 100%;
    background: var(--dark-surface);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 13px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
    -webkit-appearance: none;
}
.form-control-custom:focus { border-color: var(--orange); }
.form-control-custom::placeholder { color: var(--grey); }
textarea.form-control-custom { resize: vertical; min-height: 120px; }

select.form-control-custom option { background: var(--charcoal); }

/* ── FOOTER ── */
.footer {
    background: var(--charcoal);
    border-top: 1px solid var(--border);
    padding-top: 70px;
}

.footer-brand { margin-bottom: 24px; }
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.footer-logo {
    width: 54px; height: 54px;
    border-radius: 4px;
    object-fit: cover;
    border: 2px solid var(--orange);
}
.footer-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    color: var(--white);
    line-height: 1.1;
}
.footer-brand-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 500;
}
.footer-desc {
    font-size: 0.87rem;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 300px;
}

.footer-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    font-size: 0.88rem;
    color: var(--grey);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition), gap var(--transition);
}
.footer-links a i { font-size: 0.65rem; color: var(--orange); }
.footer-links a:hover { color: var(--white); gap: 12px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.87rem;
    color: var(--grey);
    margin-bottom: 12px;
    line-height: 1.5;
}
.footer-contact-list i {
    color: var(--orange);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-contact-list a { color: var(--grey); text-decoration: none; transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--orange); }

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.05em;
}
.footer-copy span { color: var(--orange); }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════ */
.page-hero {
    padding: 160px 0 80px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245,124,0,0.08) 0%, transparent 60%);
}
.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245,124,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,124,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}
.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 16px;
}
.breadcrumb-custom a { color: var(--grey); text-decoration: none; transition: color var(--transition); }
.breadcrumb-custom a:hover { color: var(--orange); }
.breadcrumb-custom .sep { color: var(--orange); }
.breadcrumb-custom .current { color: var(--white); }
.page-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.04em;
}
.page-hero-title span { color: var(--orange); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1199px) {
    .navbar-inner { padding: 16px 24px; }
    .container-custom { padding: 0 24px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
}

@media (max-width: 991px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .top-bar-inner { flex-wrap: wrap; gap: 6px; }
    .hero-stats { gap: 24px; }
    .about-grid { grid-template-columns: 1fr; }
    .services-header { flex-direction: column; align-items: flex-start; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .hero-form-card { padding: 28px; }
}

@media (max-width: 767px) {
    section { padding: 70px 0; }
    .container-custom { padding: 0 20px; }
    .navbar-inner { padding: 14px 20px; }
    #mainNav.scrolled .navbar-inner { padding: 10px 20px; }
    .hero-content { padding: 100px 20px 60px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-stats { gap: 20px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .cta-band-inner { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .top-bar { display: none; }
    .page-hero { padding: 120px 0 60px; }
    .page-hero-inner { padding: 0 20px; }
    .hero-form-card { padding: 24px; margin-top: 40px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 1; }
    .process-steps { grid-template-columns: 1fr; }
    .hero-stat-num { font-size: 1.8rem; }
}
