/* ============================================================
   AUSAF STEEL FAB — OLD MONEY AESTHETIC
   Palette: Deep charcoal · Aged brass · Warm ivory · Stone
   Fonts: Cormorant Garamond (display) · Jost (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* ── CSS Variables ── */
:root {
    --bg: #0e0d0b;
    --bg-2: #131210;
    --surface: #1a1814;
    --surface-2: #221f1a;
    --brass: #b8923a;
    --brass-lt: #d4a84b;
    --brass-dk: #8a6a22;
    --ivory: #f0ead8;
    --ivory-dim: #c8bfa8;
    --stone: #7a7060;
    --border: rgba(184, 146, 58, 0.2);
    --border-lt: rgba(184, 146, 58, 0.08);
    --red: #9a1f1f;
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--bg);
    color: var(--ivory);
    font-weight: 300;
    letter-spacing: 0.02em;
    overflow-x: hidden;
}

/* ── Grain texture overlay ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 60px;
    z-index: 1000;
    transition: all 0.5s ease;
    background: transparent;
}

#navbar.scrolled {
    width: 88%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 16px;
    border-radius: 4px;
    background: rgba(14, 13, 11, 0.92);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.6), 0 0 0 0.5px rgba(184, 146, 58, 0.1) inset;
}

#navbar.scrolled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    width: 84%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 146, 58, 0.35), transparent);
}

.nav-inner {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h2{
    font-family: "Anton", sans-serif;
    letter-spacing: 16px;
    font-size: 30px;
    margin-left: 5%;
}


.logo a {
    text-decoration: none;
    color: var(--brass);
}

/* Nav links */
nav a {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-left: 40px;
    color: var(--ivory-dim);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brass);
    transition: width 0.35s ease;
}

nav a:hover {
    color: var(--brass-lt);
}

nav a:hover::after {
    width: 100%;
}

/* ============================================================
   CONTACT POPUP
   ============================================================ */
.nav-contact-trigger {
    position: relative;
}

.contact-popup {
    position: absolute;
    top: calc(100% + 22px);
    right: -10px;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.97);
    transition: opacity 0.22s ease, transform 0.22s ease;
    transform-origin: top right;
}

.contact-popup.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

.cp-section {
    background: rgba(20, 18, 14, 0.96);
    backdrop-filter: blur(32px);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7), 0 0 0 0.5px rgba(184, 146, 58, 0.06) inset;
}

.cp-row {
    margin: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px 12px 0;
    text-decoration: none;
    color: var(--ivory);
    transition: background 0.15s;
}

.cp-icon {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: var(--brass-dk);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    color: var(--ivory);
}

.cp-icon.whatsapp {
    background: #25d366;
}

.cp-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2px;
}

.cp-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
}

.cp-value {
    font-size: 13px;
    color: var(--ivory);
    font-weight: 400;
}

.cp-arrow {
    font-size: 10px;
    color: var(--stone);
}

.cp-divider {
    height: 1px;
    background: var(--border-lt);
    margin: 0 14px;
}

.cp-socials {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-around;
    padding: 6px 8px;
}

.cp-social-btn {
    margin: 0;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--ivory);
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0.85;
}

.cp-social-btn:hover {
    transform: scale(1.12);
    opacity: 1;
}

.cp-social-btn.instagram {
    background: radial-gradient(circle at 30% 110%, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
}

.cp-social-btn.linkedin {
    background: #0077b5;
}

.cp-social-btn.facebook {
    background: #1877f2;
}

.cp-social-btn.twitter {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-popup::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 40px;
    width: 9px;
    height: 9px;
    background: rgba(20, 18, 14, 0.96);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: rotate(45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(8, 7, 5, 0.82) 60%, rgba(8, 7, 5, 1) 100%),
        url("img/bg.jpg") center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 80%, rgba(184, 146, 58, 0.06), transparent);
}

.hero-box {
    text-align: center;
    max-width: 800px;
    padding: 60px 40px;
    z-index: 2;
    position: relative;
}

/* Decorative rule above title */
.hero-box::before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--brass);
    margin: 0 auto 36px;
    opacity: 0.7;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 72px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--ivory);
    line-height: 1.1;
}

