/* ============================================
   DRIVING THE DREAM – PILOTING SERVICE
   Dark Industrial Theme | Gold Accents
   ============================================ */

:root {
    --black: #0a0c0f;
    --dark: #111418;
    --dark2: #181c22;
    --dark3: #1e2430;
    --gold: #c8902a;
    --gold-light: #e8a830;
    --gold-pale: #f0c060;
    --white: #f5f2ec;
    --grey: #8a8f9a;
    --grey-light: #bcc0ca;
    --border: rgba(200,144,42,0.2);
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --radius: 4px;
    --transition: 0.25s ease;
    --shadow: 0 8px 40px rgba(0,0,0,0.6);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-pale); }

img { max-width: 100%; display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── HEADER ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 2rem;
    background: rgba(10,12,15,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 0 2rem;
    background: rgba(10,12,15,0.98);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-pegasus {
    width: auto;
    height: 84px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(200,144,42,0.3));
    transition: filter var(--transition);
    object-fit: contain;
}

.logo-wrap:hover .logo-pegasus {
    filter: drop-shadow(0 0 14px rgba(200,144,42,0.6)) brightness(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-main {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    transition: color var(--transition);
}

.logo-sub {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.logo-wrap:hover .logo-main { color: var(--gold-light); }

.main-nav ul { display: flex; align-items: center; gap: 0.25rem; list-style: none; }

.main-nav a {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 1rem; right: 1rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

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

.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.main-nav a.nav-cta {
    background: var(--gold);
    color: var(--black);
    padding: 0.55rem 1.4rem;
    font-weight: 700;
    border-radius: var(--radius);
}

.main-nav a.nav-cta::after { display: none; }
.main-nav a.nav-cta:hover { background: var(--gold-pale); color: var(--black); }

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── PAGE WRAPPER ── */
.page-content { padding-top: 110px; }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/503862082_banner_flipped.jpg');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.35);
    transform: scale(1.03);
    transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1.06); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,12,15,0.85) 0%, rgba(10,12,15,0.3) 60%, rgba(10,12,15,0.65) 100%);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(200,144,42,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,144,42,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,144,42,0.12);
    border: 1px solid rgba(200,144,42,0.35);
    color: var(--gold-light);
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.8rem;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(3.2rem, 7vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .accent { color: var(--gold); display: block; }

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--grey-light);
    max-width: 560px;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.35s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stats {
    position: absolute;
    bottom: 4rem;
    right: 2rem;
    display: flex;
    gap: 3rem;
    animation: fadeIn 1s ease 0.8s both;
}

.stat-item {
    text-align: right;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-pale);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,144,42,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ── SECTIONS ── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-label {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--grey-light);
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.75;
}

/* ── INTRO BAND ── */
.intro-band {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
}

.intro-band-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.band-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey-light);
}

.band-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

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

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    background: var(--dark3);
    border-color: var(--border);
}

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

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(200,144,42,0.1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: rgba(200,144,42,0.2);
    border-color: var(--gold);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    color: var(--gold);
}

.service-card h3 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

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

/* ── MARQUEE STRIP ── */
.marquee-strip {
    background: var(--gold);
    padding: 0.9rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    padding: 0 2.5rem;
}

.marquee-item::after {
    content: '★';
    margin-left: 2.5rem;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 8px;
    margin-top: 3rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--dark2);
    position: relative;
}

.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(7) { grid-column: span 4; }
.gallery-item:nth-child(8) { grid-column: span 4; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
    transition: transform 0.6s ease, filter 0.3s ease;
    filter: brightness(0.85) saturate(0.9);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color 0.3s;
    pointer-events: none;
    border-radius: var(--radius);
}

.gallery-item:hover::after { border-color: var(--gold); }

/* ── WHY US ── */
.whyus-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.whyus-section::before {
    content: 'DTD';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 18rem;
    color: rgba(200,144,42,0.03);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.05em;
}

.whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 2rem;
}

.whyus-image-stack {
    position: relative;
    height: 520px;
}

.whyus-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 80%;
    height: 85%;
    object-fit: cover;
    border-radius: var(--radius);
    border: 2px solid var(--border);
}

.whyus-img-secondary {
    position: absolute;
    bottom: 0; right: 0;
    width: 58%;
    height: 52%;
    object-fit: cover;
    border-radius: var(--radius);
    border: 3px solid var(--dark);
    box-shadow: var(--shadow);
}

.whyus-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.75rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.whyus-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.whyus-point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--dark2);
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.whyus-point:hover { border-color: var(--border); }

.point-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    opacity: 0.5;
    flex-shrink: 0;
    width: 3rem;
}

.point-text h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.point-text p {
    color: var(--grey-light);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/502416295_2826407584205798_4879545018822375617_n.jpg') center/cover no-repeat;
    opacity: 0.07;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.2rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: var(--grey-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.cta-phone {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    display: block;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-pegasus {
    width: auto;
    height: 80px;
    opacity: 0.7;
    object-fit: contain;
    transition: opacity 0.25s;
}

.footer-brand:hover .footer-pegasus { opacity: 1; }

.footer-brand-text {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.footer-brand-text strong {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-brand-text span {
    font-family: var(--font-head);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--grey-light); font-size: 0.9rem; }
.footer-col a:hover { color: var(--white); }

.footer-contact p { font-size: 0.9rem; color: var(--grey-light); margin-bottom: 0.45rem; }
.footer-contact a { color: var(--grey-light); }
.footer-contact a:hover { color: var(--gold); }
.footer-avail {
    font-family: var(--font-head);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold) !important;
    margin-top: 0.75rem !important;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--grey);
}

/* ── INNER PAGE HERO ── */
.page-hero {
    position: relative;
    padding: 8rem 2rem 5rem;
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(200,144,42,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,144,42,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.page-hero-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.page-hero h1 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.01em;
}

.page-hero h1 span { color: var(--gold); }

.breadcrumb {
    font-family: var(--font-head);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 1rem;
}

.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); margin: 0 0.5rem; }

/* ── SERVICES PAGE ── */
.services-detail {
    background: var(--black);
    padding: 5rem 2rem;
}

.service-detail-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-detail-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    scroll-margin-top: 100px;
}

