/* =========================================================
   OBE'S CONSTRUCTION
   Modern Construction Website
   ========================================================= */


/* ================= ROOT ================= */

:root {
    --primary: #111315;
    --secondary: #1c2023;
    --dark: #090a0b;

    --gold: #f2b632;
    --gold-dark: #d99b18;

    --white: #ffffff;
    --off-white: #f7f7f5;
    --light: #eeeeeb;

    --text: #24272a;
    --muted: #6b7075;
    --border: #dedfdd;

    --container: 1200px;

    --transition: 0.3s ease;
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    border: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}


/* ================= TOP BAR ================= */

.top-bar {
    background: var(--dark);
    color: #cfd1d2;
    font-size: 12px;
}

.top-bar-inner {
    min-height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.top-contact a:hover {
    color: var(--gold);
}

.top-contact i {
    color: var(--gold);
}

.top-socials {
    display: flex;
    gap: 14px;
}

.top-socials a {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border: 1px solid #34383b;
    transition: var(--transition);
}

.top-socials a:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}


/* ================= HEADER ================= */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.header.scrolled .nav-wrapper {
    background: rgba(17, 19, 21, 0.98);
}

.nav-wrapper {
    background: rgba(17, 19, 21, 0.92);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.nav-container {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ================= LOGO ================= */

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
}

.logo-mark {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--dark);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
    font-weight: 700;
    transform: skew(-8deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
}

.logo-text small {
    margin-top: 4px;
    color: var(--gold);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
}


/* ================= NAVIGATION ================= */

.navbar {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    color: #dfe1e2;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 19px;
    background: var(--gold);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}


/* ================= HERO ================= */

.hero {
    height: 100vh;
    min-height: 680px;
    position: relative;
}

.hero-slider,
.hero-slide {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 7, 8, 0.9) 0%,
            rgba(5, 7, 8, 0.7) 45%,
            rgba(5, 7, 8, 0.25) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    color: var(--white);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.hero-eyebrow::before {
    content: "";
    width: 35px;
    height: 2px;
    background: var(--gold);
}

.hero h1 {
    max-width: 800px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(58px, 7vw, 105px);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 28px;
}

.hero h1 span {
    display: block;
    color: var(--gold);
}

.hero p {
    max-width: 600px;
    color: #e1e2e2;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}


/* ================= BUTTONS ================= */

.btn {
    min-height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--dark);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}


/* ================= HERO CONTROLS ================= */

.hero-navigation {
    position: absolute;
    z-index: 5;
    right: 4%;
    bottom: 50px;
    display: flex;
    gap: 8px;
}

.hero-navigation button {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.25);
    color: var(--white);
    transition: var(--transition);
}

.hero-navigation button:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.swiper-pagination {
    text-align: left !important;
    left: 4% !important;
    bottom: 53px !important;
    width: auto !important;
}

.swiper-pagination-bullet {
    width: 28px;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
}


/* ================= INTRO STRIP ================= */

.intro-strip {
    background: var(--gold);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.intro-item {
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 28px;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.intro-item:last-child {
    border-right: 0;
}

.intro-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 19px;
}

.intro-item strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.intro-item span {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.65);
}


/* ================= SECTIONS ================= */

.section {
    padding: 110px 0;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: block;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 13px;
}

.section-heading h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(48px, 5vw, 70px);
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--primary);
}

.section-heading h2 span {
    color: var(--gold-dark);
}

.section-heading p {
    color: var(--muted);
    margin-top: 22px;
}

.heading-line {
    width: 55px;
    height: 4px;
    background: var(--gold);
    margin-top: 20px;
}

.centered .heading-line {
    margin-left: auto;
    margin-right: auto;
}


/* ================= ABOUT ================= */

.about-section {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 85px;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 0 25px 25px 0;
}

.image-frame::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    height: 75%;
    border: 7px solid var(--gold);
}

.image-frame img {
    position: relative;
    z-index: 1;
    height: 550px;
    object-fit: cover;
}

.experience-box {
    position: absolute;
    z-index: 2;
    left: -20px;
    bottom: 35px;
    padding: 22px 30px;
    background: var(--dark);
    color: var(--white);
    border-left: 5px solid var(--gold);
}

