/* ========================================
   PRELOADER
======================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 180px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite ease-in-out;
}

.preloader-bar-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.preloader-bar {
    width: 0;
    height: 100%;
    background: #D4AF37;
    animation: loadingBar 2.5s infinite ease-in-out;
}

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

@keyframes loadingBar {
    0% { width: 0; transform: translateX(-100%); }
    50% { width: 100%; transform: translateX(0); }
    100% { width: 0; transform: translateX(100%); }
}

:root {
    --color-gold: #D4AF37;
    --color-gold-light: #F0D060;
    --color-gold-dark: #a88a20;
    --color-bg: #111111;
    --color-bg-alt: #1A1A1A;
    --color-light: #f5f5f0;
    --color-light-alt: #ffffff;
    --color-text-dark: #111111;
    --color-text: #F5F5F5;
    --color-text-muted: #888888;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-dark: #e0e0e0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
    padding: 0;
}

/* ========================
   TYPOGRAPHY
======================== */
.text-gold {
    color: var(--color-gold);
}

.text-white {
    color: #fff;
}

.text-dark {
    color: var(--color-text-dark);
}

.text-muted {
    color: var(--color-text-muted);
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.section-title {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-title.large {
    font-size: 3rem;
}

/* ========================
   LAYOUT
======================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;
}

section {
    position: relative;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ========================
   NAVBAR
======================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    transition: transform 0.4s ease, background 0.4s ease, border 0.4s ease;
}

/* State: Scrolled past hero (Sticky) */
.navbar.past-hero {
    position: fixed;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* State: Hidden (on scroll down) */
.navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-left {
    padding: 2rem 3rem;
}

.nav-logo img {
    height: 80px;
    width: auto;

}

.nav-right {
    display: flex;
    align-items: stretch;
    height: 90px;
}

.nav-boxes {
    display: flex;
}

.nav-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    min-width: 140px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.nav-box:hover {
    background: rgba(255, 255, 255, 1);
}

.nav-box.primary {
    background: var(--color-gold);
}

.nav-box.primary:hover {
    background: var(--color-gold-light);
}

.nav-box .box-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
    font-weight: 500;
    margin-bottom: 3px;
}

.nav-box.primary .box-label {
    color: rgba(0, 0, 0, 0.6);
}

.nav-box .box-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
}

.nav-box.primary .box-title {
    color: #111;
}

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 2.5rem;
    transition: var(--transition);
    height: 100%;
}

.menu-toggle:hover {
    color: var(--color-gold);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: rgba(7, 7, 7, 0.97);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu ul {
    text-align: center;
}

.fullscreen-menu li {
    margin: 1.2rem 0;
}

.fullscreen-menu a {
    font-size: 2.8rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #555;
    transition: var(--transition);
}

.fullscreen-menu a:hover,
.fullscreen-menu a.active {
    color: var(--color-gold);
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 3rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* ========================
   HERO
======================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-bg-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1; /* Behind everything */
    filter: brightness(0.55);
}

/* Interactive grid overlay — squares generated by JS */
.hero-grid {
    position: absolute;
    inset: 0;
    display: grid;
    /* Column/row sizes controlled by --gs custom property set in JS */
    z-index: 1;
    pointer-events: none; /* grid container ignores mouse; cells opt-in */
}
.grid-sq {
    pointer-events: all;
    perspective: 600px;
    cursor: default;
}
.grid-sq-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.grid-sq:hover .grid-sq-inner {
    transform: rotateY(180deg);
}
/* Front face — transparent with subtle border */
.grid-sq-front,
.grid-sq-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.grid-sq-front {
    border: 1px solid rgba(255,255,255,0.07);
    background: transparent;
}
/* Back face — gold reveal */
.grid-sq-back {
    background: var(--color-gold);
    transform: rotateY(180deg);
    opacity: 0.88;
}

/* Top highlight bar */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gold);
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 5rem 7rem;
}

.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero h1 {
    font-family: var(--font-body);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    color: #fff;
    margin-bottom: 1rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--color-gold);
}

.hero-tagline {
    font-size: 1rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 300;
}

/* Scroll indicator - centered vertical */
.scroll-indicator {
    position: absolute;
    right: 5rem;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 5;
    padding-bottom: 3rem;
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--color-gold);
}

/* Template floating nav boxes overlapping into hero */
.hero-floating-boxes {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-float-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1.5rem 2rem;
    min-width: 180px;
    text-align: center;
    border-left: 3px solid var(--color-gold);
}

.hero-float-box .fb-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.hero-float-box .fb-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-float-box.accent {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.hero-float-box.accent .fb-label {
    color: rgba(0, 0, 0, 0.55);
}

.hero-float-box.accent .fb-title {
    color: #000;
}

/* ========================
   SERVICE SECTION (Light)
======================== */
.services-section {
    background: var(--color-light-alt);
    padding: 0;
}

.services-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.services-left {
    padding: 6rem 5rem 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.services-right {
    position: relative;
    overflow: hidden;
}

.services-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gold accent bar on right side of image block */
.services-right::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 60%;
    background: var(--color-gold);
}

/* Numbered service blocks */
.service-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border-dark);
    align-items: flex-start;
    cursor: pointer;
    transition: var(--transition);
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-item:hover .service-num {
    color: var(--color-gold);
}

