/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}
:root {
    --bg-main: #0b0b0b;
    --bg-surface: #111111;

    --text-main: #fffffffff;
    --text-secondary: #9ca3af;

    --accent: #ff6a00;
    --border-subtle: rgba(255,255,255,0.08);
}
/* BODY */
body {
    font-family: "Poppins", sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
}
body.no-scroll {
    overflow: hidden;
}
/* NAVBAR */
.navbar {
    width: 100%;
    padding: 18px 60px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1000;
}

/* CONTAINER */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO BLOCK */
.logo-block {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

/* LOGO IMAGE */
.logo-block img {
    width: 140px;
    object-fit: contain;
}

/* TAGLINE */
.tagline {
    font-size: 10px;
    letter-spacing: 2.5px;
    color: white;   /* brighter but still premium */
    margin-top: 6px;
    font-weight: 400;
}

/* BUTTON */
.btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 30px;

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    color: #ffffff;
    border: 1px solid #ff7a00;

    transition: all 0.3s ease;
}

/* HOVER */
.btn-primary:hover {
    background: #ff7a00;
    color: var(--bg-main);
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.5);
}

/* ICON */
.btn-primary i {
    width: 18px;
    height: 18px;
}
/* ===== STRIPS BASE ===== */
.right-strip {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 70px;
    background: var(--bg-main);
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 5000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;  /* 🔥 THIS FIXES IT */
    align-items: center;

    gap: 10px;
    padding-bottom: 20px;
}

/* LEFT */
.left-strip {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 70px;
    background: var(--bg-main);
    border-right: 1px solid rgba(255,255,255,0.08);
    z-index: 5000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* TOP SPACE */
.left-top {
    flex: 1;
}

/* MENU CENTER */
.menu {
    text-align: center;
    cursor: pointer;
}

/* BOTTOM */
.left-bottom {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;

    gap: 20px;
    padding-bottom: 20px;
}
/* RIGHT */
.right-strip {
    right: 0;
    border-left: 1px solid rgba(255,255,255,0.08);
}

/* ===== MAIN CONTENT OFFSET ===== */
.main-content {
    margin-left: 70px;
    margin-right: 70px;
    background: black;
}


/* BOTTOM SECTION */
.left-strip-bottom {
    margin-top: auto;
    margin-bottom: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
.menu-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    margin-bottom: 6px;
}

/* LINES */
.menu-icon span {
    display: block;
    width: 26px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.4s ease;
}

/* TEXT */
.menu p {
    font-size: 12px;
    color: #9ca3af;
}

/* 🔥 HOVER LINE SHIFT */
.menu:hover .menu-icon span:nth-child(1) {
    transform: translateX(-6px);
}
.menu:hover .menu-icon span:nth-child(2) {
    transform: translateX(6px);
}
.menu:hover .menu-icon span:nth-child(3) {
    transform: translateX(-6px);
}

/* 🔥 DOT ON LEFT OF MIDDLE LINE */
.menu-icon::after {
    content: '';
    position: absolute;

    width: 6px;
    height: 6px;
    background: #ff7a00;
    border-radius: 50%;

    left: -10px;       /* LEFT SIDE */
    top: 50%;          /* VERTICAL CENTER */
    transform: translateY(-50%);

    opacity: 0;
    transition: 0.3s;
}

.menu:hover .menu-icon::after {
    opacity: 1;
}

/* ===== SOCIAL ICONS ===== */
.socials {
    display: flex;
    flex-direction: column;   /* 🔥 force column */
    gap: 18px;
    margin-bottom: 80px;
}
/* LEFT STRIP ONLY */
.left-strip .socials {
    flex-direction: column !important;
    gap: 18px;
}
.socials i {
    color: #9ca3af;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.socials i:hover {
    color: #ff7a00;
}

/* PHONE */
.call-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ff7a00;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
/* ===== MAIL BUTTON ===== */
.mail-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ff7a00;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

.scroll-top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ff7a00;
    border: none;
    color: #ffffff;
    cursor: pointer;
    margin-bottom: 10px;

    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
}

