/* =====================================================
   GLOBAL SAFETY
   This hides any element that has the hidden attribute.
   Do not remove this because the drawer depends on it.
===================================================== */
[hidden] {
    display: none !important;
}

/* =====================================================
   RESET
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #10100f;
    color: #ffffff;
}

a {
    text-decoration: none;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =====================================================
   TOP BAR
   Edit phone, email, flag/social layout styling here.
===================================================== */
.topbar {
    background: #9b6128;
    color: white;
    font-size: 13px;
    overflow: hidden;
}

.topbar-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 8px 0;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 13px;
    white-space: nowrap;
}

.topbar-right a {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
}

.flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.flag img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

.topbar-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.topbar-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: topbarMove 22s linear infinite;
    font-weight: 700;
    color: #fff6ee;
}

@keyframes topbarMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* =====================================================
   HEADER / DESKTOP NAVIGATION
   Desktop menu stays normal here.
===================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.header-inner {
    min-height: 74px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #181815;
    flex-shrink: 0;
}

.logo-box {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand h1 {
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand p {
    margin-top: 3px;
    color: #9b6128;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a {
    color: #181815;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.nav a:hover {
    color: #9b6128;
}

.quote-btn {
    background: #9b6128;
    color: white;
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* =====================================================
   DRAWER DEFAULT STATE
   Mobile drawer is hidden by default.
===================================================== */
.drawer-menu-btn,
.mobile-drawer,
.drawer-overlay,
.mobile-menu,
.mobile-menu-btn,
.mobile-bottom-nav {
    display: none;
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 30%, rgba(155, 97, 40, 0.35), transparent 35%),
        linear-gradient(120deg, #10100f 0%, #161412 45%, #2a1b10 100%);
}

.hero-grid {
    min-height: 720px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    padding: 80px 0;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #d8a36f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 17px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-content h2 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero-content h2 span {
    color: #c07a38;
}

.hero-content p {
    margin-top: 25px;
    max-width: 620px;
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 900;
}

.btn-primary {
    background: #9b6128;
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-card {
    position: relative;
    padding: 20px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-image {
    min-height: 430px;
    border-radius: 26px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.72)),
        url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?q=80&w=1200&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    padding: 30px;
}

.image-caption {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 22px;
    backdrop-filter: blur(10px);
}

.image-caption h3 {
    color: #d8a36f;
    font-size: 38px;
    font-weight: 900;
}

.image-caption p {
    color: rgba(255, 255, 255, 0.8);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -18px;
    background: white;
    color: #181815;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

.floating-card h4 {
    font-size: 26px;
    font-weight: 900;
}

.floating-card p {
    color: rgba(0, 0, 0, 0.6);
}

/* =====================================================
   ABOUT SECTION
===================================================== */
.about {
    background: white;
    color: #181815;
    padding: 90px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.section-label {
    color: #9b6128;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 900;
}

.about h2,
.section-heading h2,
.why h2,
.contact-text h2 {
    margin-top: 14px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1px;
}

.about p {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
}

/* =====================================================
   SERVICES SECTION
===================================================== */
.services {
    background: #f7f3ee;
    color: #181815;
    padding: 90px 0;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(155, 97, 40, 0.25);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #9b6128;
    box-shadow: 0 20px 50px rgba(155, 97, 40, 0.18);
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 25px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 16px;
}

.service-card p {
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.7;
}

/* =====================================================
   WHY SECTION
===================================================== */
.why {
    background: #10100f;
    padding: 90px 0;
}

.gold {
    color: #d8a36f;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.why p {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.why-list div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 22px;
    font-weight: 900;
}

/* =====================================================
   CONTACT SECTION
===================================================== */
.contact {
    background: white;
    color: #181815;
    padding: 90px 0;
}

.contact-box {
    position: relative;
    overflow: hidden;
    background: #181815;
    color: white;
    border-radius: 36px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.contact-text p {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 18px;
}

.success-message {
    margin-top: 25px;
    background: rgba(33, 186, 69, 0.18);
    color: #b9ffc7;
    padding: 14px 18px;
    border-radius: 14px;
}

.contact-form {
    background: white;
    color: #181815;
    border-radius: 28px;
    padding: 28px;
    display: grid;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(155, 97, 40, 0.18);
    background: #f4f1ed;
    border-radius: 14px;
    padding: 15px 16px;
    outline: none;
    font-size: 15px;
    color: #181815;
    transition: all 0.3s ease;
}

.contact-form textarea {
    min-height: 120px;
    resize: none;
}

.contact-form button {
    border: none;
    background: #9b6128;
    color: white;
    border-radius: 14px;
    padding: 16px;
    font-weight: 900;
    cursor: pointer;
}

.contact-form small {
    color: #c0392b;
    font-size: 12px;
}

/* =====================================================
   CUSTOM SERVICE SELECT
===================================================== */
.custom-select {
    position: relative;
}

.custom-select-btn {
    width: 100%;
    border: 1px solid rgba(155, 97, 40, 0.18);
    background: #f4f1ed;
    color: #181815;
    border-radius: 14px;
    padding: 15px 16px;
    font-size: 15px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-select-options {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid rgba(155, 97, 40, 0.35);
    border-radius: 14px;
    overflow: hidden;
    z-index: 30;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.custom-select.active .custom-select-options {
    display: block;
}

.custom-select-options button {
    width: 100%;
    border: none;
    background: white;
    color: #181815;
    padding: 14px 16px;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
}

.custom-select-options button:hover {
    background: #9b6128;
    color: white;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
    background: #0b0f17;
    border-top: 1px solid rgba(155, 97, 40, 0.18);
    padding: 22px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-left,
.footer-right {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 400;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-right a {
    color: #c07a38;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-right a:hover {
    color: #ffffff;
}

.footer-divider {
    opacity: 0.4;
}

/* =====================================================
   DESKTOP SAFETY
   This ensures mobile drawer never appears on desktop.
===================================================== */
@media (min-width: 901px) {
    .drawer-menu-btn,
    .mobile-drawer,
    .drawer-overlay,
    .mobile-menu,
    .mobile-menu-btn,
    .mobile-bottom-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* =====================================================
   MOBILE RESPONSIVE LAYOUT
   Edit mobile spacing, hero sizes, cards, and sections here.
===================================================== */
@media (max-width: 900px) {
    body {
        background: #10100f;
        overflow-x: hidden;
    }

    .container {
        width: min(100% - 26px, 1180px);
    }

    .topbar {
        font-size: 11px;
    }

    .topbar-left span:nth-child(2),
    .nav,
    .quote-btn,
    .mobile-menu,
    .mobile-menu-btn,
    .mobile-bottom-nav {
        display: none !important;
    }

    .topbar-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 7px;
        padding: 7px 0;
    }

    .topbar-left,
    .topbar-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 9px;
    }

    .topbar-marquee {
        width: 100%;
    }

    .header {
        top: 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom-left-radius: 22px;
        border-bottom-right-radius: 22px;
    }

    .header-inner {
        min-height: 70px;
        gap: 10px;
    }

    .brand {
        min-width: 0;
        gap: 9px;
    }

    .brand h1 {
        font-size: 14px;
        line-height: 1.1;
        white-space: nowrap;
    }

    .brand p {
        font-size: 9px;
        white-space: nowrap;
    }

    .logo-box {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .hero {
        border-bottom-left-radius: 34px;
        border-bottom-right-radius: 34px;
    }

    .hero-grid,
    .about-grid,
    .why-grid,
    .contact-box {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
        padding: 45px 0 55px;
        gap: 28px;
    }

    .badge {
        font-size: 12px;
        padding: 9px 14px;
        margin-bottom: 18px;
    }

    .hero-content h2 {
        font-size: 38px;
        line-height: 1.05;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-top: 18px;
    }

    .hero-buttons {
        margin-top: 26px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }

    .hero-card {
        border-radius: 28px;
        padding: 14px;
    }

    .hero-image {
        min-height: 330px;
        border-radius: 22px;
        padding: 20px;
    }

    .image-caption {
        border-radius: 18px;
        padding: 18px;
    }

    .image-caption h3 {
        font-size: 32px;
    }

    .floating-card {
        position: static;
        margin-top: 14px;
        border-radius: 18px;
        padding: 18px;
    }

    .about,
    .services,
    .why,
    .contact {
        padding: 64px 0;
    }

    .about h2,
    .section-heading h2,
    .why h2,
    .contact-text h2 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .about p,
    .why p,
    .contact-text p {
        font-size: 16px;
        line-height: 1.7;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        border-radius: 24px;
        padding: 26px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .why-list div {
        border-radius: 18px;
        padding: 18px;
    }

    .contact-box {
        padding: 22px;
        border-radius: 28px;
        gap: 25px;
    }

    .contact-form {
        border-radius: 22px;
        padding: 20px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* =====================================================
   MOBILE DRAWER MENU
===================================================== */

@media (max-width: 900px) {

    .drawer-menu-btn:not([hidden]) {
        display: flex !important;
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 14px;
        background: #9b6128;
        color: #ffffff;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 900;
        cursor: pointer;
        flex-shrink: 0;
        box-shadow: 0 10px 22px rgba(155, 97, 40, 0.25);
    }

    .drawer-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.65);
        z-index: 99998;
    }

    .mobile-drawer {
        display: none;
        flex-direction: column;

        position: fixed;
        top: 0;
        right: 0;

        width: 85vw;
        max-width: 340px;
        height: 100vh;

        background: #ffffff;
        color: #181815;

        z-index: 99999;

        padding: 24px;

        overflow-y: auto;

        box-shadow: -20px 0 50px rgba(0,0,0,0.35);

        transform: translateX(110%);
        transition: transform 0.3s ease;
    }

    .drawer-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 14px;

        padding-bottom: 18px;
        margin-bottom: 22px;

        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .drawer-head h3 {
        font-size: 18px;
        line-height: 1.2;
        color: #181815;
    }

    .drawer-head p {
        font-size: 12px;
        color: #9b6128;
        margin-top: 4px;
    }

    .drawer-close {
        width: 38px;
        height: 38px;

        border: none;

        border-radius: 10px;

        background: #f4f1ed;

        color: #181815;

        font-size: 26px;

        cursor: pointer;
    }

    .drawer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .drawer-links a {
        display: block;

        width: 100%;

        background: #f7f3ee;
        color: #181815;

        padding: 16px 18px;

        border-radius: 14px;

        font-size: 15px;
        font-weight: 800;

        text-decoration: none;

        transition: all 0.2s ease;
    }

    .drawer-links a:hover {
        background: #9b6128;
        color: #ffffff;
    }

    .drawer-quote-btn {
        margin-top: 24px;

        display: block;

        width: 100%;

        background: #9b6128;
        color: #ffffff;

        text-align: center;

        padding: 16px;

        border-radius: 16px;

        font-size: 15px;
        font-weight: 900;
    }

    body.drawer-open {
        overflow: hidden;
    }
}

/* VERY SMALL PHONES */

@media (max-width: 520px) {

    .drawer-menu-btn:not([hidden]) {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .mobile-drawer {
        width: 88vw;
        padding: 22px;
    }
}
    


/* =====================================================
   VERY SMALL PHONES
   Edit extra-small phone sizes here.
===================================================== */
@media (max-width: 520px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .brand h1 {
        font-size: 12.5px;
    }

    .brand p {
        font-size: 8px;
    }

    .logo-box {
        width: 43px;
        height: 43px;
    }

    .drawer-menu-btn:not([hidden]) {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .hero-content h2 {
        font-size: 34px;
    }

    .hero-image {
        min-height: 300px;
    }

    .contact-box,
    .service-card,
    .contact-form {
        padding: 20px;
    }
}

