
:root {

    --prg-navy: #0c1829;

    --prg-navy-light: #1a2d47;

    --prg-gold: #c9a227;

    --prg-gold-light: #e3b84a;

    --prg-white: #ffffff;

    --prg-cream: #f8f6f1;

    --prg-text: #2c3e50;

    --prg-text-light: #6c7a89;

    --prg-green: #27ae60;

    --prg-red: #e74c3c;

    --prg-gradient: linear-gradient(135deg, #c9a227 0%, #e3b84a 100%);

}

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

body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--prg-white); color: var(--prg-text); line-height: 1.6; }

.gf-icon { width: 20px; height: 20px; vertical-align: middle; }

.gf-icon-lg { width: 24px; height: 24px; }

.gf-icon-xl { width: 32px; height: 32px; }

.gf-icon-gold { filter: invert(72%) sepia(58%) saturate(641%) hue-rotate(6deg) brightness(91%) contrast(89%); }

.gf-icon-white { filter: brightness(0) invert(1); }

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }



/* Header */

.header { position: fixed; top: 44px; left: 0; right: 0; z-index: 1000; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; height: 80px; background: transparent; transition: all 0.3s; }

.header.scrolled { background: var(--prg-navy); top: 0; box-shadow: 0 2px 20px rgba(0,0,0,0.2); }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.logo-icon { width: 50px; height: 50px; background: var(--prg-gradient); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--prg-navy); font-size: 22px; font-family: Georgia, serif; }

.logo-text { color: white; }

.logo-text h1 { font-size: 20px; font-weight: 700; letter-spacing: -0.5px; line-height: 1.1; }

.logo-text span { font-size: 10px; color: var(--prg-gold); text-transform: uppercase; letter-spacing: 2px; }

.nav { display: flex; gap: 30px; }

.nav-link { color: white; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }

.nav-link:hover { color: var(--prg-gold); }

.header-right { display: flex; align-items: center; gap: 25px; }

.header-contact { display: flex; align-items: center; gap: 8px; color: white; text-decoration: none; }

.header-contact span { font-size: 14px; font-weight: 600; }

.header-contact:hover span { color: var(--prg-gold); }

.header-cta { background: var(--prg-gradient); color: var(--prg-navy); padding: 12px 24px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 13px; transition: all 0.2s; }

.header-cta:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(201,162,39,0.4); }



/* Hero */

.hero { height: 100vh; min-height: 750px; position: relative; display: flex; align-items: center; background: var(--prg-navy); overflow: hidden; }

.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,24,41,0.92) 0%, rgba(26,45,71,0.88) 100%); z-index: 1; }

.hero-image { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920') center/cover; }

.hero-content { position: relative; z-index: 2; width: 100%; padding: 0 40px; padding-top: 80px; }

.hero-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,162,39,0.15); border: 1px solid var(--prg-gold); padding: 8px 20px; border-radius: 30px; color: var(--prg-gold); font-size: 12px; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }

.hero-title { font-size: 54px; font-weight: 300; color: white; line-height: 1.15; margin-bottom: 20px; }

.hero-title strong { font-weight: 700; display: block; }

.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 30px; line-height: 1.7; }

.hero-buttons { display: flex; gap: 15px; }

.btn-primary { background: var(--prg-gradient); color: var(--prg-navy); padding: 16px 32px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; border: none; cursor: pointer; }

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,162,39,0.4); }

.btn-secondary { background: transparent; color: white; padding: 16px 32px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 14px; border: 2px solid rgba(255,255,255,0.3); transition: all 0.2s; }

.btn-secondary:hover { border-color: var(--prg-gold); color: var(--prg-gold); }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }

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

.hero-stat-value { font-size: 36px; font-weight: 700; color: var(--prg-gold); }

.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }



/* Search Box */

.search-section { background: var(--prg-cream); padding: 80px 40px; margin-top: -100px; position: relative; z-index: 10; }

.search-box { max-width: 1200px; margin: 0 auto; background: white; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); overflow: hidden; }

.search-tabs { display: flex; background: var(--prg-navy); }

.search-tab { flex: 1; padding: 18px 30px; text-align: center; color: rgba(255,255,255,0.6); font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.2s; border: none; background: transparent; }

.search-tab:hover { color: white; }

.search-tab.active { background: var(--prg-gold); color: var(--prg-navy); }