/* SHOW WHEN ACTIVE */
.scroll-top.show {
    opacity: 1;
    transform: translateY(0);
}
/* ================= OVERLAY ================= */
/* OVERLAY */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* PANEL */
.menu-panel {
    width: 75%;
    height: 100%;
    background: #0a0a0a;

    transform: translateX(-100%);
    transition: 0.4s ease;
}

.menu-overlay.active .menu-panel {
    transform: translateX(0);
}

/* CLOSE */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
}

/* TOP */
.menu-top {
    text-align: center;
    padding: 40px 0;
    min-height: 140px;
}

.menu-top img {
    width: 180px;
}

.menu-top p {
    color: #9ca3af;
    margin-top: 10px;
    height: 20px;
}

/* CONTENT */
.menu-content {
    display: flex;
    align-items: flex-start;
    padding: 40px 100px;
}

/* LEFT */
.menu-left {
    width: 50%;
}

.menu-left h2 {
    border-bottom: 2px solid #ff7a00;
    padding-bottom: 6px;
    margin-bottom: 20px;
}

/* REMOVE DOTS */
.menu-links,
.sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-links li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* LINKS */
.menu-links a {
    display: block;
    padding: 12px 0;
    color: #9ca3af;
    text-decoration: none;
}

.menu-links a:hover {
    color: #ff7a00;
}

/* PARENT */
.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    cursor: pointer;
    color: #ffffff;
}

.has-sub.active > .menu-item {
    color: #ff7a00;
}

/* SUB MENU */
.sub-menu {
    display: none;
    padding-left: 15px;
}

.has-sub.active > .sub-menu {
    display: block;
}

/* DASH */
.sub-menu li a {
    position: relative;
    padding-left: 18px;
}

.sub-menu li a::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #ff7a00;
}

/* RIGHT */
.menu-right {
    width: 50%;
    padding-left: 60px;

    display: flex;
    flex-direction: column;
    align-items: center;   /* 🔥 everything centered */
}

/* HEADINGS */
.menu-right h2 {
    width: 100%;
    border-bottom: 2px solid #ff7a00;
    padding-bottom: 6px;
    margin-bottom: 20px;
}

/* ================= CONTACT ================= */
.contact {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.contact p {
    margin: 10px 0;
    color: #9ca3af;
}

/* dotted separator */
.contact p:not(:last-child)::after {
    content: "";
    display: block;
    width: 60%;
    margin: 8px auto 0;
    border-bottom: 1px dotted rgba(255,255,255,0.3);
}

/* ================= SOCIAL ================= */
.socials {
    display: flex;
    flex-direction: row ;   /* 🔥 force row */
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0 30px;
    width: 100%;
}
.menu-right .socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.socials i {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111;
    border-radius: 6px;
    font-size: 20px;

    transition: 0.3s;
}

.socials i:hover {
    background: #ff7a00;
}

/* ================= LOCATIONS ================= */
.locations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 100%;
}

/* EACH BLOCK */
.locations div {
    display: flex;
    flex-direction: column;   /* 🔥 image top, text bottom */
    align-items: center;
    justify-content: center;
}

/* IMAGE */
.locations img {
    width: 80px;
    height: 120px;
    margin-bottom: 8px;
}

/* TEXT BELOW IMAGE */
.locations span {
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
}
.footer {
    position: relative;
    overflow: hidden;
}

/* BG IMAGE */
.footer-bg {
    position: absolute;
    inset: 0;
    background: url("/images/1.jpg") center/cover no-repeat;
    filter: brightness(0.25);
    z-index: 0;
    pointer-events: none;
}

/* SAME STRUCTURE AS OVERLAY */
.footer-content {
    position: relative;
    z-index: 2;
    align-self: center;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding: 80px 120px;
}

