/* ELEGANT GRAY/BLUE REAL ESTATE WEBSITE */

/* CSS Variables for Modern Dark/Blue Color Scheme */
:root {
    --primary-blue: #4f6fa8;
    --primary-color: #3d5a96;
    --secondary-color: #4f6fa8;
    --secondary-blue: #3d5a96;
    --light-blue: #6b84c7;
    --dark-gray: #1e293b;
    --medium-gray: #334155;
    --light-gray: #64748b;
    --soft-gray: #f8fafc;
    --darker-bg: #0f172a;
    --dark-surface: #1e293b;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --accent-gold: #f59e0b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--soft-gray) 50%, var(--darker-bg) 100%);
}

/* Universal responsive images */
img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container - Mobile first */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* NAVIGATION - MOBILE FIRST */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    left: 0;
    right: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

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

.nav-logo h2 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.team-name {
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-contact .phone {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 111, 165, 0.3);
    display: flex;
    align-items: center;
    height: fit-content;
}

.nav-contact .phone:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--light-blue));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 111, 165, 0.4);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

.social-icons {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    height: 100%;
}

.social-icon {
    color: var(--primary-blue);
    font-size: 1.6rem;
    transition: color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0.5rem;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Mobile Navigation - Always visible hamburger on mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    gap: 4px;
    padding: 5px;
}

.bar,
.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), 
                url('background .png') center/cover no-repeat;
    color: white;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}


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

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: #4f6fa8;
    color: white;
}

/* Hero page specific button styling */
.hero .btn-primary {
    background: #fff;
    color: #4f6fa8;
}

.hero .btn-primary:hover {
    background: #f8fafc;
}

.btn-primary:hover {
    background: #3d5a96;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #4f6fa8;
}

.btn-outline {
    background: transparent;
    color: #4f6fa8;
    border: 2px solid #4f6fa8;
}

.btn-outline:hover {
    background: #4f6fa8;
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
    justify-items: center;
}

.hero-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    color: var(--primary-blue);
    text-align: center;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.55rem;
    color: var(--text-dark);
    line-height: 1.1;
    text-align: center;
}

/* Section Transitions */
.section-divider {
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, var(--soft-gray) 50%, transparent 100%);
    position: relative;
}

/* Section Transitions */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(248, 250, 252, 0.8), #f8fafc);
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #f8fafc, rgba(55, 65, 81, 0.3), #374151);
    clip-path: ellipse(100% 100% at 50% 0%);
    z-index: 1;
}

