/* ============================================
   Global Styles & Variables
   ============================================ */
:root {
    --primary-navy: #003366;
    --primary-gold: #D4AF37;
    --accent-blue: #0066A1;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #FFFFFF;
    --success-green: #28a745;
    --warning-red: #dc3545;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-navy);
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-gold);
}

ul {
    list-style: none;
}

/* ============================================
   Navigation
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-cta {
    background: var(--primary-gold);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Hero Section
   ============================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-blue) 100%);
    margin-top: 60px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    padding: 40px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-gold);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    padding: 0 !important;
    min-height: auto !important;
    background: none !important;
    border: none !important;
    display: block !important;
    align-items: initial !important;
    justify-content: initial !important;
}

/* ============================================
   Image Placeholders
   ============================================ */
.image-placeholder {
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--light-gray) 100%);
    border: 2px dashed var(--dark-gray);
    border-radius: 8px;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    min-height: 250px;
    font-style: italic;
    overflow: hidden;
}

.image-placeholder.large {
    min-height: 400px;
}

/* When images are added, style them properly */
.image-placeholder img,
.overview-images img,
.infrastructure-photos img,
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--medium-gray);
    display: block;
}

.image-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
}

/* Make placeholder containers relative for absolute positioning of images */
.image-placeholder {
    position: relative;
}

/* Hide placeholder text when image is present */
.image-placeholder:has(img) {
    padding: 0;
    background: none;
    border: none;
    /* Keep min-height to maintain layout */
}

.hero-image img {
    border: none;
    border-radius: 0;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    margin-bottom: 50px;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   Banking Vacuum Section
   ============================================ */
#banking-vacuum {
    background: var(--light-gray);
}

.vacuum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.vacuum-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.vacuum-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vacuum-card.highlight {
    border-top: 4px solid var(--primary-gold);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vacuum-card h3 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.vacuum-card p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.vacuum-card ul {
    padding-left: 20px;
}

.vacuum-card ul li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 8px;
}

.card-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 15px;
}

/* ============================================
   Property Overview Section
   ============================================ */
#overview {
    background: var(--white);
}

.overview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.overview-details h3 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.check-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid var(--medium-gray);
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.3rem;
}

.lease-highlight {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-gold);
}

.lease-highlight h4 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.lease-note {
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}

.overview-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ============================================
   Infrastructure Section
   ============================================ */
#infrastructure {
    background: var(--white);
}

.infrastructure-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    margin: 50px 0;
    align-items: center;
}

.comparison-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.comparison-card.expensive {
    border-top: 4px solid var(--warning-red);
}

.comparison-card.savings {
    border-top: 4px solid var(--success-green);
}

.comparison-card h3 {
    margin-bottom: 25px;
    text-align: center;
}

.cost-box {
    text-align: center;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 25px;
}

.cost-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: block;
    margin-bottom: 5px;
}

.cost-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cost-list {
    padding-left: 20px;
}

.cost-list li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.cost-list.success li strong {
    color: var(--success-green);
}

.comparison-arrow {
    font-size: 3rem;
    color: var(--primary-gold);
    font-weight: bold;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.grid-title {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.infra-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.infra-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.infra-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.infra-item h4 {
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.infra-value {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.infra-item p:last-child {
    font-size: 0.9rem;
    color: var(--text-light);
}

.infrastructure-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.infrastructure-photos .image-placeholder {
    min-height: 300px;
}

/* ============================================
   Market Opportunity Section
   ============================================ */
#opportunity {
    background: var(--light-gray);
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.opportunity-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.opportunity-card.highlight-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-blue) 100%);
    color: var(--white);
}

.opportunity-card.highlight-card h3,
.opportunity-card.highlight-card p,
.opportunity-card.highlight-card li {
    color: var(--white);
}

.opportunity-card h3 {
    margin-bottom: 25px;
}

.demo-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.demo-stat {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
}

.demo-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 5px;
    word-wrap: break-word;
}

.demo-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    line-height: 1.4;
}

.segment-list li {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.segment-list li:last-child {
    border-bottom: none;
}

.segment-list strong {
    color: var(--primary-navy);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.card-emphasis {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ag-list {
    padding-left: 20px;
}

.ag-list li {
    list-style: disc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.market-data {
    margin-top: 60px;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.market-data h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.market-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.market-point {
    display: flex;
    gap: 25px;
    align-items: start;
}

.point-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.point-content h4 {
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.point-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Lease Details Section
   ============================================ */
#lease-details {
    background: var(--white);
}

.lease-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.lease-rate-box {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
}

.rate-primary {
    margin-bottom: 10px;
}

.rate-amount {
    font-size: 4rem;
    font-weight: 700;
}

.rate-period {
    font-size: 1.5rem;
    opacity: 0.9;
}

.rate-type {
    font-size: 1.2rem;
    opacity: 0.95;
}

.lease-breakdown {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.lease-breakdown h3 {
    margin-bottom: 25px;
}

.expense-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.expense-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    margin-top: 15px;
    border-top: 2px solid var(--primary-navy);
    font-weight: 600;
}

.expense-allin {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    background: var(--primary-navy);
    color: var(--white);
    margin-top: 15px;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

.lease-terms {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.lease-terms h3 {
    margin-bottom: 20px;
}

.lease-terms ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.lease-terms ul li:last-child {
    border-bottom: none;
}

.lease-comparison {
    background: var(--white);
    border: 2px solid var(--primary-gold);
    padding: 30px;
    border-radius: 10px;
}

.lease-comparison h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.lease-comparison ul {
    padding-left: 20px;
    margin-top: 15px;
}

.lease-comparison ul li {
    list-style: disc;
    margin-bottom: 8px;
    color: var(--text-light);
}

.comparison-note {
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 15px;
    color: var(--text-light);
}

/* ============================================
   Contact Section
   ============================================ */
#contact {
    background: var(--light-gray);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    font-size: 2.5rem;
}

.method-details h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.method-details a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.contact-cta {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.contact-cta ul {
    padding-left: 20px;
}

.contact-cta ul li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.submit-button {
    width: 100%;
    background: var(--primary-gold);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--primary-gold);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .overview-layout,
    .lease-content,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .infrastructure-comparison {
        grid-template-columns: 1fr;
    }

    .comparison-arrow {
        text-align: center;
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-box {
        width: 100%;
    }

    .nav-menu {
        display: none;
    }

    .vacuum-grid,
    .opportunity-grid {
        grid-template-columns: 1fr;
    }

    .infrastructure-photos {
        grid-template-columns: 1fr;
    }

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

    section {
        padding: 50px 0;
    }

    .market-point {
        flex-direction: column;
        gap: 15px;
    }

    .demo-stats {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .nav-container {
        padding: 15px;
    }

    .nav-cta {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}