/* CENTER */
.footer-center {
    width: 30%;
    text-align: center;
}

.footer-center img {
    width: 180px;
}

.footer-center p {
    margin-top: 10px;
    color: #9ca3af;
    height: 20px;
}

/* BOTTOM */
.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px 0;
}

.footer-bottom .line {
    width: 80%;
    height: 1px;
    background: var(--bg-surface);
    margin: 0 auto 15px;
}
.menu-links li.active > a {
    color: #ff7a00;
    font-weight: 500;
}
.nav-menu-btn {
    display: none;
    cursor: pointer;
}

.nav-menu-btn .menu-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* SAME LINES */
.nav-menu-btn .menu-icon span {
    width: 26px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.4s;
}

/* SAME HOVER EFFECT */
.nav-menu-btn:hover span:nth-child(1) {
    transform: translateX(-6px);
}
.nav-menu-btn:hover span:nth-child(2) {
    transform: translateX(6px);
}
.nav-menu-btn:hover span:nth-child(3) {
    transform: translateX(-6px);
}

/* DOT EFFECT */
.nav-menu-btn .menu-icon::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff7a00;
    border-radius: 50%;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.3s;
}

.nav-menu-btn:hover .menu-icon::after {
    opacity: 1;
}
/* DEFAULT: HIDE FLOATING */
.mobile-float {
    display: none;
}
.scroll-top,
.mail-btn,
.call-btn {
    z-index: 99999;
}
@media (max-width: 1024px) {

    /* ===== NAVBAR ===== */
    .navbar {
        padding: 14px 35px;
    }

    .logo-block img {
        width: 120px;
    }

    .tagline {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .btn-primary {
        font-size: 13px;
        padding: 8px 18px;
    }

    /* ===== STRIPS (SLIGHTLY THINNER) ===== */
    .left-strip,
    .right-strip {
        width: 60px;
    }

    /* ADJUST CONTENT OFFSET */
    .main-content {
        margin-left: 60px;
        margin-right: 60px;
    }

    /* ===== MENU OVERLAY ===== */
    .menu-panel {
        width: 80%;
    }

    .menu-content {
        padding: 30px 70px;
        gap: 20px;
    }

    .menu-links a,
    .menu-item {
        font-size: 14px;
        padding: 10px 0;
    }

    .menu-right {
        padding-left: 40px;
    }

    /* CONTACT TEXT */
    .contact p {
        font-size: 13px;
    }

    /* SOCIAL ICON SIZE */
    .socials i {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    /* LOCATIONS */
    .locations {
        gap: 35px;
    }

    .locations img {
        width: 70px;
        height: 100px;
    }

    .locations span {
        font-size: 12px;
    }

    /* ===== FOOTER ===== */
    .footer-content {
        padding: 60px 80px;
    }

    .footer-center img {
        width: 150px;
    }

    .footer-center p {
        font-size: 12px;
    }

}
@media (max-width: 768px) {

    /* ================= NAVBAR ================= */
    .btn-primary {
        display: none;
    }

    .nav-menu-btn {
        display: flex;
    }
    .nav-container {
        justify-content: space-between;
    }
    .navbar {
        padding: 14px 20px;
    }

    /* ================= REMOVE STRIPS ================= */
    .left-strip,
    .right-strip {
        display: none;
    }

    /* ================= REMOVE SIDE OFFSET ================= */
    .main-content {
        margin: 0;
    }
    /* SHOW FLOAT BUTTONS */
.mobile-float {
    display: flex !important;
    box-shadow: 0 4px 12px var(--bg-main)00066;
}
/* RESET + FORCE VISIBILITY */
.call-btn,
.mail-btn,
.scroll-top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ff7a00;

    display: flex;              /* 🔥 THIS FIXES ALIGNMENT */
    align-items: center;        /* vertical center */
    justify-content: center;    /* horizontal center */

    color: #ffffff;
    border: none;
    cursor: pointer;
    overflow: hidden;           /* 🔥 prevents icon overflow */
}
.call-btn i,
.mail-btn i,
.scroll-top i {
    font-size: 16px;
    line-height: 1;
}

/* ONLY TARGET MOBILE FLOAT BUTTONS */
.call-btn.mobile-float,
.mail-btn.mobile-float,
.scroll-top.mobile-float {
    position: fixed !important;
    width: 45px;
    height: 45px;
    z-index: 9999;
}

/* LEFT ONLY PHONE */
.call-btn.mobile-float {
    left: 15px;
    right: auto;
    bottom: 25px;
}

/* RIGHT MAIL */
.mail-btn.mobile-float {
    right: 15px;
    left: auto;
    bottom: 25px;
}

/* SCROLL ABOVE MAIL */
.scroll-top.mobile-float {
    right: 15px;
    left: auto;
    bottom: 85px;

    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
}
.scroll-top.mobile-float.show {
    opacity: 1;
    transform: translateY(0);
}
/* KILL STRIP EFFECT COMPLETELY */
.left-strip *,
.right-strip * {
    position: static !important;
}

    /* ================= OVERLAY ================= */

    .menu-panel {
        width: 100%;
    }

    .menu-content {
        flex-direction: column;
        padding: 25px 20px;
        gap: 40px;
    }

    .menu-left,
    .menu-right {
        width: 100%;
        padding: 0;
    }

    .menu-right {
        align-items: center;
        text-align: center;
    }

    /* STACK LOCATIONS */
    .locations {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

    /* ================= FOOTER ================= */

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 40px;
        padding: 40px 20px;
    }

    /* ORDER CONTROL */
    .footer-center {
        order: 1;
    }

    .footer .menu-left {
        order: 2;
    }

    .footer .menu-right {
        order: 3;
    }

    /* FULL WIDTH BLOCKS */
    .footer-center,
    .footer .menu-left,
    .footer .menu-right {
        width: 100%;
    }

}
@media (max-width: 480px) {

    /* ================= NAVBAR ================= */
    .navbar {
        padding: 12px 15px;
    }

    .logo-block img {
        width: 100px;
    }

    .tagline {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    /* ================= MENU BUTTON ================= */
    .nav-menu-btn .menu-icon span {
        width: 22px;
        height: 2px;
    }

    /* ================= FLOAT BUTTONS ================= */
    .call-btn.mobile-float,
    .mail-btn.mobile-float,
    .scroll-top.mobile-float {
        width: 40px;
        height: 40px;
    }

    .scroll-top.mobile-float {
        bottom: 70px;
    }

    .call-btn.mobile-float,
    .mail-btn.mobile-float {
        bottom: 20px;
    }

    /* ================= OVERLAY ================= */

    .menu-top img {
        width: 140px;
    }

    .menu-top p {
        font-size: 12px;
    }

    .menu-content {
        padding: 20px 15px;
        gap: 25px;
    }

    /* LEFT MENU */
    .menu-links a,
    .menu-item {
        font-size: 13px;
        padding: 10px 0;
    }

    /* RIGHT SECTION */
    .menu-right h2 {
        font-size: 14px;
    }

    .contact p {
        font-size: 12px;
    }

    /* SOCIAL */
    .socials i {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    /* LOCATIONS */
    .locations {
        gap: 15px;
    }

    .locations img {
        width: 55px;
        height: 80px;
    }

    .locations span {
        font-size: 11px;
    }

    /* ================= FOOTER ================= */

    .footer-content {
        padding: 30px 15px;
        gap: 25px;
    }

    .footer-center img {
        width: 120px;
    }

    .footer-center p {
        font-size: 11px;
    }

    /* FOOTER LINKS */
    .footer .menu-links a,
    .footer .menu-item {
        font-size: 12px;
    }

}
/* MODAL BACKDROP */
/* =========================================
   PREMIUM CONTACT MODAL
========================================= */

/* BACKDROP */
.modal {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.78);

    backdrop-filter: blur(10px);

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 30px;

    z-index: 99999;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

/* ACTIVE */
.modal.active {

    opacity: 1;

    visibility: visible;
}

/* BOX */
.modal-content {

    position: relative;

    width: 100%;

    max-width: 880px;

    background:
        linear-gradient(
            180deg,
            #111111,
            #0b0b0b
        );

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 28px;

    padding: 50px;

    overflow-y: auto;

    max-height: 92vh;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.55);

    transform: translateY(30px) scale(0.96);

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

/* ENTRY */
.modal.active .modal-content {

    transform: translateY(0) scale(1);
}

/* CLOSE */
.modal-close {

    position: absolute;

    top: 18px;

    right: 22px;

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: rgba(255,255,255,0.05);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    color: #ffffff;

    cursor: pointer;

    transition: 0.3s ease;
}

.modal-close:hover {

    background: #ff6a00;

    transform: rotate(90deg);
}

/* TITLE */
.modal-content h2 {

    font-size: 42px;

    font-weight: 800;

    margin-bottom: 40px;

    line-height: 1.1;
}

/* FORM */
#contactForm {

    border: none;

    padding: 0;

    max-width: 100%;
}

/* ROW */
.form-row {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    margin-bottom: 24px;
}

/* GROUP */
.form-group {

    width: 100%;
}

/* INPUTS */
.form-group input,
.form-group textarea {

    width: 100%;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 16px;

    padding: 18px 20px;

    color: #ffffff;

    font-size: 14px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

/* TEXTAREA */
.form-group textarea {

    min-height: 160px;

    resize: vertical;

    margin-top: 0;
}

/* PLACEHOLDER */
.form-group input::placeholder,
.form-group textarea::placeholder {

    color: rgba(255,255,255,0.45);
}

/* FOCUS */
.form-group input:focus,
.form-group textarea:focus {

    outline: none;

    border-color: #ff6a00;

    background: rgba(255,255,255,0.05);

    transform: translateY(-2px);
}

/* SERVICES */
.services {

    margin: 35px 0;
}

.services > label {

    display: block;

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 18px;
}

/* CHECKBOX GRID */
.checkbox-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}

/* CHECKBOX ITEM */
.checkbox-grid label {

    display: flex;

    align-items: center;

    gap: 10px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 14px;

    padding: 16px 18px;

    cursor: pointer;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

/* HOVER */
.checkbox-grid label:hover {

    border-color: rgba(255,106,0,0.45);

    background: rgba(255,255,255,0.05);

    transform: translateY(-2px);
}

/* CHECKBOX */
.checkbox-grid input {

    accent-color: #ff6a00;
}

/* BUTTON */
.btn-submit {

    width: 100%;

    height: 60px;

    border: none;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #ff6a00,
        #ff8533
    );

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    margin-top: 12px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* HOVER */
.btn-submit:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(255,106,0,0.28);
}

/* STATUS */
.form-status {

    margin-top: 18px;

    text-align: center;

    font-size: 14px;
}

/* ================= 768 ================= */

@media (max-width: 768px) {

    .modal {

        padding: 18px;
    }

    .modal-content {

        padding: 35px 24px;

        border-radius: 22px;
    }

    .modal-content h2 {

        font-size: 32px;

        margin-bottom: 30px;
    }

    .form-row {

        grid-template-columns: 1fr;

        gap: 16px;
    }

    .checkbox-grid {

        grid-template-columns: 1fr;
    }

    .btn-submit {

        height: 54px;
    }
}

/* ================= 480 ================= */

@media (max-width: 480px) {

    .modal-content {

        padding: 30px 18px;
    }

    .modal-content h2 {

        font-size: 26px;
    }

    .form-group input,
    .form-group textarea {

        padding: 16px;
    }

    .checkbox-grid label {

        padding: 14px;
    }
}
/* =========================================
   PREMIUM FADE REVEAL
========================================= */

.reveal {
    opacity: 0;

    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: opacity;
}

/* ACTIVE */
.reveal.reveal-active {
    opacity: 1;
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal.reveal-active {
        opacity: 1 !important;
        transition: none !important;
    }

}
/* =========================================
   GLOBAL CINEMATIC BACKGROUND SYSTEM
========================================= */

.bg-cinematic {

    position: relative;

    overflow: hidden;

    isolation: isolate;

    background-color: #0b0b0b;
}

/* IMAGE LAYER */
.bg-cinematic::before {

    content: "";

    position: absolute;

    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 1;

    filter: blur(2px);

    transform: scale(1.04);

    z-index: -2;

    transition: transform 0.8s ease;
}

/* DARK CINEMATIC OVERLAY */
.bg-cinematic::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.82),
            rgba(0,0,0,0.90)
        );

    z-index: -1;
}

