/* ============================================
   236 WEST 30TH STREET - WEBSITE STYLES
   ============================================ */

/* CSS RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-navy: #1a2332;
    --primary-gold: #c9a961;
    --dark-navy: #0f1419;
    --light-gold: #d4b876;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--primary-gold);
    color: var(--primary-navy);
}

::-moz-selection {
    background: var(--primary-gold);
    color: var(--primary-navy);
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--primary-navy);
}

.btn-primary:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn svg {
    vertical-align: middle;
    margin-right: 8px;
}

/* NAVIGATION */
.navbar {
    background: var(--primary-navy);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: var(--transition);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 35, 50, 0.7), rgba(26, 35, 50, 0.8)), 
                url('images/facade.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-company {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--primary-gold);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    opacity: 0.9;
}

.scroll-indicator span {
    width: 6px;
    height: 10px;
    background: var(--primary-gold);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(15px); opacity: 0.5; }
}

/* QUICK CONTACT BAR */
.quick-contact {
    background: var(--dark-navy);
    padding: 15px 0;
    color: #ffffff;
}

.contact-items {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.contact-item svg {
    color: var(--primary-gold);
    flex-shrink: 0;
}

.contact-item a {
    color: #ffffff;
}

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

/* SECTION STYLES */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-navy);
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-light);
}

/* FEATURES SECTION */
.features {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 5px;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    margin-bottom: 25px;
}

.feature-icon svg {
    color: var(--primary-gold);
    margin: 0 auto;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* SPACE HIGHLIGHTS */
.space-highlights {
    background: var(--bg-white);
}

.highlights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlights-text h2 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.highlights-list {
    list-style: none;
    margin: 30px 0;
}

.highlights-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.highlights-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlights-image {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.highlights-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ROOF DECK FEATURE */
.roof-deck-feature {
    background: linear-gradient(rgba(26, 35, 50, 0.85), rgba(26, 35, 50, 0.85)),
                url('images/roof-night-1.jpg') center/cover fixed;
    color: #ffffff;
    text-align: center;
    padding: 120px 20px;
}

.roof-deck-content h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.roof-deck-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--primary-gold);
}

/* TRANSIT SECTION */
.transit {
    background: var(--bg-light);
}

.transit-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-top: -20px;
    margin-bottom: 40px;
}

.transit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.transit-card {
    background: var(--bg-white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.transit-card h3 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.transit-card p {
    color: var(--text-light);
    margin: 0;
}

.subway-lines-image {
    text-align: center;
    margin: 40px 0 50px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.subway-lines-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* CTA SECTION */
.cta-section {
    background: var(--primary-navy);
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #cccccc;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* PAGE HEADERS */
.page-header {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    margin-top: 70px;
}

.building-header {
    background: linear-gradient(rgba(26, 35, 50, 0.7), rgba(26, 35, 50, 0.8)),
                url('images/facade.jpg') center/cover;
}

.gallery-header {
    background: linear-gradient(rgba(26, 35, 50, 0.7), rgba(26, 35, 50, 0.8)),
                url('images/roof-skyline.jpg') center/cover;
}

.space-header {
    background: linear-gradient(rgba(26, 35, 50, 0.7), rgba(26, 35, 50, 0.8)),
                url('images/office-1.jpg') center/cover;
}

.contact-header {
    background: linear-gradient(rgba(26, 35, 50, 0.7), rgba(26, 35, 50, 0.8)),
                url('images/lobby.jpg') center/cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--primary-gold);
}

/* BUILDING HISTORY */
.building-history {
    background: var(--bg-white);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-image {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.history-text h2 {
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.history-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.history-text .lead {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-light);
}

/* BUILDING FEATURES SECTION */
.building-features-section {
    background: var(--bg-light);
}

.features-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-detail {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 5px;
    transition: var(--transition);
}

.feature-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-detail-icon {
    margin-bottom: 20px;
}

.feature-detail-icon svg {
    color: var(--primary-gold);
}

.feature-detail h3 {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.feature-detail p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* OFFICE FEATURES */
.office-features {
    background: var(--bg-white);
}

.office-features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.office-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.office-feature-item svg {
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.office-feature-item span {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.office-features-image {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* LOCATION SECTION */
.location-section {
    background: var(--bg-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.location-text h3 {
    color: var(--primary-navy);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.location-text p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
}

.location-text .lead {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
}

.location-list {
    list-style: none;
    margin: 20px 0;
}

.location-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
}

.location-list li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: bold;
}

.location-list li strong {
    color: var(--primary-navy);
    font-weight: 600;
}

.location-images {
    display: grid;
    gap: 20px;
}

.location-img {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* GALLERY */
.gallery-filter {
    background: var(--bg-light);
    padding: 30px 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-navy);
    color: #ffffff;
    border-color: var(--primary-navy);
}

.gallery-section {
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 35, 50, 0.95));
    color: #ffffff;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--primary-gold);
    margin: 0;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-caption {
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(201, 169, 97, 0.8);
    color: #ffffff;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    padding: 10px 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-gold);
}

/* SPACE INQUIRY */
.space-inquiry {
    background: var(--bg-light);
}

.inquiry-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.inquiry-form-container {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.inquiry-form-container h2 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 30px;
}

.inquiry-form,
.contact-form {
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.direct-contact {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
}

.direct-contact p {
    margin-bottom: 15px;
}

.direct-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

/* FEATURES SIDEBAR */
.features-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-card h3 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

.features-list svg {
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.gallery-cta p {
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* FORM SUCCESS MESSAGE */
.form-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success-content {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 5px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-success-content svg {
    color: var(--primary-gold);
    margin: 0 auto 20px;
}

.form-success-content h3 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.form-success-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* CONTACT PAGE */
.contact-info-section {
    background: var(--bg-white);
}

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

.broker-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 5px;
    text-align: center;
}

.broker-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-gold);
}

.broker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.broker-card h2 {
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.broker-title {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.broker-company {
    color: var(--text-light);
    margin-bottom: 30px;
}

.broker-contact {
    text-align: left;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 5px;
    margin-bottom: 15px;
}

.contact-method svg {
    color: var(--primary-gold);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-value {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 1.05rem;
}

.contact-value a {
    color: var(--primary-navy);
}

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

.broker-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-section {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 5px;
}

.contact-form-section h2 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.contact-form-section > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* MAP SECTION */
.map-section {
    position: relative;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-info {
    background: var(--primary-navy);
    color: #ffffff;
    padding: 40px 0;
}

.map-info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.map-info-item h3 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.score {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin: 10px 0;
}

.map-info-item p {
    color: #cccccc;
    margin: 0;
}

/* FOOTER */
.footer {
    background: var(--dark-navy);
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a {
    color: #cccccc;
}

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .highlights-content,
    .history-content,
    .office-features-content,
    .location-content,
    .inquiry-layout,
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .history-image,
    .highlights-image {
        order: -1;
    }
    
    .inquiry-form-container {
        padding: 30px;
    }
    
    .features-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-navy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 250px;
    }
    
    .contact-items {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 10px 15px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .inquiry-form-container,
    .contact-form-section {
        padding: 25px 20px;
    }
    
    .broker-card {
        padding: 30px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
