@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* --- LUXURY DESIGN SYSTEM TOKENS --- */
:root {
    --primary: #22252a;        /* Warm Charcoal Slate */
    --primary-light: #2d3137;
    --primary-dark: #16181b;
    --secondary: #e07a5f;      /* Warm Ochre/Orange */
    --secondary-hover: #d16b50;
    --accent: #81b29a;         /* Muted Sage */
    --background: #fdfcf7;     /* Premium Warm Off-White */
    --surface: #ffffff;
    --text-main: #2b2d42;      /* Dark Charcoal */
    --text-muted: #6c757d;     /* Slate Gray */
    --border: #ece8df;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    
    --shadow-soft: 0 10px 30px rgba(34, 37, 42, 0.04);
    --shadow-hover: 0 20px 40px rgba(34, 37, 42, 0.08);
    
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}

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

button, input, textarea, select {
    font-family: inherit;
    outline: none;
}

/* --- LAYOUT UTILITIES --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 90px 0;
}

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

.section-header {
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-header span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 12px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* --- TOP BARS --- */
.topbar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info {
    display: flex;
    gap: 24px;
}

.topbar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-info svg {
    width: 14px;
    height: 14px;
    color: var(--secondary);
}

/* --- HEADER & NAVIGATION --- */
.header {
    width: 100%;
    z-index: 100;
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.4s ease-out;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo svg {
    width: 24px;
    height: 24px;
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-quick);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
}

/* --- HERO SLIDER --- */
.hero {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(34, 37, 42, 0.7) 0%, rgba(34, 37, 42, 0.4) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-social-links {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 5;
}

.hero-social-links a {
    color: white;
    opacity: 0.7;
}

.hero-social-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.hero-content {
    max-width: 750px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.hero-bottom-info {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    z-index: 5;
}

/* --- TIMELESS DESIGN (STRUCTURE) --- */
.design-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.design-images {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    align-items: flex-end;
}

.design-images img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.design-text {
    padding-left: 20px;
}

.design-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.design-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.design-checklist {
    list-style: none;
    margin-bottom: 35px;
}

.design-checklist li {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.design-checklist svg {
    width: 16px;
    height: 16px;
    color: var(--secondary);
}

/* BLUE STATS BAR */
.stats-bar-box {
    background-color: var(--primary);
    color: white;
    border-radius: var(--radius-md);
    padding: 40px;
    margin-top: 60px;
    box-shadow: var(--shadow-hover);
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stats-bar-item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stats-bar-item:last-child {
    border: none;
}

.stats-bar-icon {
    color: var(--secondary);
    margin-bottom: 10px;
}

.stats-bar-icon svg {
    width: 32px;
    height: 32px;
}

.stats-bar-item h4 {
    font-size: 1.4rem;
    color: white;
    font-weight: 800;
}

.stats-bar-item p {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

/* --- KEY FEATURES SECTION --- */
.features-section {
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 37, 42, 0.95) 0%, rgba(34, 37, 42, 0.85) 100%);
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.features-left h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.features-left p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.play-btn-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}

.play-circle {
    width: 60px;
    height: 60px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(224, 122, 95, 0.4);
    transition: var(--transition-quick);
}

.play-circle:hover {
    transform: scale(1.08);
}

.features-counters {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.feature-counter-item h3 {
    font-size: 2.2rem;
    color: var(--secondary);
    font-weight: 800;
}

.feature-counter-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(224, 122, 95, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature-card-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.feature-card a {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
}

/* --- RESIDENTIAL FLOOR PLANS --- */
.floorplan-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 4px;
    background-color: var(--primary);
    color: white;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: var(--transition-quick);
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--secondary);
}

.floorplan-content-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.floorplan-table {
    width: 100%;
    border-collapse: collapse;
}

.floorplan-table tr {
    border-bottom: 1px solid var(--border);
}

.floorplan-table tr:last-child {
    border: none;
}

.floorplan-table td {
    padding: 16px 10px;
    font-size: 0.95rem;
}

.floorplan-table td.label-cell {
    font-weight: 700;
    color: var(--primary);
    width: 40%;
}

.floorplan-table td.value-cell {
    color: var(--text-muted);
    text-align: right;
}

.floorplan-blueprint {
    border: 1px solid var(--border);
    background-color: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
}

.floorplan-blueprint svg {
    max-width: 100%;
    max-height: 100%;
}

/* --- APARTMENTS GRID --- */
.apartments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.apartment-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

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

.apartment-img-wrapper {
    height: 200px;
    position: relative;
    background-color: #eee;
}

.apartment-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apartment-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--primary);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.apartment-body {
    padding: 24px;
}

.apartment-body h4 {
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.apartment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.apartment-footer a {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
}

/* --- BANNER CTA --- */
.banner-cta {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}

.banner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 37, 42, 0.4);
    z-index: 1;
}

.banner-cta-card {
    position: relative;
    z-index: 2;
    max-width: 500px;
    background-color: rgba(34, 37, 42, 0.95);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--secondary);
    color: white;
    padding: 50px;
    box-shadow: var(--shadow-hover);
}

.banner-cta-card h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.banner-cta-card h5 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.banner-cta-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* --- CONSULTANTS SECTION --- */
.consultants-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.agent-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.agent-list-item {
    background-color: var(--surface);
    border: 1px solid var(--border);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: var(--transition-quick);
}

.agent-list-item.active, .agent-list-item:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.agent-list-item h4 {
    font-size: 1.15rem;
    transition: var(--transition-quick);
}

.agent-list-item.active h4 {
    color: white;
}

.agent-list-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.agent-list-item.active span {
    color: var(--secondary);
}

.agent-detail-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.agent-avatar {
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-info h3 {
    font-size: 2rem;
    margin-bottom: 4px;
}

.agent-info h5 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.agent-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.agent-contact-list {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.agent-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--primary);
}

.agent-contact-list svg {
    width: 16px;
    height: 16px;
    color: var(--secondary);
}

/* --- CONTACT SECTION --- */
.contact-section-bg {
    background-color: #faf9f5;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-panel h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info-panel p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-agent-widget {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.contact-agent-widget img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.contact-agent-widget h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-agent-widget span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- BLOG (INSIGHTS) --- */
.blog-card-large {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.blog-card-large .blog-img-wrapper {
    height: 300px;
    position: relative;
}

.blog-card-large .blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-large .blog-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--secondary);
    color: white;
    padding: 6px 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 4px;
}

.blog-card-large .blog-body {
    padding: 30px;
}

.blog-meta-row {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-list-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-item-side {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    align-items: center;
}

.blog-item-side-img {
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: #eee;
}

.blog-item-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-item-side h4 {
    font-size: 0.95rem;
    margin-top: 6px;
    line-height: 1.4;
}

/* --- FOOTER TICKER --- */
.footer-ticker {
    background-color: #f7f5ef;
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ticker-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ticker-logo-item {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(34, 37, 42, 0.25);
}

/* --- FOOTER --- */
.footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.footer-logo svg {
    color: var(--secondary);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* --- ANIMATIONS --- */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .design-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .stats-bar-item {
        border-right: none;
    }
    .features-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .floorplan-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .consultants-grid {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--surface);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        font-size: 1.15rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-social-links {
        display: none; /* Hide side social links on smaller screens */
    }
    .agent-detail-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .agent-avatar {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .stats-bar-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