.experience-box strong {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
    color: var(--gold);
    line-height: 1;
}

.experience-box span {
    font-size: 10px;
    letter-spacing: 2px;
}

.about-content .content-kicker {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-content h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 48px;
    line-height: 1;
    text-transform: uppercase;
    margin: 15px 0 25px;
}

.about-content h3 span {
    color: var(--gold-dark);
}

.about-content > p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 17px;
}

.about-points {
    margin: 28px 0;
}

.about-point {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.about-point > i {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    font-size: 12px;
}

.about-point strong {
    display: block;
    font-size: 14px;
}

.about-point p {
    color: var(--muted);
    font-size: 13px;
    margin-top: 3px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 5px;
}

.text-link:hover {
    color: var(--gold-dark);
}


/* ================= VISION ================= */

.vision-section {
    padding: 0 0 110px;
    background: var(--off-white);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.vision-card {
    position: relative;
    padding: 55px;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
}

.vision-card.featured {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.vision-number {
    position: absolute;
    right: 25px;
    top: 10px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 100px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.04);
}

.featured .vision-number {
    color: rgba(255, 255, 255, 0.04);
}

.vision-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    background: var(--gold);
    color: var(--dark);
    font-size: 20px;
}

.vision-card > span {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vision-card h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
    text-transform: uppercase;
    line-height: 1;
    margin: 12px 0 18px;
}

.vision-card p {
    color: var(--muted);
    font-size: 14px;
}

.featured p {
    color: #bfc2c4;
}


/* ================= SERVICES ================= */

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
}

.service-image {
    height: 190px;
    overflow: hidden;
}

.service-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.07);
}

.service-content {
    position: relative;
    padding: 25px;
}

.service-icon {
    position: absolute;
    right: 20px;
    top: -27px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--dark);
    font-size: 18px;
}

.service-content > span {
    color: #a5a7a8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-content h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    line-height: 1;
    text-transform: uppercase;
    margin: 9px 0 13px;
}

.service-content p {
    min-height: 72px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.service-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 17px;
    color: var(--dark);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-content a i {
    color: var(--gold-dark);
}

.service-content a:hover {
    color: var(--gold-dark);
}


/* ================= PROJECTS ================= */

.projects-section {
    background: var(--off-white);
}

.projects-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

.projects-heading .section-heading {
    margin-bottom: 0;
}

.projects-heading > p {
    max-width: 450px;
    color: var(--muted);
    font-size: 14px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.project-card {
    position: relative;
    height: 340px;
    overflow: hidden;
    background: var(--dark);
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.project-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    z-index: 2;
    left: 25px;
    right: 25px;
    bottom: 25px;
    color: var(--white);
}

.project-overlay span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.project-overlay h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 29px;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 5px;
}

.project-view {
    position: absolute;
    z-index: 4;
    top: 20px;
    right: 20px;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--dark);
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

.project-card:hover .project-view {
    opacity: 1;
    transform: translateY(0);
}

.project-view:hover {
    background: var(--white);
}


/* ================= CAPABILITY ================= */

.capability-section {
    background: var(--dark);
    color: var(--white);
}

.capability-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 90px;
    align-items: center;
}

.capability-content .section-label {
    color: var(--gold);
}

.capability-content h2 {
    max-width: 600px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(45px, 5vw, 67px);
    line-height: 0.95;
    text-transform: uppercase;
}

.capability-content h2 span {
    color: var(--gold);
}

.capability-content .heading-line {
    margin: 25px 0;
}

.capability-content > p {
    color: #b9bdbf;
    font-size: 14px;
    margin-bottom: 18px;
}

.capability-content .btn {
    margin-top: 15px;
}

.capability-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.capability-card {
    min-height: 180px;
    padding: 28px;
    background: #171a1c;
    border: 1px solid #2a2e31;
    transition: var(--transition);
}

.capability-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.capability-card > i {
    color: var(--gold);
    font-size: 25px;
    margin-bottom: 20px;
}

.capability-card h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 8px;
}

.capability-card p {
    color: #9ea3a5;
    font-size: 12px;
}


/* ================= CTA ================= */