/* HOVER DEPTH */
.bg-cinematic:hover::before {

    transform: scale(1.08);
}

/* =========================================
   IMAGE VARIANTS
========================================= */

.bg-1::before {
    background-image: url("../images/1.jpg");
}

.bg-2::before {
    background-image: url("../images/2.jpg");
}

.bg-3::before {
    background-image: url("../images/3.jpg");
}

.bg-4::before {
    background-image: url("/images/4.jpg");
}


/* BLOG DETAIL BACKGROUND FIX */
.blog-detail.bg-cinematic::before {

    background-size: cover;

    background-position: center center;

    background-attachment: fixed;

    opacity: 1;

    filter: blur(2px);

    transform: scale(1.02);
}
/* BLOG PAGE ONLY */
.blog-section.bg-cinematic::before {

    background-size: cover;

    background-position: center top;

    opacity: 1;

    filter: blur(2px);

    height: 550px;

    bottom: auto;
}

/* DARK FADE */
.blog-section.bg-cinematic::after {

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.72) 0%,
            rgba(0,0,0,0.88) 45%,
            rgba(0,0,0,1) 100%
        );
}
/* CASE DETAIL ONLY */
.case-detail.bg-cinematic::before {

    background-size: cover;

    background-position: center top;

    background-attachment: fixed;

    opacity:1;

    filter: blur(2px);

    transform: scale(1.02);
}

