
:root {

    --navy-dark: #1a2744;

    --navy: #2a3f5f;

    --navy-light: #3d5a80;
    --navy-medium: #2a3a52;

    --gold: #c9a227;

    --gold-light: #e6c55a;

    --gold-dark: #a68520;

    --cream: #f8f6f0;

    --white: #ffffff;

    --gray-100: #f7f7f7;

    --gray-200: #e8e8e8;

    --gray-600: #666666;

    --text-dark: #1a1a1a;

}



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



body {

    font-family: 'Inter', sans-serif;

    background: var(--cream);

    color: var(--text-dark);

    line-height: 1.6;

}



/* GlyphForge Icons */

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

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

.service-icon img, .type-icon img { width: 32px; height: 32px; filter: brightness(0) invert(1); }

.testimonial-stars { display: flex; gap: 4px; margin-bottom: 15px; }

.testimonial-stars img { width: 18px; height: 18px; filter: brightness(0) saturate(100%) invert(70%) sepia(60%) saturate(500%) hue-rotate(10deg); }

.footer-contact-item img { width: 16px; height: 16px; filter: brightness(0) invert(0.7); flex-shrink: 0; margin-top: 3px; }

.agent-btn img { width: 18px; height: 18px; filter: brightness(0) saturate(100%) invert(20%) sepia(20%) saturate(500%) hue-rotate(180deg); }

.agent-btn:hover img { filter: brightness(0) saturate(100%) invert(10%); }

.phone-text img, .phone-link img { filter: brightness(0) invert(1); margin-right: 8px; }

.hero-badge img { filter: brightness(0) invert(1); width: 16px; height: 16px; }

.search-btn img { filter: brightness(0) invert(0.2); }



/* Ticker */

.ticker {

    background: var(--navy-dark);

    color: var(--gold-light);

    padding: 10px 0;

    overflow: hidden;

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 0.5px;

}

.ticker-content {

    display: flex;

    animation: ticker 30s linear infinite;

    white-space: nowrap;

}

.ticker-item { padding: 0 50px; display: flex; align-items: center; gap: 8px; }

.ticker-badge {

    background: var(--gold);

    color: var(--navy-dark);

    padding: 2px 8px;

    border-radius: 3px;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

}

@keyframes ticker {

    0% { transform: translateX(0); }

    100% { transform: translateX(-50%); }

}



/* Header */

header {

    background: var(--navy);

    position: sticky;

    top: 0;

    z-index: 1000;

    box-shadow: 0 4px 20px rgba(26, 39, 68, 0.3);

}

.header-top {

    background: var(--navy-dark);

    padding: 8px 0;

    border-bottom: 1px solid rgba(201, 162, 39, 0.2);

}

.header-top-content {

    max-width: 1400px;

    margin: 0 auto;

    padding: 0 40px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 13px;

    color: rgba(255, 255, 255, 0.8);

}

.header-top a { color: var(--gold-light); text-decoration: none; }

.header-main {

    max-width: 1400px;

    margin: 0 auto;

    padding: 15px 40px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

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

.logo-icon {

    width: 50px;

    height: 50px;

    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: 'Playfair Display', serif;

    font-size: 24px;

    font-weight: 700;

    color: var(--navy-dark);

}

.logo-text { color: var(--white); }

.logo-text h1 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; letter-spacing: 1px; }

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

nav { display: flex; gap: 8px; }

nav a {

    color: var(--white);

    text-decoration: none;

    padding: 10px 18px;

    border-radius: 6px;

    font-weight: 500;

    font-size: 14px;

    transition: all 0.3s ease;

}

nav a:hover, nav a.active { background: rgba(201, 162, 39, 0.2); color: var(--gold-light); }

.header-cta { display: flex; align-items: center; gap: 15px; }

.phone-link {

    color: var(--white);

    text-decoration: none;

    display: flex;

    align-items: center;

    font-weight: 500;

}