.service-detail-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.service-detail-img {
    height: 220px;
    overflow: hidden;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.6s, filter 0.3s;
}

.service-detail-card:hover .service-detail-img img {
    transform: scale(1.05);
    filter: brightness(0.95);
}

.service-detail-body { padding: 2rem; }

.service-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.service-detail-body h3 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
}

.service-detail-body p {
    color: var(--grey-light);
    line-height: 1.75;
    font-size: 0.94rem;
}

/* ── ABOUT PAGE ── */
.about-content {
    background: var(--black);
    padding: 5rem 2rem;
}

.about-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-text h2 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-text h2 span { color: var(--gold); }

.about-text p {
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.97rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

.about-stat {
    background: var(--dark2);
    border: 1px solid var(--border);
    padding: 1.5rem;
    text-align: center;
    border-radius: var(--radius);
}

.about-stat-num {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.about-stat-label {
    font-family: var(--font-head);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey);
    margin-top: 0.4rem;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.about-img-item { overflow: hidden; border-radius: var(--radius); }
.about-img-item:first-child { grid-column: span 2; }

.about-img-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.5s, filter 0.3s;
}

.about-img-item:first-child img { height: 320px; }
.about-img-item:hover img { transform: scale(1.04); filter: brightness(1); }

/* ── GALLERY PAGE ── */
.gallery-page {
    background: var(--black);
    padding: 4rem 2rem;
}

.gallery-page-inner { max-width: 1280px; margin: 0 auto; }

.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 12px;
    margin-top: 2rem;
}

.gallery-full-item {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-full-item:hover { border-color: var(--gold); }

.gallery-full-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter: brightness(0.85) saturate(0.9);
    transition: transform 0.5s, filter 0.3s;
}

.gallery-full-item:hover img {
    transform: scale(1.05);
    filter: brightness(1) saturate(1.1);
}

/* ── CONTACT PAGE ── */
.contact-section {
    background: var(--black);
    padding: 5rem 2rem;
}

.contact-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-info h2 span { color: var(--gold); }

.contact-info p {
    color: var(--grey-light);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.contact-item-icon {
    width: 42px;
    height: 42px;
    background: rgba(200,144,42,0.1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg { width: 20px; height: 20px; color: var(--gold); }

.contact-item h4 {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.contact-item p { color: var(--white); font-size: 1rem; margin: 0; }
.contact-item a { color: var(--white); font-size: 1rem; }
.contact-item a:hover { color: var(--gold); }

/* ── FORM ── */
.contact-form-wrap {
    background: var(--dark2);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: var(--radius);
}

.contact-form-wrap h3 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
}

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

.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }

.form-group label {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark3);
    border: 1px solid rgba(200,144,42,0.2);
    color: var(--white);
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.25s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

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

.form-group select option { background: var(--dark3); }

.form-success {
    display: none;
    background: rgba(200,144,42,0.1);
    border: 1px solid var(--gold);
    padding: 1rem;
    border-radius: var(--radius);
    color: var(--gold-pale);
    font-size: 0.94rem;
    margin-top: 1rem;
}

/* ── ACCREDITATION BADGES ── */
.accred-section {
    background: var(--dark2);
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
}

.accred-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.accred-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.25s;
}

.accred-item:hover { opacity: 1; }

.accred-icon {
    width: 52px;
    height: 52px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accred-icon svg { width: 26px; height: 26px; color: var(--gold); }

.accred-label {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-light);
    text-align: center;
    max-width: 100px;
}

/* ── 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: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .whyus-grid { grid-template-columns: 1fr; }
    .whyus-image-stack { height: 380px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
    .gallery-item img { min-height: 200px; height: 220px; }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 80px; left: 0; right: 0; bottom: 0;
        background: rgba(10,12,15,0.97);
        backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        border-top: 1px solid var(--border);
    }

    .main-nav.open { transform: translateX(0); }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .main-nav a { font-size: 1.5rem; padding: 0.75rem 2rem; }
    .hamburger { display: flex; }

    .hero h1 { font-size: 3rem; }
    .hero-stats { position: static; margin-top: 3rem; justify-content: flex-start; }

    .gallery-full-grid { grid-template-columns: 1fr 1fr; }
    .gallery-full-item img { height: 200px; }

    .footer-links { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .form-row { grid-template-columns: 1fr; }
    .about-images { grid-template-columns: 1fr; }
    .about-img-item:first-child { grid-column: span 1; }

    .services-grid { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .intro-band-inner { gap: 1.5rem; }
}

@media (max-width: 480px) {
    .section { padding: 4rem 1.25rem; }
    .hero-inner { padding: 4rem 1.25rem 3rem; }
    .gallery-full-grid { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
}