/* DARKER FOR READABILITY */
.case-detail.bg-cinematic::after {

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.82),
            rgba(0,0,0,0.92)
        );
}
/* =========================================
   CASE STUDIES HERO BACKGROUND
========================================= */

.case-studies-section.bg-cinematic::before {

    background-size: cover;

    background-position: center center;

    opacity: 1;

    filter: blur(2px);

    height: 520px;

    bottom: auto;
}

/* DARK FADE */
.case-studies-section.bg-cinematic::after {

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.68) 0%,
            rgba(0,0,0,0.86) 45%,
            rgba(0,0,0,1) 100%
        );
}
/* =========================================
   SHOWREEL HERO BACKGROUND
========================================= */

.showreel.bg-cinematic::before {

    background-size: cover;

    background-position: center center;

    opacity: 1;

    filter: blur(1px);

    transform: scale(1.04);
}

/* DARK CINEMATIC OVERLAY */
.showreel.bg-cinematic::after {

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.62),
            rgba(0,0,0,0.88)
        );
}
/* =========================================
   GEO METHOD BACKGROUND
========================================= */

.geo-method-section.bg-cinematic::before {

    background-size: cover;

    background-position: center center;

    opacity: 1;

    filter: blur(2px);

    transform: scale(1.03);
}

.geo-method-section.bg-cinematic::after {

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.84),
            rgba(0,0,0,0.92)
        );
}
/* =========================================
   INFLUENCER DELIVERABLES BG
========================================= */