.hero-tag {
    margin-top: 22px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--brass);
}

.hero-buttons {
    margin-top: 48px;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 13px 32px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s ease;
    border-radius: 2px;
}

.hero-btn.primary {
    background: var(--brass-dk);
    color: var(--ivory);
    border: 1px solid var(--brass);
}

.hero-btn.primary:hover {
    background: var(--brass);
    color: #0e0d0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(184, 146, 58, 0.25);
}

.hero-btn.secondary {
    border: 1px solid rgba(240, 234, 216, 0.25);
    color: var(--ivory-dim);
    background: transparent;
}

.hero-btn.secondary:hover {
    border-color: var(--brass);
    color: var(--brass-lt);
    transform: translateY(-2px);
}

/* Scroll indicator */
.hero::after {
    content: '';
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--brass), transparent);
    animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 120px 10%;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 38px;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
    color: var(--ivory);
    margin-bottom: 16px;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--brass);
    margin: 18px auto 64px;
}

/* ============================================================
   GLASS PANEL → now a refined surface card
   ============================================================ */
.glass-panel {
    background: var(--surface);
    border: 1px solid var(--border-lt);
    border-radius: 2px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brass), transparent);
    opacity: 0.3;
}

.glass-panel:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 146, 58, 0.3);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(184, 146, 58, 0.08) inset;
}

.glass-panel i {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--brass);
}

.glass-panel h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--ivory);
    margin-bottom: 12px;
}

.glass-panel p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--stone);
}

/* Glass card (contact section) */
.glass-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 52px;
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brass), transparent);
    opacity: 0.4;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-quote {
    position: fixed;
    right: 28px;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 2px;
    background: var(--brass-dk);
    border: 1px solid var(--brass);
    color: var(--ivory);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    z-index: 1000;
}

.floating-quote:hover {
    background: var(--brass);
    color: var(--bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 146, 58, 0.3);
}

.floating-LocateUs {
    position: fixed;
    right: 28px;
    bottom: 88px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 2px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--ivory-dim);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    z-index: 1000;
}

.floating-LocateUs:hover {
    border-color: var(--brass);
    color: var(--brass-lt);
    transform: translateY(-3px);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-grid h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 36px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 10px;
}

.about-grid h2::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--brass);
    margin-top: 16px;
}

.about-grid p {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: var(--ivory-dim);
    text-align: left;
}

.about-img {
    width: 100%;
    border-radius: 2px;
    transition: 0.5s ease;
    filter: sepia(10%) contrast(1.05);
    border: 1px solid var(--border-lt);
}

.about-img:hover {
    transform: scale(1.02);
    filter: sepia(0%) contrast(1.08);
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: 1px solid var(--border-lt);
    border-radius: 2px;
}

.clients-flex img {
    padding: 32px 40px;
    width: 12.5%;
    filter: grayscale(100%) brightness(0.6);
    transition: 0.4s;
    border-right: 1px solid var(--border-lt);
}

.clients-flex img:last-child {
    border-right: none;
}

.clients-flex img:hover {
    filter: grayscale(0%) brightness(1);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background: var(--border-lt);
    border: 1px solid var(--border-lt);
}

.services-grid .glass-panel {
    border: none;
    border-radius: 0;
    background: var(--bg-2);
    text-align: left;
}

.services-grid .glass-panel::before {
    display: none;
}

.services-grid .glass-panel:hover {
    background: var(--surface);
    transform: none;
    box-shadow: none;
}

.services-grid .glass-panel i {
    font-size: 22px;
    margin-bottom: 24px;
    display: block;
    color: var(--brass);
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
    background: var(--border-lt);
    border: 1px solid var(--border-lt);
}

.projects-grid .project {
    border: none;
    border-radius: 0;
    padding: 0;
    background: var(--bg-2);
    overflow: hidden;
    cursor: pointer;
}

.projects-grid .project::before {
    display: none;
}

.projects-grid .project h3 {
    padding: 0 22px 22px;
    font-size: 16px;
}