.phone-text { display: flex; align-items: center; color: var(--gold); text-decoration: none; font-weight: 500; gap: 8px; }
.btn-primary {

    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);

    color: var(--navy-dark);

    padding: 12px 24px;

    border-radius: 6px;

    text-decoration: none;

    font-weight: 600;

    font-size: 14px;

    transition: all 0.3s ease;

    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);

}

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

.btn-secondary {

    background: transparent;

    border: 2px solid var(--gold);

    color: var(--gold-light);

    padding: 12px 24px;

    border-radius: 6px;

    text-decoration: none;

    font-weight: 600;

    font-size: 14px;

    transition: all 0.3s ease;

}

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



/* Hero */

.hero {

    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);

    padding: 100px 40px;

    position: relative;

    overflow: hidden;

}

.hero-content {

    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

    position: relative;

    z-index: 1;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: rgba(201, 162, 39, 0.15);

    border: 1px solid var(--gold);

    padding: 8px 16px;

    border-radius: 30px;

    color: var(--gold-light);

    font-size: 13px;

    font-weight: 500;

    margin-bottom: 20px;

}

.hero h2 { font-family: 'Playfair Display', serif; font-size: 52px; color: var(--white); line-height: 1.2; margin-bottom: 20px; }

.hero h2 span { color: var(--gold); }

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

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

.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.stat-card {

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(201, 162, 39, 0.2);

    border-radius: 12px;

    padding: 25px;

    text-align: center;

}

.stat-card .number { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--gold); margin-bottom: 5px; }

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



/* Search */

.search-section {

    background: var(--white);

    max-width: 1200px;

    margin: -50px auto 60px;

    border-radius: 16px;

    box-shadow: 0 20px 60px rgba(26, 39, 68, 0.15);

    padding: 30px;

    position: relative;

    z-index: 10;

}

.search-tabs { display: flex; gap: 5px; margin-bottom: 25px; }

.search-tab {

    padding: 10px 25px;

    border: none;

    background: var(--gray-100);

    color: var(--gray-600);

    border-radius: 8px;

    cursor: pointer;

    font-weight: 500;

    font-size: 14px;

    transition: all 0.3s ease;

}

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

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

.form-group label {

    display: block;

    font-size: 12px;

    font-weight: 600;

    color: var(--gray-600);

    text-transform: uppercase;

    letter-spacing: 0.5px;

    margin-bottom: 8px;

}

.form-group input, .form-group select {

    width: 100%;

    padding: 14px 16px;

    border: 2px solid var(--gray-200);

    border-radius: 8px;

    font-size: 14px;

    transition: all 0.3s ease;

}

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

.search-btn {

    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);

    color: var(--navy-dark);

    border: none;

    padding: 14px 30px;

    border-radius: 8px;

    cursor: pointer;

    font-weight: 600;

    font-size: 14px;

    display: flex;

    align-items: center;

    gap: 8px;

    transition: all 0.3s ease;

}

.search-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4); }



/* Sections */

.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }

.section-label { color: var(--gold); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }

.section-title { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--navy-dark); margin-bottom: 15px; }

.section-subtitle { color: var(--gray-600); font-size: 16px; }



/* Services */

.services { padding: 80px 40px; background: var(--white); }

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

.service-card {

    background: var(--cream);

    border-radius: 12px;

    padding: 30px;

    transition: all 0.3s ease;

    border: 1px solid transparent;

}

.service-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 15px 40px rgba(26, 39, 68, 0.1); }

.service-icon {

    width: 60px;

    height: 60px;

    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

}

.service-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--navy-dark); margin-bottom: 10px; }

.service-card p { color: var(--gray-600); font-size: 14px; line-height: 1.6; }



/* Property Types */

.property-types { padding: 80px 40px; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); }

.property-types .section-title { color: var(--white); }

.property-types .section-subtitle { color: rgba(255, 255, 255, 0.7); }

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

.type-card {

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(201, 162, 39, 0.2);

    border-radius: 16px;

    padding: 40px 30px;

    text-align: center;

    transition: all 0.3s ease;

}

