
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
            min-height: 100vh;
            overflow-x: hidden;
            color: #111827;
        }
        
        /* Glassmorphism Base Styles */
        .glass {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .glass-light {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header Styles */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            margin-bottom: 40px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo i {
            font-size: 2.5rem;
            color: #F97316;
        }
        
        .logo h1 {
            font-size: 2.2rem;
            color: white;
            font-weight: 700;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 10px 20px;
            border-radius: 25px;
        }
        
        nav a:hover {
            color: #F97316;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .cta-button {
            background: #F97316;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
        }
        
        .cta-button:hover {
            background: #EA580C;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.6);
        }
        
        /* Hero Section */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 80px;
            gap: 40px;
        }
        
        .hero-content {
            flex: 1;
            color: white;
        }
        
        .hero-content h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
        }
        
        .secondary-button {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .secondary-button:hover {
            background: white;
            color: #1E3A8A;
        }
        
        /* House Showcase */
        .house-showcase {
            flex: 1;
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .house-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .house-showcase:hover .house-image {
            transform: scale(1.05);
        }
        
        .house-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px;
        }
        
        .house-price {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .house-address {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        /* Property Grid */
        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }
        
        .property-card {
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .property-card:hover {
            transform: translateY(-10px);
        }
        
        .property-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .property-info {
            padding: 25px;
        }
        
        .property-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1E3A8A;
            margin-bottom: 10px;
        }
        
        .property-address {
            font-size: 1.1rem;
            color: #6B7280;
            margin-bottom: 15px;
        }
        
        .property-features {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .feature {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #6B7280;
        }
        
        .feature i {
            color: #F97316;
        }
        
        /* Single Agent Section */
  /* agent-modal.css - Professional Agent Modal with Sidebar Design */

/* Modal Container */
.agent-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.5s ease;
}

.agent-modal.active {
    display: block;
}

.agent-modal-content {
    position: relative;
    background: white;
    margin: 40px auto;
    padding: 0;
    border-radius: 30px;
    max-width: 1200px;
    width: 95%;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Close Button */
.agent-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #1E3A8A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.agent-modal-close:hover {
    background: #F97316;
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Header Section with Photo and Basic Info */
.agent-modal-header {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.agent-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #F97316 0%, #3B82F6 100%);
}

/* Photo Section */
.agent-modal-photo-section {
    background: linear-gradient(135deg, #1E3A8A 0%, #2D4AA8 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.agent-modal-photo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0.3;
}

.agent-modal-photo-container {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 5px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.agent-modal-photo-container:hover {
    transform: translateY(-10px);
}

.agent-modal-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.agent-modal-photo-container:hover .agent-modal-photo {
    transform: scale(1.05);
}

.agent-modal-photo-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
    z-index: 2;
}

/* Info Sidebar */
.agent-modal-info-sidebar {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.agent-modal-name {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.agent-modal-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F97316 0%, #FB923C 100%);
    border-radius: 2px;
}

.agent-modal-title {
    font-size: 1.8rem;
    color: #F97316;
    margin-bottom: 30px;
    font-weight: 600;
    padding-left: 5px;
}

.agent-modal-rating-container {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.agent-modal-rating-label {
    font-size: 1rem;
    color: #6B7280;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.agent-modal-rating-label i {
    color: #F97316;
}

.agent-modal-rating {
    display: flex;
    align-items: center;
    gap: 20px;
}

.agent-modal-rating-stars {
    color: #FBBF24;
    font-size: 1.8rem;
    letter-spacing: 3px;
}

.agent-modal-rating-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1E3A8A;
}

.agent-modal-rating-subtext {
    font-size: 1.1rem;
    color: #6B7280;
    margin-top: 8px;
    font-weight: 500;
}

.agent-modal-contact-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.agent-modal-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 12px 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.agent-modal-contact-item:hover {
    background: #f8fafc;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.agent-modal-contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.agent-modal-contact-details {
    flex: 1;
}

.agent-modal-contact-label {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 3px;
}

.agent-modal-contact-value {
    font-size: 1.1rem;
    color: #1E3A8A;
    font-weight: 600;
}

/* Main Content Section */
.agent-modal-body {
    padding: 60px 50px;
    background: white;
}

.agent-modal-section {
    margin-bottom: 50px;
}

.agent-modal-section-title {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(30, 58, 138, 0.1);
}

.agent-modal-section-title i {
    color: #F97316;
    font-size: 1.5rem;
}

.agent-modal-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.agent-modal-description::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 6rem;
    color: rgba(30, 58, 138, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Expertise Grid */
.agent-modal-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.agent-modal-expertise-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.agent-modal-expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(30, 58, 138, 0.1);
}

.agent-modal-expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #3B82F6, #60A5FA);
}

.agent-modal-expertise-item:nth-child(2)::before {
    background: linear-gradient(to bottom, #F97316, #FB923C);
}

.agent-modal-expertise-item:nth-child(3)::before {
    background: linear-gradient(to bottom, #10B981, #34D399);
}

.agent-modal-expertise-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #1E3A8A;
}

.agent-modal-expertise-title {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 10px;
    font-weight: 600;
}

.agent-modal-expertise-desc {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Stats Section */
.agent-modal-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.agent-modal-stat-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.agent-modal-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(30, 58, 138, 0.1);
}

.agent-modal-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3B82F6, #60A5FA);
}

.agent-modal-stat-card:nth-child(2)::after {
    background: linear-gradient(90deg, #F97316, #FB923C);
}

.agent-modal-stat-card:nth-child(3)::after {
    background: linear-gradient(90deg, #10B981, #34D399);
}

.agent-modal-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 10px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.agent-modal-stat-number i {
    font-size: 2.5rem;
    color: #F97316;
}

.agent-modal-stat-label {
    font-size: 1.1rem;
    color: #6B7280;
    font-weight: 600;
}

/* CTA Buttons */
.agent-modal-cta {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.agent-modal-cta-title {
    font-size: 2rem;
    color: #1E3A8A;
    margin-bottom: 25px;
    font-weight: 700;
}

.agent-modal-cta-subtitle {
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.agent-modal-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 40px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 220px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.agent-modal-cta-button::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.7s;
}

.agent-modal-cta-button:hover::before {
    left: 100%;
}

.agent-modal-cta-button-primary {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.agent-modal-cta-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.agent-modal-cta-button-secondary {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.agent-modal-cta-button-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
}

.agent-modal-cta-button i {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .agent-modal-header {
        grid-template-columns: 350px 1fr;
    }
    
    .agent-modal-photo-container {
        width: 250px;
        height: 250px;
    }
    
    .agent-modal-name {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .agent-modal-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .agent-modal-photo-section {
        padding: 50px 30px;
    }
    
    .agent-modal-photo-container {
        margin: 0 auto;
    }
    
    .agent-modal-info-sidebar {
        padding: 40px 30px;
    }
    
    .agent-modal-name::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .agent-modal-body {
        padding: 40px 30px;
    }
    
    .agent-modal-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .agent-modal-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .agent-modal-content {
        margin: 20px auto;
        border-radius: 20px;
        width: calc(100% - 40px);
    }
    
    .agent-modal-photo-container {
        width: 220px;
        height: 220px;
    }
    
    .agent-modal-name {
        font-size: 2.5rem;
    }
    
    .agent-modal-title {
        font-size: 1.5rem;
    }
    
    .agent-modal-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .agent-modal-expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .agent-modal-body {
        padding: 30px 20px;
    }
    
    .agent-modal-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .agent-modal-cta {
        padding: 30px 20px;
    }
    
    .agent-modal-cta-title {
        font-size: 1.8rem;
    }
    
    .agent-modal-cta-button {
        min-width: 200px;
        padding: 18px 30px;
    }
}

@media (max-width: 480px) {
    .agent-modal-photo-section {
        padding: 40px 20px;
    }
    
    .agent-modal-info-sidebar {
        padding: 30px 20px;
    }
    
    .agent-modal-name {
        font-size: 2.2rem;
    }
    
    .agent-modal-title {
        font-size: 1.3rem;
    }
    
    .agent-modal-rating-stars {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .agent-modal-rating-text {
        font-size: 1.2rem;
    }
    
    .agent-modal-stat-number {
        font-size: 2.8rem;
    }
    
    .agent-modal-cta-button {
        width: 100%;
        min-width: unset;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Loading Animation */
.agent-modal-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(30, 58, 138, 0.1);
    border-top-color: #F97316;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
        
        .stat {
            text-align: center;
            padding: 20px;
            border-radius: 12px;
        }
        
        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1E3A8A;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #6B7280;
        }
        
        .agent-contact {
            display: flex;
            gap: 15px;
        }
        
        .contact-button {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .contact-primary {
            background: #F97316;
            color: white;
        }
        
        .contact-secondary {
            background: #1E3A8A;
            color: white;
        }
        
        .contact-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }
        
        .feature-card {
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: #F97316;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1E3A8A;
        }
        
        .feature-card p {
            color: #6B7280;
            line-height: 1.6;
        }
        
        /* Seller/Buyer Section */
        .seller-buyer-section {
            margin-bottom: 80px;
        }
        
        .seller-buyer-options {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .option-button {
            color: #1E3A8A;
            border: none;
            padding: 20px 40px;
            border-radius: 15px;
            font-weight: 700;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .option-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .option-button.active {
            background: #F97316;
            color: white;
        }
        
        .option-icon {
            font-size: 1.8rem;
        }
        
        .form-container {
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            display: none;
        }
        
        .form-container.active {
            display: block;
        }
        
        .form-title {
            font-size: 2rem;
            color: #1E3A8A;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            font-size: 1.1rem;
            font-weight: 600;
            color: #1E3A8A;
            margin-bottom: 10px;
        }
        
        .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .radio-option {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.2s;
        }
        
        .radio-option:hover {
            background: rgba(229, 231, 235, 0.5);
        }
        
        .radio-option input {
            margin: 0;
        }
        
        .submit-button {
            background: #F97316;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            margin: 40px auto 0;
            box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
        }
        
        .submit-button:hover {
            background: #EA580C;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.6);
        }
        
        /* Footer */
        footer {
            text-align: center;
            padding: 30px;
            color: white;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 50px;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-content h2 {
                font-size: 2.8rem;
            }
            
            .house-showcase {
                width: 100%;
                margin-top: 40px;
            }
            
            .agent-container {
                flex-direction: column;
            }
            
            .agent-photo-container {
                min-height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 20px;
            }
            
            nav ul {
                gap: 15px;
            }
            
            .hero-content h2 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .property-grid {
                grid-template-columns: 1fr;
            }
            
            .agent-stats {
                grid-template-columns: 1fr;
            }
            
            .agent-contact {
                flex-direction: column;
            }
            
            .seller-buyer-options {
                flex-direction: column;
                align-items: center;
            }
            
            .option-button {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
            
            .agent-info {
                padding: 25px;
            }
            
            .agent-name {
                font-size: 2rem;
            }
            
            .form-container {
                padding: 25px;
            }
        }
        
        
        /* Balanced premium input (not too big) */
.mc-input{
  width: 100%;
  padding: 10px 12px;          /* ⬅️ reduced from 20px */
  border-radius: 16px;
  border: 1.4px solid rgba(107,114,128,0.30);
  background: #ffffff;

  font-size: 1.12rem;          /* ⬅️ reduced text size */
  font-weight: 600;

  outline: none;
  transition: all 0.22s ease;

  box-shadow:
    0 8px 18px rgba(0,0,0,0.07),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Focus effect – still premium but softer */
.mc-input:focus{
  border-color: #F97316;
  box-shadow:
    0 0 0 5px rgba(249,115,22,0.18),
    0 10px 22px rgba(249,115,22,0.22);
  transform: translateY(-1px);
}

#mcYears{
  height: 45px;          /* make it a little bigger */
  font-size: 1.15rem;
}

.mc-label{
  font-size: 2.15rem;      /* balanced with input */
  font-weight: 800;
  margin-bottom: 12px;
}

.mc-fields{
  gap: 18px;               /* down from 22px */
}

   <style>
/* PDF Downloads Section */
.pdf-downloads-section {
    margin: 80px 0;
    padding: 40px 20px;
}

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

.section-title {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* PDF Cards Container */
.pdf-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

/* PDF Card */
.pdf-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pdf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.pdf-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.pdf-content {
    flex: 1;
}

.pdf-content h3 {
    color: #1E3A8A;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.pdf-size {
    color: #6B7280;
    font-size: 0.9rem;
}

.download-btn {
    background: #1E3A8A;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.download-btn:hover {
    background: #F97316;
    transform: translateY(-2px);
}

/* License Info */
.license-info {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.license-info p {
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.license-info i {
    color: #F97316;
}

.trec-link {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.trec-link:hover {
    background: white;
    color: #1E3A8A;
    border-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .pdf-cards-container {
        grid-template-columns: 1fr;
    }
    
    .pdf-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .license-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
</style> 




<style>
    .modal {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .modal-content {
        animation: modalSlideIn 0.3s ease-out;
        box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    }
    
    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(-50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .close-modal:hover {
        color: #F97316;
    }
    
    .agent-modal-content {
        display: flex;
        flex-direction: column;
    }
    
    .agent-modal-header {
        background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
        color: white;
        padding: 40px;
        border-radius: 20px 20px 0 0;
        text-align: center;
    }
    
    .agent-modal-body {
        padding: 40px;
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 40px;
    }
    
    .agent-modal-photo {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .agent-modal-details {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .agent-modal-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 20px 0;
    }
    
    .agent-modal-stat {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        border-left: 4px solid #F97316;
    }
    
    .agent-modal-contact {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
    
    .modal-contact-button {
        flex: 1;
        padding: 15px;
        border: none;
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        font-size: 14px;
    }
    
    .modal-contact-primary {
        background: #F97316;
        color: white;
    }
    
    .modal-contact-secondary {
        background: #1E3A8A;
        color: white;
    }
    
    .modal-contact-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    @media (max-width: 768px) {
        .agent-modal-body {
            grid-template-columns: 1fr;
        }
        
        .agent-modal-contact {
            flex-direction: column;
        }
        
        .modal-content {
            margin: 20px;
            width: calc(100% - 40px);
        }
    }
</style>





<style>
/* agent-stats.css */
.agent-section .agent-container .agent-info .agent-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

/* High specificity for stats */
.agent-section .agent-container .agent-info .agent-stats .stat.glass-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.agent-section .agent-container .agent-info .agent-stats .stat.glass-light .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E3A8A;
    line-height: 1;
    margin-bottom: 8px;
}

.agent-section .agent-container .agent-info .agent-stats .stat.glass-light .stat-label {
    font-size: 1rem;
    color: #4B5563;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
</style>

