/* ===================================
   PREMIUM INDUSTRIAL REAL ESTATE DESIGN
   Caldwell Industrial Park
   =================================== */

:root {
    /* Colors - Refined Industrial Palette */
    --primary: #0A2F1F;
    --primary-light: #144730;
    --accent: #B8965F;
    --accent-dark: #9A7A4A;
    --text-dark: #1A1A1A;
    --text-body: #4A4A4A;
    --text-light: #8A8A8A;
    --bg-cream: #FAF8F5;
    --bg-dark: #0D0D0D;
    --white: #FFFFFF;
    
    /* Typography */
    --font-display: 'Inter', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Inter', monospace;
    
    /* Spacing */
    --section-padding: clamp(80px, 12vw, 100px);
    --container-padding: clamp(20px, 5vw, 80px);
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===================================
   RESET & BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
}

h1 { font-size: clamp(2.5rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 45px); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1.5em;
    line-height: 1.8;
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   CUSTOM CURSOR
   =================================== */
/*.custom-cursor,
.custom-cursor-follower {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    display: none;
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
    opacity: 0.5;
}

@media (min-width: 1024px) {
    .custom-cursor,
    .custom-cursor-follower {
        display: block;
    }
}*/

/* ===================================
   CONTAINERS
   =================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.container-fluid {
    max-width: 100%;
    padding: 0 var(--container-padding);
}

/* ===================================
   SECTION NUMBERS
   =================================== */
.section-number {
    position: absolute;
    top: var(--section-padding);
    right: var(--container-padding);
    font-family: var(--font-mono);
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--accent);
    opacity: 0.3;
    z-index: 10;
}

.section-number.white {
    color: var(--white);
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-label {
    font-family: var(--font-mono);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 600;
}

.section-label.white {
    color: var(--accent);
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 18px;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto;
}

.section-header.center {
    text-align: center;
}

.divider {
    width: 150px;
    height: 3px;
    background: var(--accent);
    margin: 1.5rem 0;
}

.divider.center {
    margin: 1.5rem auto;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10, 47, 31, 0.2);
}
.location-grid .location-content a.btn.btn-primary {
    margin-top: 15px;
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--accent);
}

.btn-white {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 0.95rem;
}

/* ===================================
   HEADER
   =================================== */
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    padding: 20px 0;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.logo img{
    max-width: 220px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-item {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    border: 2px solid var(--accent);
}

.contact-btn i {
    color: #fff;
    transform: rotate(90deg);
    transition: var(--transition-smooth);
}

.contact-btn:hover {
    background: #fff;
    border-color: #fff;
    color: var(--accent);
}
.contact-btn:hover i{
    color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 47, 31, 0.9) 0%, rgba(10, 47, 31, 0.7) 100%);
    z-index: 2;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 1000px;
    padding: 50px 0rem 0 0rem;
}

.hero-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #000;
    margin-bottom: 2rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(184, 150, 95, 0.3);
    background: var(--accent);
    backdrop-filter: blur(10px);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 55px;
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 1.1;
}

.hero-location {
    display: block;
    font-size: 0.6em;
    color: var(--accent);
    font-style: italic;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 12px;
    max-width: 650px;
    font-weight: 400;
}
p.hero-description.mb {
    margin-bottom: 45px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===================================
   PRIME LOCATION
   =================================== */
.prime-location {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
    position: relative;
}

.location-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.location-grid .location-content {
    width: 48%;
}
.location-grid .location-images {
    width: 46%;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 2rem;
}

.features-list {
    display: grid;
    gap: 1rem;
    margin: 3rem 0;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-left: 3px solid var(--accent);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.feature-tag:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.feature-tag i {
    color: var(--accent);
    font-size: 1.2rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-top: 2rem;
}

.link-arrow i {
    transition: var(--transition-smooth);
}

.link-arrow:hover i {
    transform: translateX(5px);
}

.image-stack {
    position: relative;
    height: 700px;
}

.image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 85%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-main:hover img {
    transform: scale(1.05);
}

.image-label {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    padding: 1rem 2rem;
    background: rgba(10, 47, 31, 0.95);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
}

.image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 50%;
    overflow: hidden;
    border: 10px solid var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-accent:hover img {
    transform: scale(1.05);
}

/* ===================================
   DEVELOPMENT SECTION
   =================================== */
.development-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.development-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4.5rem;
}

.dev-feature {
    padding: 45px 30px;
    background: #fff;
    border-top: 4px solid var(--accent);
    transition: var(--transition-smooth);
    box-shadow: 0 2px 7px #00000014;
    text-align: center;
}

.dev-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-icon {
        width: auto;
    height: auto;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 40px;
    color: var(--accent);
}

.dev-feature h4 {
    font-size: 18px;
    margin-bottom: 0rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.dev-feature p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

.development-features {
    display: flex;
    flex-wrap: wrap;
    gap: 35px 3%;
    justify-content: center;
}
.development-features .dev-feature {
    width: 31%;
}

.closing-statement {
    max-width: 900px;
    margin: 5rem auto 0;
    padding: 3rem;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    border-left: 5px solid var(--accent);
}

.closing-statement p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.9;
    margin: 0;
}
section#development .closing-statement-text {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 30px 0 0 0;
}