.cta-section {
    position: relative;
    padding: 90px 0;
    background: var(--gold);
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -150px;
    top: -200px;
    border: 80px solid rgba(0, 0, 0, 0.05);
    transform: rotate(25deg);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content .section-label {
    color: rgba(0, 0, 0, 0.6);
}

.cta-content h2 {
    max-width: 750px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.9;
    text-transform: uppercase;
}

.cta-content h2 span {
    display: block;
}

.cta-content p {
    max-width: 550px;
    margin: 20px 0 27px;
    color: rgba(0, 0, 0, 0.65);
}


/* ================= CONTACT ================= */

.contact-section {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info {
    padding: 50px;
    background: var(--dark);
    color: var(--white);
}

.contact-info-header h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 43px;
    text-transform: uppercase;
    line-height: 0.95;
    margin: 12px 0 45px;
}

.contact-info-header h3 span {
    color: var(--gold);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--dark);
}

.contact-item > div:last-child > span {
    display: block;
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 3px;
}

.contact-item a,
.contact-item p {
    display: block;
    color: #e4e5e5;
    font-size: 13px;
    line-height: 1.7;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-note {
    display: flex;
    gap: 12px;
    padding-top: 25px;
    border-top: 1px solid #303438;
    margin-top: 10px;
}

.contact-note i {
    color: var(--gold);
}

.contact-note p {
    color: #aeb2b4;
    font-size: 11px;
}


/* ================= FORM ================= */

.contact-form-wrapper {
    padding: 50px;
    background: var(--white);
    border: 1px solid var(--border);
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--off-white);
    border: 1px solid var(--border);
    outline: none;
    color: var(--text);
    font-size: 13px;
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(242, 182, 50, 0.12);
}

.form-submit {
    border: none;
}


/* ================= FOOTER ================= */

.footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 75px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 55px;
}

.footer-brand p {
    max-width: 300px;
    color: #9fa4a6;
    font-size: 13px;
    margin: 25px 0 15px;
}

.footer-tagline {
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.footer-column h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 23px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: #9fa4a6;
    font-size: 12px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid #34383b;
    color: #bfc2c3;
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    padding-left: 0;
}

.footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #292d2f;
    color: #777d80;
    font-size: 10px;
}


/* ================= LIGHTBOX ================= */

.lightbox {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: none;
    place-items: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.94);
}

.lightbox.active {
    display: grid;
}

.lightbox-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.lightbox-content img {
    max-height: 75vh;
    width: auto;
    max-width: 100%;
    margin: auto;
    object-fit: contain;
}

.lightbox-content h3 {
    margin-top: 15px;
    color: var(--white);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 30px;
    text-transform: uppercase;
}

.lightbox-close {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--dark);
    font-size: 18px;
}


/* ================= BACK TO TOP ================= */

.back-to-top {
    position: fixed;
    z-index: 900;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    background: var(--dark);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--dark);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {

    .navbar {
        gap: 18px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .capability-grid {
        gap: 50px;
    }

}


@media (max-width: 900px) {

    .top-bar {
        display: none;
    }

    .nav-wrapper {
        background: var(--dark);
    }

    .nav-container {
        height: 75px;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        padding: 25px 5%;
        background: var(--dark);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .navbar.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 13px 0;
        border-bottom: 1px solid #292d30;
    }

    .nav-cta {
        margin-top: 15px;
        justify-content: center;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .about-grid,
    .capability-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 50px;
    }

    .capability-grid {
        gap: 50px;
    }

    .projects-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .section {
        padding: 75px 0;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero h1 {
        font-size: 57px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-navigation {
        display: none;
    }

    .swiper-pagination {
        left: 5% !important;
        bottom: 25px !important;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-item {
        min-height: 85px;
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    .intro-item:last-child {
        border-bottom: 0;
    }

    .about-image {
        margin: 0 5px;
    }

    .image-frame img {
        height: 400px;
    }

    .experience-box {
        left: -5px;
        bottom: 25px;
    }

    .about-content h3 {
        font-size: 40px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .vision-card {
        padding: 35px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: 300px;
    }

    .capability-cards {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-text strong {
        font-size: 21px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }

}


@media (max-width: 420px) {

    .hero h1 {
        font-size: 48px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

}