/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2c2c2c;
    --accent: #d97642;
    --gold: #c89c4a;
    --cream: #f9f6f1;
    --gray: #6b6b6b;
    --light-gray: #ede8e1;
    --green: #5a8f5e;
    --dark-brown: #3e2c1e;
    --warm-white: #fffdfb;
    --red: #c41e3a;
}

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background: var(--cream);
    overflow-x: hidden;
}

/* Navigation - Duck Egg Blue/Green Design */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #c8d5d0 0%, #b8c9c4 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(200, 156, 74, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.nav-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: 0.8rem 5%;
}

/* Logo - Dark on Duck Egg */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #2c2c2c;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-decoration: none;
}

.logo::before {
    content: '';
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.logo span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.logo:hover {
    transform: translateX(3px);
}

/* Banner Center - Adjusted for Duck Egg */
.nav-banner {
    height: 45px;
    width: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
    opacity: 1;
    position: relative;
    z-index: 2;
}

.nav-banner:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 12px rgba(200, 156, 74, 0.3));
}

/* Right Side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Download Button - Gold on Black */
.download-btn {
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(200, 156, 74, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200, 156, 74, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.download-btn .btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.download-btn:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
}

.download-btn .btn-text {
    font-weight: 600;
}

/* Back Button - ca Download Button de la index */
.back-btn {
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(200, 156, 74, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.back-btn:hover::before {
    left: 100%;
}

.back-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200, 156, 74, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Hero Section - Elegant Black */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Subtle animated gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top right, rgba(200, 156, 74, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(217, 118, 66, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    animation: subtleGlow 8s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Decorative line accent */
.hero::after {
    content: '';
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--gold) 30%, var(--accent) 70%, transparent 100%);
    opacity: 0.6;
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Premium label */
.hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Main heading - elegant typography */
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0.5;
}

/* Elegant divider */
.hero-divider {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2rem;
    opacity: 0;
    animation: expandLine 0.8s ease-out 0.9s forwards;
}

@keyframes expandLine {
    from { width: 0; opacity: 0; }
    to { width: 80px; opacity: 0.7; }
}

/* Refined subtitle */
.hero-content .subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 1.1s forwards;
    line-height: 1.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0;
}

.hero-content .subtitle strong {
    color: var(--gold);
    font-size: 1.3rem;
    display: inline;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Stats minimal - at bottom */
.hero-stats {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4rem;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
    display: block;
    margin-bottom: 0.3rem;
}

.hero-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
}

/* Mission Section */
.mission {
    padding: 6rem 5%;
    background: var(--warm-white);
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.mission-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 4rem;
}

.mission-intro strong {
    color: var(--accent);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mission-item {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.mission-item p {
    color: var(--gray);
    line-height: 1.8;
}

.mission-item strong {
    color: var(--primary);
    font-weight: 600;
}

.mission-item em {
    color: var(--accent);
    font-style: italic;
}

/* Coverage Section */
.coverage {
    padding: 6rem 5%;
    background: linear-gradient(180deg, #f9f6f1 0%, #f5ede3 100%);
}

.coverage-content {
    max-width: 1200px;
    margin: 0 auto;
}

.coverage-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.coverage-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 4rem;
}

.coverage-subtitle strong {
    color: var(--accent);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.coverage-area {
    background: var(--warm-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(62, 44, 30, 0.1);
}

.coverage-area h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 1rem;
}

.area-zones {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.zone-group h4 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.zone-group p {
    color: var(--gray);
    line-height: 2;
}

.zone-group strong {
    color: var(--primary);
    font-weight: 600;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--warm-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(62, 44, 30, 0.1);
}

.coverage-stat {
    text-align: center;
}

.stat-big {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 0.8rem;
    font-weight: 500;
}

/* Renovation Section */
.renovation {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #2c2c2c 0%, #3e2c1e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.renovation::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 118, 66, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.renovation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 118, 66, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.renovation-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.renovation-header {
    text-align: center;
    margin-bottom: 4rem;
}

.renovation-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.renovation-header .subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.renovation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.renovation-services {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.renovation-services h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.service-list {
    display: grid;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.service-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.service-text h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.service-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.renovation-features {
    background: rgba(217, 118, 66, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--accent);
}

.renovation-features h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 2rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.feature-item::before {
    content: "✓";
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: bold;
}

.renovation-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-top: 3rem;
}

.renovation-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.renovation-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.renovation-cta .contact-btns {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent) 0%, #c86738 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(217, 118, 66, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #c86738 0%, #b85a2f 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 118, 66, 0.5);
}

/* Agents Section */
.agents {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.agents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.agent-card {
    background: var(--warm-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(62, 44, 30, 0.12);
    transition: all 0.3s;
    border-top: 5px solid var(--accent);
}

.agent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(62, 44, 30, 0.18);
}

.agent-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.agent-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    font-weight: bold;
}

.agent-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.agent-title {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.agent-location {
    font-size: 1rem;
    color: var(--gray);
}

.agent-description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.agent-zones {
    margin-bottom: 2rem;
}

.agent-zones h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.zone-tag {
    padding: 0.5rem 1rem;
    background: var(--cream);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gray);
    transition: all 0.3s;
}

.zone-tag:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border-radius: 6px;
    width: 100%;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #d97642 0%, #c86738 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(217, 118, 66, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c86738 0%, #b85a2f 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(217, 118, 66, 0.45);
}

/* Footer - Elegant & Compact */
footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 1.5rem 5% 1rem;
    text-align: center;
    margin-top: 0;
    border-top: 1px solid rgba(200, 156, 74, 0.2);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 0.3rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    margin: 0 1.5rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.3rem;
    font-style: italic;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

footer p {
    margin: 0;
}

/* Social buttons */
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.social-btn.facebook {
    background: linear-gradient(135deg, #4267B2 0%, #365899 100%);
    box-shadow: 0 4px 15px rgba(66, 103, 178, 0.3);
}
.social-btn.instagram {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}
.social-btn.tiktok {
    background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.social-btn.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Agent specific styles */
.agent-header {
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, #f9f6f1 0%, #fffdfb 50%, #f5ede3 100%);
    text-align: center;
}

.agent-header-content {
    max-width: 1000px;
    margin: 0 auto;
}

.agent-photo-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: white;
    font-weight: bold;
    box-shadow: 0 10px 40px rgba(217, 118, 66, 0.3);
}

.agent-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.agent-subtitle {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.agent-location {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.agent-intro {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Zone Navigation */
.zone-nav {
    background: var(--warm-white);
    padding: 2rem 5%;
    position: relative;
    z-index: 1;
    border-bottom: 2px solid var(--light-gray);
}

.zone-nav-content {
    max-width: 1400px;
    margin: 0 auto;
}

.zone-nav h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.zone-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.zone-link {
    padding: 0.6rem 1.2rem;
    background: var(--cream);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    text-decoration: none;
    color: var(--gray);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.zone-link:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Zones Section */
.zones-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

.zone-detailed {
    background: var(--warm-white);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(62, 44, 30, 0.1);
    border-left: 6px solid var(--accent);
}

.zone-detailed h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.zone-price-main {
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.zone-summary {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.zone-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-box {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 8px;
}

.detail-box h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.detail-box ul {
    list-style: none;
    padding: 0;
}

.detail-box li {
    padding: 0.4rem 0;
    color: var(--gray);
    line-height: 1.6;
}

.detail-box li::before {
    content: "▸ ";
    color: var(--accent);
    font-weight: bold;
    margin-right: 0.5rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pros {
    background: rgba(90, 143, 94, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--green);
}

.cons {
    background: rgba(196, 30, 58, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--red);
}

.pros h4 {
    color: var(--green);
    margin-bottom: 1rem;
}

.cons h4 {
    color: var(--red);
    margin-bottom: 1rem;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li::before {
    content: "✓ ";
    color: var(--green);
    font-weight: bold;
    margin-right: 0.5rem;
}

.cons li::before {
    content: "✗ ";
    color: var(--red);
    font-weight: bold;
    margin-right: 0.5rem;
}

.recommendation {
    background: linear-gradient(135deg, rgba(217, 118, 66, 0.15) 0%, rgba(200, 156, 74, 0.15) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--accent);
    margin-top: 2rem;
}

.recommendation h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.recommendation p {
    color: var(--primary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-content {
        gap: 1.5rem;
    }
    .logo {
        font-size: 1.3rem;
    }
    .logo::before {
        height: 25px;
    }
    .nav-banner {
        grid-column: 1 / -1;
        justify-self: center;
        height: 40px;
        order: -1;
    }
    .hero {
        min-height: 70vh;
        padding: 6rem 5% 3rem;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0.8rem 5%;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .logo {
        font-size: 1.2rem;
        justify-content: center;
    }
    .nav-banner {
        height: 35px;
    }
    .nav-right {
        justify-content: center;
        width: 100%;
    }
    .download-btn, .back-btn {
        font-size: 0.8rem;
        padding: 0.65rem 1.5rem;
    }
    .hero {
        min-height: 65vh;
        padding: 5rem 6% 3rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content .subtitle {
        font-size: 1rem;
    }
    .hero-content .subtitle strong {
        font-size: 1.15rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
        bottom: 2rem;
    }
    .mission-grid,
    .coverage-grid,
    .agents-grid,
    .renovation-grid,
    .zone-details-grid,
    .pros-cons {
        grid-template-columns: 1fr;
    }
    .coverage-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .renovation-header h2 {
        font-size: 2.2rem;
    }
    .renovation-grid {
        gap: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .renovation-cta h3 {
        font-size: 1.8rem;
    }
    .contact-btns {
        flex-direction: column;
        gap: 1rem;
    }
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
    footer {
        padding: 1.5rem 5% 1rem;
    }
    .footer-links a {
        display: inline-block;
        margin: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    .footer-tagline {
        font-size: 0.9rem;
    }
    .agent-header h1 {
        font-size: 2.5rem;
    }
    .zone-nav {
        position: static;
    }
}