/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
   :root {
    --black: #1a1a1a;
    --dark-grey: #2d2d2d;
    --light-grey: #f4f4f4;
    --white: #ffffff;
    --gold: #C5A059;
    --gold-hover: #b08d4b;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   2. TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5 {
    font-weight: normal;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

.italic { font-style: italic; font-family: serif; } /* Using serif for italic emphasis */
.gold-text { color: var(--gold); }
.gold-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.section-label-center {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #888;
    margin-bottom: 2rem;
    font-weight: bold;
}

.center { text-align: center; }

/* =========================================
   3. UTILITIES & LAYOUT
   ========================================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-white {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid transparent;
}
.btn-white:hover {
    background-color: var(--gold);
    color: var(--white);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
}
.btn-gold:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-black {
    background-color: var(--black);
    color: var(--white);
}
.btn-black:hover {
    background-color: var(--gold);
}

.full-width { width: 100%; }

/* =========================================
   4. NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    height: 40px;
    width: auto;
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--black);
    color: var(--white);
}

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #1a1a1a 0%, rgba(26,26,26,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 650px;
}

.hero-text h1 { color: var(--white); }

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.gold-line {
    width: 40px;
    height: 1px;
    background-color: var(--gold);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
}

.check { color: var(--gold); font-size: 1.1rem; margin-right: 5px; }

/* =========================================
   6. TRUST & MAGAZINE STRIP
   ========================================= */
.trust-section {
    padding: 50px 0;
    background-color: var(--white);
    border-bottom: 1px solid #eee;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.logo-grid img {
    height: 35px;
    width: auto;
    filter: grayscale(0%);
    opacity: 0.8;
    transition: var(--transition);
}

.logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* =========================================
   7. NIGHTMARE SECTION (Dark)
   ========================================= */
.nightmare-section {
    background-color: var(--black);
    color: var(--white);
    padding: 100px 0;
}

.section-header h2 { color: var(--white); }
.section-header p { color: #888; max-width: 700px; margin: 0 auto 50px; }

.dark-card {
    background-color: #222;
    border: 1px solid #333;
    padding: 20px;
    transition: var(--transition);
}

.dark-card:hover {
    border-color: #c5a059; /* Red border for alarm/danger concept */
}

.card-image {
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   /* filter: grayscale(100%);  */
    transition: var(--transition);
}

.dark-card:hover .card-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.dark-card h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.dark-card p {
    color: #aaa;
    font-size: 0.9rem;
}


/* =========================================
   7. COLLAB SECTION (Why Architects Collab)
   ========================================= */
.collab-section {
    padding: 100px 0;
    background: var(--white);
}

.collab-grid { gap: 40px; }

.collab-item {
    border: 1px solid #eee;
    background: #fff;
    transition: 0.3s;
}
.collab-item:hover { border-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.collab-img { height: 220px; overflow: hidden; }
.collab-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: 0.5s;
}
.collab-item:hover img { transform: scale(1.05); }

.collab-txt { padding: 30px; }
.collab-txt h4 { margin-bottom: 10px; }
.collab-txt p { color: #666; font-size: 0.9rem; }

/* =========================================
   5. BRANDS SECTION (New)
   ========================================= */
.brands-section { padding: 80px 0; background-color: var(--dark-grey); color: var(--white); }
.brands-section h2 { color: var(--white); }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 40px; align-items: center; justify-items: center; margin-top: 40px; }
.brands-grid img { max-height: 50px; filter: grayscale(100%) brightness(200%); transition: 0.3s; opacity: 0.7; }
.brands-grid img:hover { filter: none; opacity: 1; }

/* =========================================

/* =========================================
   7. MARQUEE PROJECTS SECTION (New)
   ========================================= */
.marquee-section { padding: 100px 0; background-color: var(--black); }
.marquee-section h2 { color: var(--white); }
.marquee-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.project-card { background: transparent; }
.project-img { position: relative; margin-bottom: 20px; overflow: hidden; }
.project-img img { width: 100%; height: auto; transition: transform 0.5s ease; }
.project-card:hover .project-img img { transform: scale(1.05); }
.location-tag { position: absolute; bottom: 8px; left: 0; background-color: var(--gold); color: var(--black); padding: 5px 15px; font-size: 8px; text-transform: uppercase; font-weight: bold; letter-spacing: 1px; }
.project-info h3 { color: var(--white); font-size: 15px; margin-bottom: 10px; }
.project-info p { color: #ccc; font-size: 0.95rem; }





/* =========================================
   8. SCALE SECTION
   ========================================= */
.scale-section {
    
    background-color: var(--white);
}

.scale-text h2 {
    margin: 10px 0 20px;
}

.scale-image img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   9. PROCESS SECTION
   ========================================= */
.process-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.process-line {
    width: 80%;
    height: 2px;
    background-color: #ddd;
    margin: 0 auto;
    position: relative;
    top: 50px;
    z-index: 0;
}

.process-grid {
    position: relative;
    z-index: 1;
}

.process-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--black);
    border: 4px solid var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.step-icon img { width: 40px; }

.process-list {
    list-style: none;
    margin-top: 20px;
    text-align: left;
    padding-left: 20px;
}

.process-list li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    position: relative;
}

.process-list li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: -15px;
}