.deliverables-inf.bg-cinematic {

    position: relative;

    overflow: hidden;

    isolation: isolate;
}

.deliverables-inf.bg-cinematic::before {

    opacity:1;

    filter: blur(2px);

    background-size: cover;

    background-position: center center;

    transform: scale(1.03);
}

.deliverables-inf.bg-cinematic::after {

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.84),
            rgba(0,0,0,0.92)
        );
}
/* =========================================
   MEDIA DELIVERABLES BACKGROUND
========================================= */

.deliverables2.bg-cinematic {

    position: relative;

    overflow: hidden;

    isolation: isolate;
}

.deliverables2.bg-cinematic::before {

    background-size: cover;

    background-position: center center;

    opacity: 1;

    filter: blur(2px);

    transform: scale(1.03);
}

.deliverables2.bg-cinematic::after {

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.84),
            rgba(0,0,0,0.92)
        );
}
/* =========================================
   PPC METHOD BACKGROUND
========================================= */

.method-simple.bg-cinematic {

    position: relative;

    overflow: hidden;

    isolation: isolate;
}

.method-simple.bg-cinematic::before {

    background-size: cover;

    background-position: center center;

    opacity: 1;

    filter: blur(2px);

    transform: scale(1.03);
}

.method-simple.bg-cinematic::after {

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.84),
            rgba(0,0,0,0.92)
        );
}
/* =========================================
   SEO METHOD BACKGROUND
========================================= */