.search-form { padding: 30px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto; gap: 20px; align-items: end; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label { font-size: 12px; font-weight: 600; color: var(--prg-text-light); text-transform: uppercase; letter-spacing: 0.5px; }

.form-group input, .form-group select { padding: 14px 16px; border: 2px solid #e8e8e8; border-radius: 8px; font-size: 15px; transition: border-color 0.2s; }

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

.search-btn { background: var(--prg-navy); color: white; padding: 16px 40px; border: none; border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: all 0.2s; height: fit-content; }

.search-btn:hover { background: var(--prg-navy-light); }



/* Divisions */

.divisions { padding: 100px 40px; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-badge { display: inline-block; background: rgba(201,162,39,0.1); color: var(--prg-gold); padding: 8px 20px; border-radius: 30px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }

.section-title { font-size: 42px; font-weight: 700; color: var(--prg-navy); margin-bottom: 15px; }

.section-subtitle { font-size: 18px; color: var(--prg-text-light); max-width: 600px; margin: 0 auto; }

.divisions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }

.division-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.3s; cursor: pointer; }

.division-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }

.division-image { height: 220px; background-size: cover; background-position: center; position: relative; }

.division-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(12,24,41,0.8) 100%); }

.division-badge { position: absolute; top: 20px; left: 20px; background: var(--prg-gold); color: var(--prg-navy); padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; z-index: 2; }

.division-content { padding: 25px; }

.division-title { font-size: 22px; font-weight: 700; color: var(--prg-navy); margin-bottom: 10px; }

.division-desc { font-size: 14px; color: var(--prg-text-light); margin-bottom: 15px; line-height: 1.6; }

.division-stats { display: flex; gap: 20px; padding-top: 15px; border-top: 1px solid #eee; }

.division-stat { font-size: 13px; color: var(--prg-text-light); }

.division-stat strong { color: var(--prg-navy); font-weight: 700; }



/* Featured Listings */

.listings { padding: 100px 40px; background: var(--prg-cream); }

.listings-header { display: flex; justify-content: space-between; align-items: end; max-width: 1400px; margin: 0 auto 40px; }

.listings-filters { display: flex; gap: 10px; }

.filter-btn { padding: 10px 20px; border: 2px solid #ddd; background: white; border-radius: 30px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; }

.filter-btn:hover, .filter-btn.active { border-color: var(--prg-gold); color: var(--prg-gold); }

.listings-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; max-width: 1400px; margin: 0 auto; }

.listing-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: all 0.3s; }

.listing-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }

.listing-image { height: 200px; background-size: cover; background-position: center; position: relative; }

.listing-badge { position: absolute; top: 15px; left: 15px; background: var(--prg-green); color: white; padding: 5px 12px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; }

.listing-badge.pending { background: var(--prg-gold); color: var(--prg-navy); }

.listing-badge.sold { background: var(--prg-red); }

.listing-favorite { position: absolute; top: 15px; right: 15px; width: 36px; height: 36px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }

.listing-favorite:hover { transform: scale(1.1); }

.listing-content { padding: 20px; }

.listing-price { font-size: 24px; font-weight: 700; color: var(--prg-navy); margin-bottom: 8px; }

.listing-address { font-size: 15px; color: var(--prg-text); margin-bottom: 5px; font-weight: 500; }

.listing-city { font-size: 13px; color: var(--prg-text-light); margin-bottom: 15px; }

.listing-details { display: flex; gap: 15px; padding-top: 15px; border-top: 1px solid #eee; }

.listing-detail { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--prg-text-light); }

.listing-agent { display: flex; align-items: center; gap: 10px; margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; }

.agent-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--prg-navy); color: white; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; }

.agent-info { font-size: 12px; }

.agent-info strong { display: block; color: var(--prg-text); }

.agent-info span { color: var(--prg-gold); }



/* Agents */

.agents { padding: 100px 40px; }

.agents-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }

.agent-card { background: white; border-radius: 16px; padding: 30px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.3s; }

.agent-card:hover { transform: translateY(-5px); }

.agent-photo { width: 120px; height: 120px; border-radius: 50%; background: var(--prg-navy); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 36px; font-weight: 700; color: var(--prg-gold); }

.agent-name { font-size: 20px; font-weight: 700; color: var(--prg-navy); margin-bottom: 5px; }

.agent-title { font-size: 13px; color: var(--prg-gold); font-weight: 600; margin-bottom: 5px; }

.agent-nw { font-size: 13px; color: var(--prg-text-light); margin-bottom: 15px; }

.agent-stats { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }

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