.type-card:hover { background: rgba(201, 162, 39, 0.1); border-color: var(--gold); transform: translateY(-5px); }

.type-icon {

    width: 80px;

    height: 80px;

    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

}

.type-icon img { filter: brightness(0) invert(0.15) !important; }

.type-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--white); margin-bottom: 10px; }

.type-card p { color: rgba(255, 255, 255, 0.7); font-size: 14px; }



/* Agents */

.agents { padding: 80px 40px; background: var(--cream); }

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

.agents-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; }

.agent-card {

    background: var(--white);

    border-radius: 16px;

    overflow: hidden;

    text-align: center;

    transition: all 0.3s ease;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

}

.agent-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(26, 39, 68, 0.15); }

.agent-photo { height: 200px; overflow: hidden;

    width: 100%;

    height: 200px;

    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);

    display: flex;

    align-items: center;

    justify-content: center;

}

.agent-initials {

    width: 80px;

    height: 80px;

    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: 'Playfair Display', serif;

    font-size: 28px;

    font-weight: 700;

    color: var(--navy-dark);

}

.agent-info { padding: 25px 20px; }

.agent-info h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--navy-dark); margin-bottom: 5px; }

.agent-title { color: var(--gold-dark); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }

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

.agent-btn {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: var(--cream);

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    transition: all 0.3s ease;

}

.agent-btn:hover { background: var(--gold); }



/* Communities */

.communities { padding: 80px 40px; background: var(--white); }

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

.community-tag {

    background: var(--cream);

    padding: 15px 20px;

    border-radius: 8px;

    text-align: center;

    font-weight: 500;

    color: var(--navy);

    transition: all 0.3s ease;

    cursor: pointer;

}

.community-tag:hover { background: var(--gold); color: var(--navy-dark); }



/* Testimonials */

.testimonials { padding: 80px 40px; background: var(--cream); }

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

.testimonial-card { background: var(--white); border-radius: 16px; padding: 35px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); }

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

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

.author-avatar {

    width: 50px;

    height: 50px;

    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gold);

    font-weight: 600;

}

.author-name { font-weight: 600; color: var(--navy-dark); }

.testimonial-author small { color: var(--gray-600); }



/* CTA */

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

.cta h2 { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--white); margin-bottom: 20px; }

.cta p { color: rgba(255, 255, 255, 0.8); font-size: 18px; max-width: 600px; margin: 0 auto 30px; }

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



/* Footer */

footer { background: var(--navy-dark); padding: 60px 40px 30px; }

.footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; }

.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--white); margin-bottom: 15px; }

.footer-brand p { color: rgba(255, 255, 255, 0.7); font-size: 14px; line-height: 1.7; }

.footer-column h4 { color: var(--gold); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }

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

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

.footer-column a { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 14px; transition: color 0.3s ease; }

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

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; color: rgba(255, 255, 255, 0.7); font-size: 14px; margin-bottom: 12px; }

.footer-bottom {

    max-width: 1400px;

    margin: 40px auto 0;

    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: rgba(255, 255, 255, 0.5);

    font-size: 13px;

}

.footer-bottom a { color: var(--gold-light); text-decoration: none; }



/* Responsive */

@media (max-width: 1200px) {

    .services-grid, .types-grid { grid-template-columns: repeat(2, 1fr); }

    .agents-grid, .agents-grid-3 { grid-template-columns: repeat(3, 1fr); }

    .communities-grid { grid-template-columns: repeat(4, 1fr); }

    .hero-content { grid-template-columns: 1fr; }

    .search-form { grid-template-columns: 1fr 1fr; }

}

@media (max-width: 768px) {

    .services-grid, .types-grid, .testimonials-grid { grid-template-columns: 1fr; }

    .agents-grid, .agents-grid-3 { grid-template-columns: repeat(2, 1fr); }

    .communities-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-content { grid-template-columns: 1fr; }

    .header-main { flex-direction: column; gap: 20px; }

    nav { flex-wrap: wrap; justify-content: center; }

    .search-form { grid-template-columns: 1fr; }

}