section#development .closing-statement-text p {
    margin: 0 0 0 0;
    color: var(--primary);
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
    max-width: 640px;
    line-height: 1.5;
}
/* ===================================
   WHY CALDWELL
   =================================== */
.why-caldwell {
    position: relative;
    background: var(--primary);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 800px;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 47, 31, 0.6), rgba(10, 47, 31, 0.3));
}

.split-content {
    padding: var(--section-padding) var(--container-padding);
    background: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(184, 150, 95, 0.03) 35px, rgba(184, 150, 95, 0.03) 70px);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content .section-title {
    color: var(--white);
}

.intro-text {
    font-size: 16px;
    margin-bottom: 0rem;
    color: rgba(255, 255, 255, 0.9);
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0 0rem 0;
}

.advantage-card {
    padding: 2rem 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.adv-number {
    font-family: var(--font-mono);
    font-size: 40px;
    color: var(--accent);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 500;
}

.advantage-card h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 500;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.90rem;
    margin: 0;
    line-height: 1.5;
}

.market-insight {
    margin-top: 3rem;
    padding: 2rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent);
    position: relative;
}

.market-insight i {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    color: var(--accent);
    opacity: 1;
}

.market-insight p {
        font-size: 16px;
    line-height: 1.8;
    padding-left: 2rem;
    margin: 0;
    font-style: italic;
    font-weight: 400;
}
section#features .split-content h2.section-title {
    margin: 0 0 0 0;
}
section#features .split-image video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
/* ===================================
   IDEAL USES
   =================================== */
.ideal-uses {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.uses-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.use-card {
    padding: 3rem 2rem;
    background: var(--bg-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.use-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.use-card:hover::before {
    transform: scaleX(1);
}

.use-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.use-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.use-icon i {
    font-size: 2rem;
    color: var(--accent);
}

.use-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.use-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin: 0;
}

.card-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), transparent);
    opacity: 0.1;
}
.uses-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px 3%;
    margin-top: 40px;
}

.uses-carousel .use-card {
    width: 31%;
}

.uses-carousel .use-card h4 {
    font-size: 19px;
    line-height: 1.6;
    font-weight: 600;
}

.uses-carousel .use-card .use-icon {
    margin-bottom: 20px;
}
section.ideal-uses .uses-carousel {
    justify-content: space-between;
    gap: 36px 0px;
}

section.ideal-uses .uses-carousel .use-card {
    width: 31.5%;
}
section.ideal-uses .uses-carousel .use-card.z_heading {
    background: transparent;
    text-align: left;
    transform: translate(0px, 0px);
    box-shadow: 0 0 #000;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

section.ideal-uses .uses-carousel .use-card.z_heading:before {
    display: none;
}

section.ideal-uses .uses-carousel .use-card.z_heading .section-label {
    margin-bottom: 10px;
}
section.ideal-uses .uses-carousel{
    margin-top: 0px !important;
}

/* ===================================
   YARD STORAGE
   =================================== */
.yard-storage {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--primary);
    overflow: hidden;
}

.yard-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(184, 150, 95, 0.03) 35px, rgba(184, 150, 95, 0.03) 70px);
    pointer-events: none;
}

.yard-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.yard-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(184, 150, 95, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.yard-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.yard-content .highlight {
    color: var(--accent);
    font-style: italic;
}

.yard-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

section.yard-storage.cta-yard-storage .yard-content {
    max-width: 840px;
}

section.yard-storage.cta-yard-storage .yard-content p {
    margin: 0 0 40px 0;
}


/* ===================================
   GALLERY
   =================================== */
.gallery-section {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
    position: relative;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    height: 320px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 47, 31, 0.8), rgba(10, 47, 31, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--white);
}