.project img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 14px;
    cursor: pointer;
    transition: 0.5s ease;
    display: block;
    filter: sepia(8%) contrast(1.05);
}

.project:hover img {
    transform: scale(1.05);
    filter: sepia(0%) contrast(1.1);
}

.projects-grid .project:hover {
    background: var(--surface);
    transform: none;
    box-shadow: none;
}

.gallery {
    text-align: center;
    margin-top: 52px;
}

.gallery a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: -1;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 18px;
    background: var(--bg-2);
    border: 1px solid var(--border-lt);
    border-radius: 2px;
    color: var(--ivory);
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: border-color 0.3s;
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--stone);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brass);
}

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

/* Liquid button → refined submit */
.liquid-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 2px;
    border: 1px solid var(--brass);
    background: transparent;
    color: var(--brass-lt);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s ease;
    text-decoration: none;
    margin-top: 6px;
}

.liquid-btn:hover {
    background: var(--brass);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(184, 146, 58, 0.2);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    max-width: 580px;
    width: 90%;
    padding: 52px;
    border-radius: 2px;
    background: var(--surface);
    border: 1px solid var(--border);
    text-align: center;
    animation: popup 0.3s ease;
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brass), transparent);
    opacity: 0.5;
}

.modal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--ivory);
}

.modal-content h4 {
    margin: 20px 0 10px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brass);
    font-weight: 500;
}

.modal-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--ivory-dim);
}

.close-btn {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 24px;
    cursor: pointer;
    color: var(--stone);
    transition: color 0.2s;
}

.close-btn:hover {
    color: var(--brass);
}

@keyframes popup {
    from {
        transform: scale(0.92) translateY(12px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-edit {
    text-align: center;
    padding: 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border-lt);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--stone);
}

footer div{
    padding: 50px 40px;
    color: wheat;
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ivory-dim);
    transition: all 0.35s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 52px;
    }

    .hero-box {
        max-width: 90%;
        padding: 40px 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-grid h2::after {
        margin: 16px auto 0;
    }

    .about-grid p {
        text-align: center;
    }

    .clients-flex img {
        width: 25%;
    }

    .section {
        padding: 100px 6%;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
    #navbar {
        padding: 16px 20px;
    }

    #navbar.scrolled {
        width: 94%;
        margin-top: 10px;
    }

    .logo img {
        width: 52%;
    }

    .hamburger {
        display: flex;
    }

    #nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(10, 9, 7, 0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 44px;
        z-index: 1050;
    }

    #nav-menu.open {
        display: flex;
        animation: fadeInMenu 0.3s ease;
    }

    #nav-menu a {
        font-size: 18px;
        letter-spacing: 5px;
        margin: 0;
    }

    @keyframes fadeInMenu {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .hero h1 {
        font-size: 34px;
        letter-spacing: 3px;
    }

    .hero-tag {
        font-size: 10px;
        letter-spacing: 4px;
    }

    .hero-box {
        max-width: 95%;
        padding: 30px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .clients-flex img {
        width: 33%;
        padding: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        background: transparent;
        border: none;
        gap: 1px;
    }

    .section {
        padding: 90px 5%;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .floating-quote,
    .floating-LocateUs {
        padding: 10px 16px;
        font-size: 10px;
        right: 14px;
    }

    .floating-quote {
        bottom: 20px;
    }

    .floating-LocateUs {
        bottom: 74px;
    }

    .glass-card {
        padding: 32px 24px;
    }

    .contact-popup {
        position: static;
        width: 100%;
        opacity: 1;
        pointer-events: all;
        transform: none;
        display: none;
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
    }

    .contact-popup.show {
        display: flex;
    }

    .contact-popup::before {
        display: none;
    }

    #nav-menu {
        overflow-y: auto;
        padding: 100px 40px 300px 60px;
        justify-content: flex-start;
    }

    .nav-contact-trigger::after {
        content: ' ↓';
        font-size: 10px;
        opacity: 0.5;
    }

    .nav-contact-trigger.active::after {
        content: ' ↑';
    }

    .modal-content {
        padding: 36px 24px;
    }
}