/* Agent Cards Updated */

a.agent-card { text-decoration: none; color: inherit; display: block; }

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

.agent-photo img { width: 100%; height: 200px; object-fit: cover; object-position: center 20%; }

.agent-bio { font-size: 13px; color: var(--gray-600); line-height: 1.5; margin: 10px 0 15px; }

.agent-contact-info { font-size: 12px; color: var(--gray-600); display: flex; flex-direction: column; gap: 5px; }

.agent-contact-info span { display: flex; align-items: center; gap: 6px; }

.agent-contact-info img { filter: brightness(0) saturate(100%) invert(50%); }



/* Agent Profile Pages */

.agent-profile { max-width: 1000px; margin: 0 auto; padding: 80px 40px; }

.agent-profile-header { display: flex; gap: 40px; margin-bottom: 40px; align-items: flex-start; }

.agent-profile-photo { flex-shrink: 0; }

.agent-profile-photo img { max-width: 280px; height: auto; border-radius: 12px; box-shadow: 0 10px 40px rgba(26, 39, 68, 0.2); }

.agent-initials-lg { width: 280px; height: 350px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 80px; font-weight: 700; color: var(--navy-dark); box-shadow: 0 10px 40px rgba(26, 39, 68, 0.2); }

.agent-profile-info h1 { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--navy-dark); margin-bottom: 10px; }

.agent-profile-title { font-size: 18px; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }

.agent-profile-contact { display: flex; flex-direction: column; gap: 12px; font-size: 16px; color: var(--gray-600); }

.agent-profile-contact div { display: flex; align-items: center; gap: 10px; }

.agent-profile-contact img { filter: brightness(0) saturate(100%) invert(50%); }

.agent-profile-contact a { color: var(--navy); text-decoration: none; }

.agent-profile-contact a:hover { color: var(--gold-dark); }

.agent-profile-bio h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--navy-dark); margin-bottom: 20px; }

.agent-profile-bio h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy-dark); margin: 30px 0 15px; }

.agent-profile-bio p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 15px; }

.agent-profile-bio ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

.agent-profile-bio li { font-size: 15px; color: var(--gray-600); padding-left: 25px; position: relative; }

.agent-profile-bio li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: bold; }



@media (max-width: 768px) {

    .agent-profile-header { flex-direction: column; align-items: center; text-align: center; }

    .agent-profile-contact { align-items: center; }

    .agent-profile-bio ul { grid-template-columns: 1fr; }

}



.ticker-item a {

    color: inherit;

    text-decoration: none;

    display: flex;

    align-items: center;

    gap: 8px;

}

.ticker-item a:hover {

    text-decoration: underline;

}



/* Property Detail Page */

.back-link { color: #d4a84b; text-decoration: none; font-weight: 500; display: inline-block; margin-bottom: 30px; }

.back-link:hover { text-decoration: underline; }

.property-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }

.property-title-block { flex: 1; min-width: 300px; }

.property-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: #fff; margin: 0 0 12px 0; }

.property-location { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin: 0; }

.property-price-block { text-align: right; }