.agent-stat-value { font-size: 20px; font-weight: 700; color: var(--prg-navy); }

.agent-stat-label { font-size: 11px; color: var(--prg-text-light); text-transform: uppercase; }

.agent-contact { display: flex; gap: 10px; justify-content: center; }

.agent-btn { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #eee; background: white; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }

.agent-btn:hover { border-color: var(--prg-gold); background: rgba(201,162,39,0.1); }



/* Market Stats */

.market { padding: 100px 40px; background: var(--prg-navy); color: white; }

.market .section-title { color: white; }

.market .section-subtitle { color: rgba(255,255,255,0.6); }

.market-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }

.market-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 30px; text-align: center; }

.market-icon { width: 60px; height: 60px; background: rgba(201,162,39,0.2); border-radius: 12px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }

.market-value { font-size: 36px; font-weight: 700; color: var(--prg-gold); margin-bottom: 5px; }

.market-label { font-size: 14px; color: rgba(255,255,255,0.6); }

.market-change { font-size: 13px; margin-top: 10px; }

.market-change.up { color: #27ae60; }

.market-change.down { color: #e74c3c; }



/* Testimonials */

.testimonials { padding: 100px 40px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }

.testimonial-card { background: white; border-radius: 16px; padding: 30px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }

.testimonial-stars { color: var(--prg-gold); font-size: 18px; margin-bottom: 15px; }

.testimonial-text { font-size: 15px; color: var(--prg-text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--prg-cream); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--prg-navy); }

.testimonial-info strong { display: block; color: var(--prg-navy); font-size: 15px; }

.testimonial-info span { font-size: 13px; color: var(--prg-gold); }



/* Contact/CTA */

.cta { padding: 100px 40px; background: linear-gradient(135deg, var(--prg-navy) 0%, var(--prg-navy-light) 100%); text-align: center; }

.cta-title { font-size: 42px; font-weight: 700; color: white; margin-bottom: 15px; }

.cta-subtitle { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

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

.cta-info { display: flex; justify-content: center; gap: 60px; margin-top: 50px; padding-top: 50px; border-top: 1px solid rgba(255,255,255,0.1); }

.cta-info-item { display: flex; align-items: center; gap: 12px; color: white; }

.cta-info-item span { font-size: 16px; }



/* Footer */

.footer { background: #070d15; color: rgba(255,255,255,0.6); padding: 80px 40px 40px; }

.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 60px; max-width: 1400px; margin: 0 auto 60px; }

.footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.7; }

.footer h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }

.footer ul { list-style: none; }

.footer li { margin-bottom: 12px; }

.footer a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }

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

.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; }

.footer-bottom p { font-size: 13px; }

.nw-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,162,39,0.2); border: 1px solid var(--prg-gold); padding: 8px 16px; border-radius: 20px; color: var(--prg-gold); font-size: 12px; font-weight: 600; }



/* Live Activity Ticker */

.ticker { background: var(--prg-gold); padding: 12px 0; overflow: hidden; }

.ticker-content { display: flex; animation: ticker 30s linear infinite; white-space: nowrap; }

.ticker-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 40px; color: var(--prg-navy); font-size: 14px; font-weight: 600; }

.ticker-item .dot { width: 8px; height: 8px; background: var(--prg-navy); border-radius: 50%; }

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



/* Calculator Modal */

.calculator-section { padding: 80px 40px; background: var(--prg-cream); }

.calculator-box { max-width: 800px; margin: 0 auto; background: white; border-radius: 16px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }

.calculator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.calc-inputs { display: flex; flex-direction: column; gap: 20px; }

.calc-result { background: var(--prg-navy); border-radius: 12px; padding: 30px; color: white; text-align: center; }

.calc-result-label { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px; }

.calc-result-value { font-size: 48px; font-weight: 700; color: var(--prg-gold); }

.calc-breakdown { margin-top: 20px; text-align: left; }

.calc-breakdown-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 14px; }



/* Responsive */

@media (max-width: 1200px) { .listings-grid { grid-template-columns: repeat(3, 1fr); } .agents-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; text-align: center; } .hero-stats { grid-template-columns: repeat(2, 1fr); } .search-form { grid-template-columns: 1fr; } .divisions-grid, .market-grid, .testimonials-grid { grid-template-columns: 1fr; } .listings-grid { grid-template-columns: repeat(2, 1fr); } .footer-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600px) { .hero-title { font-size: 36px; } .listings-grid, .agents-grid { grid-template-columns: 1fr; } .nav { display: none; } }