.gallery-overlay span {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--bg-cream), var(--white));
    border: 2px solid var(--accent);
    position: relative;
}

.cta-content::before,
.cta-content::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
}

.cta-content::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.cta-content::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 3rem;
}

/* ===================================
   DIRECTIONS
   =================================== */
.directions-section {
    position: relative;
    background: #fff;
    padding: 100px 0;
}

.directions-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 700px;
}

.directions-content {
    padding: 0 0;
}

.directions-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.directions-content h3 {
    font-size: 30px;
    margin: 0rem 0 35px;
}

.directions-content .intro {
    margin-bottom: 2rem;
}

.directions-list {
    list-style: none;
    counter-reset: step-counter;
}

.directions-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    counter-increment: step-counter;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.step-number::before {
    content: counter(step-counter);
}

.directions-list strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.directions-list p {
    margin: 0;
}

.location-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.location-note p {
    margin-bottom: 1rem;
}

.location-note .small {
    font-size: 0.9rem;
}

.directions-map {
    position: relative;
    overflow: hidden;
}

.directions-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(90%);
}
section.yard-storage.industrialSpace .yard-content {
    max-width: 1110px;
}

section.yard-storage.industrialSpace .yard-content h2 {
    margin: 0 0 25px 0;
}

section.yard-storage.industrialSpace .yard-content p {
    margin: 0 0 18px 0;
}

section.yard-storage.industrialSpace .yard-content a.btn {
    margin: 25px 0 0 0px;
}
.directions-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.directions-content.aos-init.aos-animate {}

.directions-grid .directions-content {
    width: 45%;
}

.directions-grid .directions-map {}

.directions-grid .directions-map {
    width: 50%;
}

.directions-map.aos-init.aos-animate {}

.directions-grid .directions-map iframe {
    min-height: 700px;
}

section#location .section-header {
    margin-bottom: 45px;
}
.location-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-top: 0px;
        }
        .location-info { padding: 60px; }
        .map-container iframe { width: 100%; height: 100%; min-height: 450px; border: 0; }
        
        .steps { counter-reset: count; margin-top: 30px; }
        .steps li {
            position: relative;
            padding-left: 42px;
            margin-bottom: 20px;
            font-weight: 600;
            list-style: none;
        }
        .steps li::before {
            counter-increment: count;
            content: counter(count);
            position: absolute;
            left: 0;
            top: -2px;
            width: 30px;
            height: 30px;
            background: #b8965f;
            color: var(--white);
            text-align: center;
            line-height: 30px;
            border-radius: 50%;
            font-size: 0.85rem;
            font-weight: 600;
        }
/* ===================================
   FOOTER
   =================================== */
footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: var(--section-padding) 0 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col.brand h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.footer-col.brand span {
    color: var(--accent);
}

.footer-col.brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.phone-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.email {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.email:hover,
.phone-large:hover {
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-family: var(--font-mono);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--accent);
}

.contact-name {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-number {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 0.5rem;
}

.contact-number:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-accent {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 2rem auto 0;
}

/* ===================================
   LIGHTBOX
   =================================== */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
}

#lightbox.active {
    display: flex;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-close i {
    color: var(--white);
    font-size: 1.5rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.lightbox-nav.prev {
    left: 2rem;
}

.lightbox-nav.next {
    right: 2rem;
}

.lightbox-nav i {
    color: var(--white);
    font-size: 1.5rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
}

/* ===================================
   ANIMATIONS
   =================================== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos][data-aos][data-aos-duration="400"] {
    transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-delay="300"] {
    transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-delay="400"] {
    transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-delay="1000"] {
    transition-delay: 1s;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-in"] {
    opacity: 0;
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}
.hero-content a.btn.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}

.hero-content a.btn.btn-primary:before {
    background: #fff;
}

.hero-content a.btn.btn-primary:hover {
    color: var(--accent);
    border-color: #fff;
}





/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1200px) {
    .location-grid,
    .split-layout,
    .directions-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .image-stack {
        height: 500px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 6rem 2rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        box-shadow: 2px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .contact-btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .development-features,
    .uses-carousel {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .cta-content {
        padding: 3rem 2rem;
    }
}