.property-price { font-size: 2.8rem; font-weight: 700; color: #d4a84b; }

.property-detail-badge { background: #d4a84b; color: #1a2332; padding: 8px 18px; border-radius: 4px; font-weight: 700; font-size: 0.8rem; display: inline-block; margin-top: 12px; }

.main-photo { width: 100%; height: 500px; background-size: cover; background-position: center; border-radius: 12px; margin-bottom: 15px; }

.photo-thumbnails { display: flex; gap: 12px; overflow-x: auto; padding: 5px 0; margin-bottom: 40px; }

.photo-thumb { width: 140px; height: 90px; border-radius: 8px; background-size: cover; background-position: center; flex-shrink: 0; border: 3px solid rgba(255,255,255,0.2); cursor: pointer; }

.no-photo-placeholder { width: 100%; height: 400px; background: linear-gradient(135deg, #243044, #1a2332); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 40px; color: rgba(255,255,255,0.2); font-size: 1.5rem; }

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

.detail-card { background: #243044; border-radius: 12px; padding: 35px; margin-bottom: 30px; }

.card-title { font-size: 1.4rem; color: #fff; margin: 0 0 25px 0; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.1); }

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

.detail-item { text-align: center; padding: 25px 15px; background: rgba(212,168,75,0.1); border-radius: 10px; }

.detail-value { font-size: 1.4rem; font-weight: 700; color: #d4a84b; }

.detail-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 6px; }

.description-text { line-height: 1.9; color: rgba(255,255,255,0.8); }

.property-map { height: 350px; border-radius: 10px; }

.property-agent-card { background: #243044; border-radius: 12px; padding: 30px; text-align: center; margin-bottom: 25px; }

.agent-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid #d4a84b; margin-bottom: 20px; }

.agent-initials { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, #d4a84b, #b8923a); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; font-weight: 700; color: #1a2332; }

.agent-name { color: #fff; margin: 0 0 5px 0; font-size: 1.4rem; }

.agent-license { color: rgba(255,255,255,0.4); margin: 0 0 20px 0; font-size: 0.8rem; }

.agent-phone-btn { display: block; background: #d4a84b; color: #1a2332; padding: 16px 25px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }

.agent-email-btn { display: block; background: transparent; color: #d4a84b; padding: 14px 25px; border-radius: 8px; text-decoration: none; font-weight: 600; border: 2px solid #d4a84b; }

.property-id-card { background: #243044; border-radius: 12px; padding: 25px 30px; }

.id-label { color: rgba(255,255,255,0.5); margin: 0 0 8px 0; font-size: 0.75rem; text-transform: uppercase; }

.id-value { font-family: monospace; color: #d4a84b; margin: 0; font-size: 0.9rem; }

@media (max-width: 960px) {

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

    .property-header { flex-direction: column; }

    .property-price-block { text-align: left; }

}




/* Property Badges */

.property-badge {

    background: #d4a84b;

    color: #1a2332;

    padding: 6px 14px;

    border-radius: 4px;

    font-weight: 700;

    font-size: 0.75rem;

    text-transform: uppercase;

}

.property-badge-positioned {

    position: absolute;

    top: 15px;

    left: 15px;

}

.property-badge-detail {

    display: inline-block;

    margin-top: 12px;

    padding: 8px 18px;

    font-size: 0.8rem;

}



/* Property Detail Page */

.back-link { color: #d4a84b; text-decoration: none; font-weight: 500; display: inline-block; margin-bottom: 30px; }

.back-link:hover { text-decoration: underline; }

.property-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }

.property-title-block { flex: 1; min-width: 300px; }

.property-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: #fff; margin: 0 0 12px 0; }

.property-location { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin: 0; }

.property-price-block { text-align: right; }

.property-price { font-size: 2.8rem; font-weight: 700; color: #d4a84b; }

.main-photo { width: 100%; height: 500px; background-size: cover; background-position: center; border-radius: 12px; margin-bottom: 15px; }

.photo-thumbnails { display: flex; gap: 12px; overflow-x: auto; padding: 5px 0; margin-bottom: 40px; }

.photo-thumb { width: 140px; height: 90px; border-radius: 8px; background-size: cover; background-position: center; flex-shrink: 0; border: 3px solid rgba(255,255,255,0.2); cursor: pointer; }

.no-photo-placeholder { width: 100%; height: 400px; background: linear-gradient(135deg, #243044, #1a2332); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 40px; color: rgba(255,255,255,0.2); font-size: 1.5rem; }

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

.detail-card { background: #243044; border-radius: 12px; padding: 35px; margin-bottom: 30px; }

.card-title { font-size: 1.4rem; color: #fff; margin: 0 0 25px 0; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.1); }

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

.detail-item { text-align: center; padding: 25px 15px; background: rgba(212,168,75,0.1); border-radius: 10px; }

.detail-value { font-size: 1.4rem; font-weight: 700; color: #d4a84b; }

.detail-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 6px; }

.description-text { line-height: 1.9; color: rgba(255,255,255,0.8); }

.property-map { height: 350px; border-radius: 10px; }

.property-agent-card { background: #243044; border-radius: 12px; padding: 30px; text-align: center; margin-bottom: 25px; }

.agent-photo-detail { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid #d4a84b; margin-bottom: 20px; }

.agent-initials-detail { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, #d4a84b, #b8923a); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; font-weight: 700; color: #1a2332; }

.agent-name-detail { color: #fff; margin: 0 0 5px 0; font-size: 1.4rem; }

.agent-license-detail { color: rgba(255,255,255,0.4); margin: 0 0 20px 0; font-size: 0.8rem; }

.agent-phone-btn { display: block; background: #d4a84b; color: #1a2332; padding: 16px 25px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }

.agent-email-btn { display: block; background: transparent; color: #d4a84b; padding: 14px 25px; border-radius: 8px; text-decoration: none; font-weight: 600; border: 2px solid #d4a84b; }

.property-id-card { background: #243044; border-radius: 12px; padding: 25px 30px; }

.id-label { color: rgba(255,255,255,0.5); margin: 0 0 8px 0; font-size: 0.75rem; text-transform: uppercase; }

.id-value { font-family: monospace; color: #d4a84b; margin: 0; font-size: 0.9rem; }



@media (max-width: 960px) {

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

    .property-header { flex-direction: column; }

    .property-price-block { text-align: left; }

}




/* Agent Card Full Size Photos */

.agent-card-full { display: flex; flex-direction: column; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; color: inherit; }

.agent-card-full:hover { transform: translateY(-8px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

.agent-photo-full { width: 100%; height: 280px; overflow: hidden; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); }

.agent-photo-full img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

.agent-photo-full .agent-initials { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 72px; font-weight: 700; color: var(--navy-dark); }




/* Hamburger - hidden on desktop, shown in media query */
.hamburger { display: none; }

/* Sticky Ticker + Header */

.ticker { position: sticky; top: 0; z-index: 1001; }

header { position: sticky; top: 40px; z-index: 1000; }



/* Ticker Pause on Hover */

.ticker:hover .ticker-content { animation-play-state: paused; }



/* Ticker Links */

.ticker-item a { color: inherit; text-decoration: none; }

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



/* Mobile Responsive */

@media (max-width: 768px) {

    /* Header */

    .header-top { display: none; }

    header { top: 0; }

    .ticker { font-size: 12px; }

    .ticker-item { padding: 0 20px; }

    

    /* Nav */

    .main-nav { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--navy-dark); flex-direction: column; justify-content: center; align-items: center; gap: 30px; z-index: 999; }

    .main-nav.active { display: flex; }

    .main-nav a { font-size: 1.5rem; }

    

    /* Hamburger */

    .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1001; }

    .hamburger span { width: 25px; height: 3px; background: var(--white); transition: 0.3s; }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }

    .hamburger.active span:nth-child(2) { opacity: 0; }

    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

    

    /* Header CTA */

    .header-cta { gap: 10px; }

    .header-cta .phone-text { display: none; }

    .header-cta .btn-primary { padding: 8px 15px; font-size: 0.85rem; }

    

    /* Logo */

    .logo h1 { font-size: 1.3rem; }

    .logo p { font-size: 0.65rem; }

}







/* Mobile hamburger positioning - move to left of logo */

@media (max-width: 768px) {

    .header-main { 

        display: flex; 

        flex-direction: row !important; 

        align-items: center;

        justify-content: flex-start;

        gap: 10px;

    }

    .hamburger { order: -1; flex-shrink: 0; }

    .logo { order: 0; flex-grow: 0; }

    .main-nav { order: 1; }

    .header-cta { order: 2; margin-left: auto; }

}




/* Hide Free Consultation button on mobile */

@media (max-width: 768px) {

    .header-cta { display: none; }

}




/* Reduce hero spacing on mobile since header-top is hidden */

@media (max-width: 768px) {

    .hero { padding-top: 40px; }

    .hero-content { padding-top: 20px; }

}




/* Stacked CR/ES Logo */

.logo-icon {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    line-height: 1;

    font-size: 22px;

    padding: 8px 10px;

}

.logo-icon span {

    display: block;

    letter-spacing: 2px;

}




/* Larger logo styling */

.logo-icon {

    width: 60px;

    height: 60px;

    font-size: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.logo-text h1 {

    font-size: 2rem;

    letter-spacing: 3px;

}

.logo-text span {

    font-size: 0.75rem;

    letter-spacing: 2px;

}




/* Larger C in logo box */

.logo-icon {

    font-size: 42px;

}




/* Import Cinzel for logo C */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&display=swap');



/* Apply Cinzel to logo C */

.logo-icon {

    font-family: 'Cinzel', serif;

    font-weight: 900;

    font-size: 44px;

}




/* Logo C - no box, gold, much larger */

.logo-icon {

    background: none !important;

    color: var(--gold) !important;

    font-size: 88px !important;

    width: auto !important;

    height: auto !important;

    padding: 0 !important;

    margin-right: 15px !important;

    border-radius: 0 !important;

}




/* Logo C - gold box, blue C, large */

.logo-icon {

    background: var(--gold) !important;

    color: var(--navy-dark) !important;

    font-size: 56px !important;

    width: 80px !important;

    height: 80px !important;

    padding: 0 !important;

    margin-right: 15px !important;

    border-radius: 8px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

}




/* ===== CONTACT PAGE STYLES ===== */



/* Contact Hero */

.contact-hero {

    background: var(--navy-dark);

    padding: 80px 40px;

    text-align: center;

}

.contact-hero-content {

    max-width: 700px;

    margin: 0 auto;

}

.contact-hero h1 {

    font-family: 'Playfair Display', serif;

    font-size: 3.5rem;

    color: var(--gold);

    margin-bottom: 20px;

}

.contact-hero p {

    font-size: 1.2rem;

    color: rgba(255,255,255,0.8);

    line-height: 1.7;

}



/* Trust Stats Bar */

.trust-stats-bar {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 40px;

    padding: 30px 40px;

    background: var(--navy);

    border-bottom: 1px solid rgba(255,255,255,0.1);

}

.trust-stat {
    color: #ffffff !important;

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--white);

    font-size: 1rem;

}

.trust-stat strong {

    color: var(--gold);

}

.trust-icon {

    width: 24px;

    height: 24px;

    filter: brightness(0) saturate(100%) invert(76%) sepia(40%) saturate(600%) hue-rotate(5deg) brightness(95%) contrast(90%);

}



/* Contact Main Grid */

.contact-main {

    padding: 60px 40px;

    background: var(--white);

}

.contact-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    max-width: 1200px;

    margin: 0 auto;

}

.contact-office h2 {

    font-family: 'Playfair Display', serif;

    font-size: 2rem;

    color: var(--navy-dark);

    margin-bottom: 30px;

}

.office-details {

    display: flex;

    flex-direction: column;

    gap: 25px;

}

.office-item {

    display: flex;

    gap: 15px;

    align-items: flex-start;

}

.office-item img {

    width: 24px;

    height: 24px;

    filter: brightness(0) saturate(100%) invert(40%) sepia(80%) saturate(400%) hue-rotate(10deg);

    margin-top: 4px;

}

.office-item strong {

    display: block;

    color: var(--navy-dark);

    margin-bottom: 5px;

    font-size: 0.9rem;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.office-item p {

    color: #555;

    line-height: 1.6;

    margin: 0;

}

.contact-map {

    min-height: 400px;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 10px 40px rgba(0,0,0,0.1);

}

.contact-map iframe {

    width: 100%;

    height: 100%;

    min-height: 400px;

}



/* Meet The Team */

.contact-team {

    padding: 80px 40px;

    background: var(--off-white);

    text-align: center;

}

.contact-team h2 {

    font-family: 'Playfair Display', serif;

    font-size: 2.5rem;

    color: var(--navy-dark);

    margin-bottom: 10px;

}

.team-subtitle {

    color: #666;

    font-size: 1.1rem;

    margin-bottom: 50px;

}

.team-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    max-width: 1000px;

    margin: 0 auto;

}

.team-card {

    background: var(--white);

    border-radius: 12px;

    padding: 40px 30px;

    box-shadow: 0 5px 30px rgba(0,0,0,0.08);

    transition: transform 0.3s, box-shadow 0.3s;

}

.team-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 50px rgba(0,0,0,0.12);

}

.team-avatar {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--navy-dark);

    font-size: 1.5rem;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

}

.team-card h3 {

    font-family: 'Playfair Display', serif;

    font-size: 1.4rem;

    color: var(--navy-dark);

    margin-bottom: 5px;

}

.team-title {

    display: block;

    color: #666;

    font-size: 0.95rem;

    margin-bottom: 5px;

}

.team-designation {

    display: inline-block;

    background: var(--gold);

    color: var(--navy-dark);

    font-size: 0.75rem;

    font-weight: 700;

    padding: 4px 12px;

    border-radius: 20px;

    margin-bottom: 20px;

}

.team-contact {

    border-top: 1px solid #eee;

    padding-top: 20px;

    margin-top: 15px;

}

.team-contact p {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: #555;

    font-size: 0.9rem;

    margin: 8px 0;

}

.team-contact img {

    width: 16px;

    height: 16px;

    filter: brightness(0) saturate(100%) invert(40%) sepia(80%) saturate(400%) hue-rotate(10deg);

}

.team-link {

    display: inline-block;

    margin-top: 15px;

    color: var(--gold-dark);

    font-weight: 600;

    text-decoration: none;

    transition: color 0.3s;

}

.team-link:hover {

    color: var(--navy-dark);

}



/* Contact Testimonial */

.contact-testimonial {

    padding: 80px 40px;

    background: var(--navy-medium);

}

.testimonial-quote {

    max-width: 800px;

    margin: 0 auto;

    text-align: center;

}

.quote-icon {

    width: 50px;

    height: 50px;

    filter: brightness(0) saturate(100%) invert(76%) sepia(40%) saturate(600%) hue-rotate(5deg) brightness(95%) contrast(90%);

    margin-bottom: 30px;

}

.testimonial-quote blockquote {

    font-family: 'Playfair Display', serif;

    font-size: 1.5rem;

    font-style: italic;

    color: var(--white);

    line-height: 1.8;

    margin: 0 0 30px 0;

}

.testimonial-attribution {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

}

.testimonial-attribution .author-avatar {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--navy-dark);

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

}

.testimonial-attribution strong {

    display: block;

    color: var(--white);

}

.testimonial-attribution span {

    color: var(--gold);

    font-size: 0.9rem;

}



/* Glyph icon sizes */

.gf-icon-xs {

    width: 16px;

    height: 16px;

}

.gf-icon-sm {

    width: 20px;

    height: 20px;

}



/* Mobile Responsive */

@media (max-width: 768px) {

    .contact-hero { padding: 60px 20px; }

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

    .trust-stats-bar { gap: 20px; padding: 20px; }

    .trust-stat {
    color: #ffffff !important; font-size: 0.85rem; }

    .contact-main { padding: 40px 20px; }

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

    .contact-map { min-height: 300px; }

    .contact-team { padding: 60px 20px; }

    .team-grid { grid-template-columns: 1fr; max-width: 350px; }

    .contact-testimonial { padding: 60px 20px; }

    .testimonial-quote blockquote { font-size: 1.2rem; }

}

.trust-stat span { color: #ffffff !important; }