.service-num {
    font-size: 2rem;
    font-weight: 800;
    color: #ddd;
    line-height: 1;
    min-width: 60px;
    transition: var(--transition);
}

.service-body h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.service-body p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Circle nav buttons - positioned between text and image */
.split-nav {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 10;
}

.circle-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.circle-btn.gold {
    background: var(--color-gold);
    color: #000;
}

.circle-btn.gold:hover {
    background: var(--color-gold-dark);
    transform: scale(1.1);
}

.circle-btn.outline {
    background: #fff;
    color: var(--color-text-dark);
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.circle-btn.outline:hover {
    background: var(--color-gold);
    color: #000;
    border-color: var(--color-gold);
}

/* ========================
   ABOUT / FLOATING CARD (Dark BG)
======================== */
.about-section {
    background: var(--color-bg-alt);
    padding: 0;
    min-height: 650px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-image {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
}

.about-text {
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-bg);
}

.about-text .section-label {
    color: var(--color-gold);
}

.about-text .section-label::before {
    background: var(--color-gold);
}

.about-text p {
    color: #aaa;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-text h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--color-gold);
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(212, 175, 55, 0.05);
}

.value-card h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

/* ========================
   PORTFOLIO / FULL IMAGE CARD
======================== */
.portfolio-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.portfolio-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    z-index: 0;
}

.portfolio-card {
    position: relative;
    z-index: 2;
    background: rgba(10, 10, 10, 0.88);
    border-top: 4px solid var(--color-gold);
    padding: 3.5rem 4rem;
    max-width: 480px;
    margin-left: 5rem;
    backdrop-filter: blur(4px);
}

.portfolio-card .card-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.portfolio-card h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-card p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.portfolio-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-card .card-nav {
    display: flex;
    gap: 0.5rem;
}

/* ========================
   WHY CHOOSE US (Light)
======================== */
.why-section {
    background: var(--color-light);
    padding: 7rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.why-item {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid var(--color-border-dark);
    background: #fff;
    transition: var(--transition);
}

.why-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.why-item i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: block;
}

.why-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #222;
}

.why-item p {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.6;
}

/* ========================
   CONTACT / FORM (Two-tone)
======================== */
.contact-section {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contact-info-col {
    background: #f0ede8;
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-col h2 {
    color: var(--color-text-dark);
    margin-bottom: 3rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.contact-detail p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
}

.contact-detail a {
    color: #222;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-detail a:hover {
    color: var(--color-gold);
}

.contact-form-col {
    background: var(--color-light-alt);
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-col h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #111;
    margin-bottom: 2.5rem;
}

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

.arch-form .form-group {
    margin-bottom: 2rem;
}

.arch-form .form-group.full {
    grid-column: 1 / -1;
}

.arch-form label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.arch-form input,
.arch-form textarea,
.arch-form select {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid #ccc;
    background: transparent;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #111;
    transition: var(--transition);
    outline: none;
    appearance: none;
}

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

.arch-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background: var(--color-text-dark);
    color: #fff;
    border: none;
    padding: 1.2rem 3.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--color-gold);
    color: #000;
}

/* ========================
   FOOTER
======================== */
.footer {
    background: #060606;
    padding: 5rem 0 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand img {
    height: 85px;
    margin-bottom: 1.5rem;

}

.footer-brand p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #444;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: #444;
}

.footer-bottom a:hover {
    color: var(--color-gold);
}

/* ========================
   SCROLL ANIMATIONS
======================== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up.d1 {
    transition-delay: 0.1s;
}

.fade-up.d2 {
    transition-delay: 0.2s;
}

.fade-up.d3 {
    transition-delay: 0.3s;
}

.fade-up.d4 {
    transition-delay: 0.4s;
}

/* ========================
   HERO DARK SECTION SEPARATORS
======================== */
.dark-section {
    background: var(--color-bg);
    color: #fff;
    padding: 7rem 0;
}

.dark-section .section-label {
    color: var(--color-gold);
}

.dark-section .section-label::before {
    background: var(--color-gold);
}

.dark-section .section-title {
    color: #fff;
}

.dark-section p {
    color: #888;
    line-height: 1.9;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1024px) {

    .services-inner,
    .about-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .services-right {
        min-height: 400px;
    }

    .about-image {
        min-height: 350px;
    }

    .split-nav {
        display: none;
    }

    .container {
        padding: 0 3rem;
    }

    .hero-floating-boxes {
        display: none;
    }

    .portfolio-card {
        margin: 2rem;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-boxes {
        display: none;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        padding: 0 1.5rem 6rem;
    }

    .services-left {
        padding: 4rem 1.5rem;
    }

    .about-text {
        padding: 4rem 1.5rem;
    }

    .contact-info-col,
    .contact-form-col {
        padding: 4rem 1.5rem;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .arch-form .form-row {
        grid-template-columns: 1fr;
    }

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