.cta-section {
    position: relative;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #374151, rgba(55, 65, 81, 0.3), transparent);
    clip-path: ellipse(100% 100% at 50% 100%);
    z-index: 1;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(248, 250, 252, 0.3), #f8fafc);
    clip-path: ellipse(100% 100% at 50% 0%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.about h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Responsive Design - split screen and medium screens */
@media (max-width: 1200px) and (min-width: 769px) {
    .nav-container {
        padding: 0 20px;
        flex-wrap: nowrap;
    }
    
    .nav-contact .phone {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero {
        padding: 160px 0 100px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 200px 0 120px;
        min-height: 80vh;
        background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), 
                    url('background .png') center/cover no-repeat;
    }
    
    .about h2 {
        font-size: 2rem;
        white-space: nowrap;
    }
    
    .hero-stat {
        width: 140px !important;
        height: 140px !important;
        padding: 0.8rem !important;
    }
    
    .hero-stat .stat-number {
        font-size: 1.3rem !important;
    }
    
    .hero-stat .stat-label {
        font-size: 0.7rem !important;
    }
    
    .mobile-only {
        display: none !important;
    }
}

.about p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.stat h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4f6fa8;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

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

.realtor-photo {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    background: #374151;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}

.cta-section .btn-primary {
    background: white;
    color: #374151;
    border: 2px solid white;
}

.cta-section .btn-primary:hover {
    background: #f8fafc;
    color: #374151;
}

.cta-section .btn-outline {
    background: white;
    color: #374151;
    border: 2px solid white;
}

.cta-section .btn-outline:hover {
    background: #f8fafc;
    color: #374151;
}

/* Property Search */
.property-search,
.property-search-section {
    padding: 80px 0;
    background: white;
}

.property-search h2,
.property-search-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.property-search > .container > p,
.property-search-section > .container > p {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #64748b;
    margin-bottom: 3rem;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.search-group,
.form-group {
    margin-bottom: 1rem;
}

.search-group.full-width,
.form-group.full-width {
    grid-column: 1 / -1;
}

.search-group label,
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.search-group input,
.search-group select,
.search-group textarea,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.search-group input:focus,
.search-group select:focus,
.search-group textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4f6fa8;
}

.search-btn,
.submit-btn {
    width: 100%;
    background: #4f6fa8;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover,
.submit-btn:hover {
    background: #3d5a96;
}

/* Contact Section */
.contact {
    background: #1e293b;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact > .container > p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #60a5fa;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Styles */
.services-section,
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card > p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-card li {
    color: #64748b;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 600;
}

.service-btn {
    margin-top: auto;
}

/* Contact Form Styles */
.contact-form-section,
.contact-info-section {
    padding: 80px 0;
    background: #f8fafc;
}

.form-content {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.form-intro p {
    font-size: 1.2rem;
    color: #64748b;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-grid,
.contact-info-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #4f6fa8;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Featured Areas, Market Insights */
.featured-areas,
.market-insights {
    padding: 80px 0;
    background: #f8fafc;
}

.featured-areas h2,
.market-insights h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.areas-grid,
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.area-card,
.insight-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.area-card:hover,
.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.area-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.area-content,
.insight-card {
    padding: 2rem;
    text-align: center;
}

.area-content h3,
.insight-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.area-content p,
.insight-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.area-highlights {
    list-style: none;
    text-align: left;
}

.area-highlights li {
    color: #64748b;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.area-highlights li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 600;
}

.insight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.insight-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Pricing Styles */
.value-section,
.pricing-section,
.additional-services,
.comparison-section {
    padding: 80px 0;
}

.value-section,
.additional-services {
    background: #f8fafc;
}

.value-section h2,
.pricing-section h2,
.additional-services h2,
.comparison-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.value-grid,
.pricing-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card,
.pricing-card,
.service-pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card h3,
.pricing-card h3,
.service-pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.value-card p,
.pricing-card p,
.service-pricing-card p {
    color: #64748b;
    line-height: 1.6;
}

.pricing-card.featured {
    border: 2px solid #4f6fa8;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f6fa8;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-features ul,
.service-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.pricing-features li,
.service-features li {
    color: #64748b;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:before,
.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 600;
}

/* Performance Grid */
.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.performance-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.performance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.performance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.performance-card:hover::before {
    opacity: 1;
}

.performance-card.highlight {
    background: white;
    border: 2px solid var(--primary-color);
}

.performance-card.advantage {
    background: white;
}

.performance-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.performance-icon i {
    color: white !important;
}

.performance-stat {
    margin-bottom: 20px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-unit {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 5px;
}

.performance-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.stat-description {
    color: #374151;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.benefit-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
}

.advantage-content {
    margin-top: 20px;
}

.vs-comparison {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.vs-label {
    color: #374151;
    font-size: 14px;
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

.vs-divider {
    color: var(--text-light);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vs-advantage {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
}

/* Reviews Styles */
.review-stats {
    padding: 80px 0;
    background: #f8fafc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #4f6fa8;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #64748b;
    font-size: 0.9rem;
}

.featured-reviews {
    padding: 80px 0;
    background: white;
}

.featured-reviews h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #f8fafc;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    max-width: 400px;
    margin: 0 auto;
}

.review-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.review-rating {
    margin-bottom: 1.5rem;
}

.review-rating i {
    color: #fbbf24;
    margin-right: 0.2rem;
}

.review-card.featured .review-rating i {
    color: #fbbf24;
}

.review-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.review-card.featured h3 {
    color: white;
}

.review-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.review-author strong {
    font-weight: 700;
    color: #1e293b;
    display: block;
    margin-bottom: 0.2rem;
}

.review-card.featured .review-author strong {
    color: white;
}

.review-author span {
    font-size: 0.9rem;
    color: #64748b;
}

.review-card.featured .review-author span {
    color: rgba(255, 255, 255, 0.8);
}

/* Social Contact */
.social-contact {
    padding: 80px 0;
    background: #f8fafc;
}

.social-contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.social-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-decoration: none;
}

.social-card i {
    font-size: 2rem;
    color: #4f6fa8;
}

.social-card span {
    font-weight: 600;
    color: #1e293b;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .team-name {
        font-size: 0.8rem;
    }
    
    /* Mobile/tablet heading size fixes */
    section h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Scale down all text proportionally */
    section > .container > p,
    .service-card p,
    .testimonial-card p,
    .about-text p,
    .feature-group p,
    .contact-card p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    h3 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }
    
    h4 {
        font-size: 1rem !important;
    }
    
    /* Fix button spacing on tablets */
    .hero-buttons {
        gap: 0.75rem !important;
    }
    
    .hero-buttons .btn {
        padding: 11px 20px !important;
        font-size: 0.95rem !important;
    }
    
    .nav-contact .phone {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
        white-space: nowrap;
        min-width: fit-content;
        display: inline-block;
        transform: none !important;
        transition: background-color 0.3s ease !important;
    }
    
    .nav-contact .phone:hover {
        transform: none !important;
    }
    
    .nav-container {
        flex-wrap: nowrap;
        gap: 0.5rem;
        align-items: center;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 160px 0 100px;
        min-height: 85vh;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
                    url('background .png') center top/cover no-repeat;
    }
    
    .hero-buttons .btn {
        padding: 12px 28px !important;
        font-size: 1rem !important;
    }
    
    .hero-stats {
        gap: 0.5rem;
        max-width: 400px;
    }
    
    .hero-stat {
        padding: 0 0.25rem;
    }
    
    .contact h2 {
        font-size: 1.4rem !important;
    }
    
    .contact > .container > p {
        font-size: 0.9rem !important;
    }
    
    .contact-item {
        font-size: 1rem !important;
    }
    
    .contact-item i {
        font-size: 1.2rem !important;
    }
    
    .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .search-row,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-grid,
    .stats-grid,
    .areas-grid,
    .insights-grid,
    .value-grid,
    .pricing-grid,
    .services-grid,
    .reviews-grid,
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .team-name {
        font-size: 0.75rem;
    }
    
    /* Mobile heading size fixes */
    section h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    /* Scale down all text even more for small phones */
    section > .container > p,
    .service-card p,
    .testimonial-card p,
    .about-text p,
    .feature-group p,
    .contact-card p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    h3 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }
    
    h4 {
        font-size: 0.95rem !important;
    }
    
    /* Fix button spacing */
    .hero-buttons {
        gap: 0.5rem !important;
    }
    
    .hero-buttons .btn {
        padding: 10px 16px !important;
        font-size: 0.9rem !important;
        min-width: 120px !important;
        flex: none !important;
    }
    
    /* Fix pricing page buttons - stack vertically with spacing */
    .pricing-section .btn {
        display: block !important;
        margin: 0 auto 1rem auto !important;
        width: auto !important;
        max-width: 200px !important;
    }
    
    .pricing-section .btn:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Scale down pricing section content on mobile */
    .pricing-section h2 {
        font-size: 1.6rem !important;
    }
    
    .pricing-section p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
    
    .pricing-section .container > div {
        padding: 2rem !important;
    }
    
    /* Scale down featured areas section on mobile */
    .featured-areas h2 {
        font-size: 1.6rem !important;
        margin-bottom: 2rem !important;
    }
    
    .featured-areas p,
    .area-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .area-content h3 {
        font-size: 1.1rem !important;
    }
    
    /* Comprehensive mobile scaling for all sections */
    .about h2,
    .cta-content h2,
    .property-search h2,
    .services-section h2,
    .contact-form-section h2,
    .market-insights h2,
    .value-section h2,
    .additional-services h2,
    .comparison-section h2,
    .review-stats h2,
    .featured-reviews h2,
    .social-contact h2 {
        font-size: 1.6rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Scale down all section paragraphs */
    .about p,
    .cta-content p,
    .property-search p,
    .services-section p,
    .service-card p,
    .contact-form-section p,
    .market-insights p,
    .value-section p,
    .additional-services p,
    .comparison-section p,
    .review-stats p,
    .featured-reviews p,
    .social-contact p,
    .insight-card p,
    .value-card p,
    .pricing-card p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* Scale down all h3 headings */
    .service-card h3,
    .contact-card h3,
    .insight-card h3,
    .value-card h3,
    .pricing-card h3,
    .stat-card h3,
    .review-card h3,
    .performance-card h3 {
        font-size: 1.1rem !important;
    }
    
    /* Scale down card padding */
    .service-card,
    .contact-card,
    .area-card,
    .insight-card,
    .value-card,
    .pricing-card,
    .stat-card,
    .review-card,
    .performance-card {
        padding: 1.5rem !important;
    }
    
    /* Scale down form elements */
    .search-form,
    .contact-form,
    .review-form {
        padding: 1.5rem !important;
    }
    
    .contact-info-section h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Center multi-line headings on mobile */
    .about h2 {
        text-align: center !important;
    }
    
    .nav-contact .phone {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .nav-container {
        padding: 0 10px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .hero {
        padding: 160px 0 100px;
        min-height: 90vh;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                    url('background .png') center top/cover no-repeat;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 0.25rem;
        max-width: 350px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .about, 
    .cta-section, 
    .property-search, 
    .property-search-section,
    .contact,
    .services,
    .services-section,
    .contact-form-section,
    .contact-info-section,
    .featured-areas,
    .market-insights,
    .value-section,
    .pricing-section,
    .additional-services,
    .comparison-section,
    .review-stats,
    .featured-reviews,
    .social-contact {
        padding: 60px 0;
    }
    
    .search-form,
    .contact-form {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Reviews scroll functionality */
.reviews-pagination {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.reviews-pages {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.reviews-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    transition: opacity 0.3s ease;
}

.reviews-grid.active {
    display: grid;
}

.scroll-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 111, 165, 0.3);
}

.scroll-btn:hover:not(:disabled) {
    background: var(--dark-gray);
    transform: scale(1.05);
}

.scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.scroll-btn i {
    font-size: 1.2rem;
}

/* Review form styles */
.write-review-section {
    padding: 4rem 0;
    background: var(--soft-gray);
}

.review-form-content {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.form-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.review-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover:not(:disabled) {
    background: var(--dark-gray);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Mobile responsive adjustments for reviews */
@media (max-width: 768px) {
    .reviews-pagination {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
        width: 100%;
    }
    
    .review-card {
        padding: 1.2rem;
        max-width: none;
        margin: 0;
        min-height: auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .reviews-grid.active {
        display: grid;
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .review-form {
        padding: 1.5rem;
    }
}

/* Additional responsive fixes for split screen and small windows */
@media (max-width: 1000px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
        min-height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .nav-contact .phone {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
        border-radius: 15px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .nav-logo {
        flex-shrink: 1;
        min-width: 0;
    }
    
    .hero {
        padding: 160px 0 100px;
    }
}

/* EMAIL SUBSCRIPTION POP-UP */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(2px);
}

.popup-content {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    max-width: 85%;
    width: 350px;
    max-height: 70vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #f5f5f5;
    color: #333;
}

.popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.popup-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.popup-header p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-form .form-group {
    display: flex;
    flex-direction: column;
}

.popup-form input[type="text"],
.popup-form input[type="email"] {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.popup-form input[type="text"]:focus,
.popup-form input[type="email"]:focus {
    outline: none;
    border-color: #4f6fa8;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4f6fa8;
    cursor: pointer;
}

.popup-submit-btn {
    background: linear-gradient(135deg, #4f6fa8, #3d5a96);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.popup-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.popup-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.popup-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 1rem;
    line-height: 1.3;
}

/* Mobile styles for popup */
@media (max-width: 480px) {
    .popup-content {
        padding: 1.5rem;
        width: 95%;
        margin: 1rem;
    }
    
    .popup-header {
        padding-right: 1rem;
    }
    
    .popup-header h3 {
        font-size: 1.3rem;
    }
    
    .popup-close {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
}