.method2.bg-cinematic {

    position: relative;

    overflow: hidden;

    isolation: isolate;
}

.method2.bg-cinematic::before {

    background-size: cover;

    background-position: center center;

    opacity: 1;

    filter: blur(2px);

    transform: scale(1.03);
}

.method2.bg-cinematic::after {

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.84),
            rgba(0,0,0,0.92)
        );
}
/* =========================================
   SEO FAQ CTA CINEMATIC
========================================= */
.faq2-cta.bg-cinematic {


    background-size: cover;

    background-position: center;

    position: relative;
}

/* DARK OVERLAY */
.faq2-cta.bg-cinematic::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.70),
            rgba(0,0,0,0.88)
        );

    z-index: -1;
}

/* TITLE */
.faq2-cta h3 {

    position: relative;

    z-index: 2;
}

/* BUTTON */
.faq2-btn {

    position: relative;

    z-index: 2;
}
/* =========================================
   SOCIAL APPROACH BACKGROUND
========================================= */

.approach-clone.bg-cinematic {

    position: relative;

    overflow: hidden;

    isolation: isolate;

    background: #0b0b0b;
}

.approach-clone.bg-cinematic::before {

    content: "";

    position: absolute;

    inset: 0;


    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    opacity: 1;

    filter: blur(2px);

    transform: scale(1.03);

    z-index: -2;
}

.approach-clone.bg-cinematic::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.84),
            rgba(0,0,0,0.92)
        );

    z-index: -1;
}
/* =========================================
   WEB APPROACH BACKGROUND
========================================= */

.webapproach.bg-cinematic {

    position: relative;

    overflow: hidden;

    isolation: isolate;

    background: #0b0b0b;
}

.webapproach.bg-cinematic::before {

    content: "";

    position: absolute;

    inset: 0;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    opacity: 1;

    filter: blur(2px);

    transform: scale(1.03);

    z-index: -2;
}

.webapproach.bg-cinematic::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.84),
            rgba(0,0,0,0.92)
        );

    z-index: -1;
}
/* FAQ CTA */
.faq-cta.bg-cinematic {

    position: relative;

    overflow: hidden;

    isolation: isolate;

    border-radius: 28px;

    padding: 70px 40px;

    background-size: cover;

    background-position: center;
}

.faq-cta.bg-cinematic::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.72),
            rgba(0,0,0,0.88)
        );

    z-index: 0;
}

.faq-cta.bg-cinematic * {

    position: relative;

    z-index: 2;
}