/* =========================================
   10. FACILITIES GRID
   ========================================= */
.facilities-section {
    padding: 100px 0;
    background-color: var(--white);
}

.subtitle { color: #666; max-width: 600px; }

.facilities-grid {
    gap: 2px; /* Tight grid like the deck image */
    margin-top: 40px;
}

.facility-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.facility-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.facility-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.facility-overlay h4 {
    color: var(--white);
    margin: 0;
    font-family: serif;
}

/* =========================================
   11. BENEFITS (Bento Grid)
   ========================================= */
.benefits-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.benefit-card {
    background: var(--white);
    border: 1px solid #e5e5e5;
    padding: 30px;
    transition: var(--transition);
    position: relative;
}

.benefit-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.gold-icon {
    font-size: 1.5rem;
    color: var(--gold);
    display: block;
    margin-bottom: 15px;
}

.highlight-card {
    background-color: var(--black);
    color: var(--white);
    border: none;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    z-index: 2;
}

.highlight-card h4, .highlight-card p { color: var(--white); }

.cta-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
}

.cta-card a {
    text-decoration: none;
    color: var(--black);
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.arrow-icon {
    display: block;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
    transition: var(--transition);
}

.cta-card:hover .arrow-icon { transform: translateX(10px); }

/* =========================================
   12. PRESS & AWARDS
   ========================================= */
.press-section, .awards-section {
    padding: 80px 0;
    background-color: var(--white);
}

.press-grid {
    gap: 20px;
}

.press-item {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.press-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.press-item:hover img { transform: scale(1.05); }

.awards-grid { text-align: center; }
.award-item img { height: 150px; margin-bottom: 20px; }
.award-item h4 { font-size: 1.1rem; font-family: serif; font-weight: bold; }
.award-item p { font-size: 0.8rem; text-transform: uppercase; color: #888; }

/* =========================================
   13. BOOK SECTION
   ========================================= */
.book-section {
    background-color: var(--light-grey);
    padding: 100px 0;
    overflow: hidden;
}

.book-image img {
    max-width: 350px;
    box-shadow: 20px 20px 40px rgba(0,0,0,0.2);
    transform: rotate(-3deg);
    transition: var(--transition);
}

.book-image:hover img { transform: rotate(0); }

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li { margin-bottom: 10px; font-weight: 500; }

.text-link {
    color: var(--black);
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* =========================================
   14. FORM SECTION
   ========================================= */
.form-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.form-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-top: 5px solid var(--gold);
    text-align: center;
}

.form-box p { margin-bottom: 30px; color: #666; }

.lead-form { text-align: left; }

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #888;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--gold);
}

/* =========================================
   15. FOOTER
   ========================================= */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.pledge {
    font-style: italic;
    color: #aaa;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.address {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 30px;
}

.social-icons a {
    color: #888;
    margin: 0 15px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover { color: var(--gold); }

.copyright {
    margin-top: 40px;
    font-size: 0.75rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   16. RESPONSIVENESS (Mobile)
   ========================================= */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .grid-3 { grid-template-columns: 1fr; }
    
    .flex-row {
        flex-direction: column;
        text-align: center;
    }
    
    .process-line { display: none; }
    
    .highlight-card { transform: scale(1); }
    
    .navbar .logo img { height: 30px; }
    .nav-cta { display: none; } /* Hide button on small screens or swap to hamburger */
    
    .hero-badges { justify-content: center; }
    
    .form-box { padding: 30px 20px; }
}




/* =========================================
   15. THANK YOU PAGE STYLES
   ========================================= */

/* Hero Area */
.thank-hero {
    padding: 180px 0 80px; /* Account for fixed nav */
    background-color: var(--white);
    border-bottom: 1px solid var(--light-grey);
}

.success-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.thank-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.thank-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Split Layout */
.next-steps-section {
    padding: 100px 0;
    background-color: var(--f5f5f5);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Timeline (Left Column) */
.steps-column h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 10px;
}

.timeline {
    position: relative;
    border-left: 2px solid #ddd;
    padding-left: 40px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child { margin-bottom: 0; }

.time-number {
    position: absolute;
    left: -61px; /* Align with border line */
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--black);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 4px solid var(--f5f5f5); /* Creates gap effect */
}

.time-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.time-content p {
    font-size: 0.95rem;
    color: #666;
}

/* Download Box (Right Column) */
.download-column {
    background: var(--white);
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}

.book-badge {
    position: absolute;
    top: 60px;
    right: -35px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.book-preview img {
    max-width: 200px;
    margin: 0 auto 30px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
    transform: rotate(-3deg);
    transition: 0.3s ease;
}

.book-card:hover .book-preview img {
    transform: rotate(0) scale(1.05);
}

.book-info h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.book-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Thank You Responsive */
@media (max-width: 768px) {
    .thank-title { font-size: 2.5rem; }
    .split-layout { grid-template-columns: 1fr; gap: 50px; }
    .timeline { border-left: none; padding-left: 0; }
    .time-number { position: relative; left: 0; margin-bottom: 15px; display: inline-flex; }
    .thank-hero { padding: 140px 0 60px; }
}