/* Global Styles */
:root {
    --primary-color: #ff6b6b;
    --primary-light: #ff8e8e;
    --primary-dark: #e05555;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --light-color: #f7fff7;
    --dark-color: #292f36;
    --gray-light: #f1f1f1;
    --gray-medium: #d1d1d1;
    --gray-dark: #777;
    --success-color: #6bff6b;
    --warning-color: #ffcc5c;
    --danger-color: #ff6b6b;
    --font-primary: 'Poppins', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Fluid logo sizing */
.logo {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--dark-color);
}

.logo span {
    font-size: inherit; /* Makes span match parent size */
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.login-btn {
    color: var(--primary-color);
    font-weight: 600;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    background-color: white;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    flex-direction: column;
    gap: 15px;
    transform: translateY(-150%);
    transition: var(--transition);
}

.mobile-menu.active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    padding: 150px 0 100px;
    margin-top: 80px;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray-dark);
}

.hero-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    flex: 1;
    max-width: 450px;
}

.hero-form h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-medium);
    border-radius: 5px;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.form-footer {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 15px;
    color: var(--gray-dark);
}

.form-footer a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #f5f5f5;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 0 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.testimonial-content img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--primary-light);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.5;
}

.testimonial-content h4 {
    color: var(--primary-color);
}

.testimonial-content span {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-prev,
.slider-next {
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-color);
    color: white;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Search Section */
.search-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.search-sidebar {
    flex: 0 0 300px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    height: fit-content;
}

.search-sidebar h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
}

/* ======================
   FILTER ELEMENTS STYLING
   ====================== */

/* Filter Container */
/* ======================
   FILTER PROFILE STYLING (Consistent Theme)
   ====================== */

/* Filter Container - Consistent with Theme */
.search-sidebar .filter-group {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

/* Filter Headings - Theme Colors */
.search-sidebar .filter-group h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

/* Range Slider (Seek Bar) - Theme Styling */
.search-sidebar .range-slider {
    margin: 1.5rem 0 1rem;
}

.search-sidebar .range-slider input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--gray-light);
    outline: none;
    margin: 10px 0;
}

.search-sidebar .range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.search-sidebar .range-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.search-sidebar .range-slider input[type="range"]:active::-webkit-slider-thumb {
    transform: scale(1.2);
    background: var(--primary-dark);
}

/* Range Value Display - Theme Colors */
.search-sidebar .range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-dark);
    margin-bottom: 5px;
}

.search-sidebar .range-values {
    text-align: center;
    font-size: 0.9rem;
    color: var(--dark-color);
    margin-top: 5px;
    font-weight: 500;
}

.search-sidebar .range-values span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Select Dropdowns - Theme Styling */
.search-sidebar .filter-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark-color);
    background-color: white;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    transition: all 0.3s ease;
}

.search-sidebar .filter-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

/* Text Inputs - Theme Styling */
.search-sidebar .filter-group input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark-color);
    background-color: white;
    transition: all 0.3s ease;
}

.search-sidebar .filter-group input[type="text"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}
/* ======================
   FIXED FILTER FORM STYLING
   ====================== */

/* Remove default dropdown arrow to prevent double icons */
.search-sidebar .filter-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Custom dropdown arrow styling */
.search-sidebar .filter-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2rem; /* Ensure enough space for the icon */
}

/* Focus state with theme color */
.search-sidebar .filter-group select:focus,
.search-sidebar .filter-group input[type="text"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
    outline: none;
    color: var(--dark-color); /* Ensure text color remains consistent */
}

/* Active state styling */
.search-sidebar .filter-group select:active,
.search-sidebar .filter-group input[type="text"]:active {
    border-color: var(--primary-dark);
    color: var(--dark-color); /* Maintain text color */
}

/* Remove duplicate icons in Firefox */
.search-sidebar .filter-group select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 var(--dark-color);
}

/* IE11 specific fixes */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .search-sidebar .filter-group select {
        padding-right: 1rem;
        background-image: none;
    }
}

/* Apply Button - Theme Styling */
.search-sidebar .btn-primary {
    width: 100%;
    padding: 0.85rem;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    background-color: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.search-sidebar .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.search-results {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.profile-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.profile-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.profile-card:hover .profile-img img {
    transform: scale(1.05);
}

.online-status {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--success-color);
    border: 2px solid white;
}

.profile-info {
    padding: 20px;
}

.profile-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.profile-info p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.profile-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    grid-column: 1 / -1;
}

/* About Section */
.about .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--gray-medium);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Link Styling */
.footer-bottom p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    text-align: center;
}

.footer-bottom a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
    margin: 0 2px;
}

/* Specific style for the site name link */
.footer-bottom .site-link {
    font-weight: 600;
    color: var(--primary-light);
}

.footer-bottom a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Separator styling */
.footer-bottom p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p::before,
.footer-bottom p::after {
    content: "|";
    color: var(--gray-medium);
    opacity: 0.5;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 80px auto;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalOpen 0.3s ease;
}

@keyframes modalOpen {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.profile-view {
    max-width: 800px;
}


/* Add this to your existing CSS */
.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--gray-dark);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10; /* Ensure it's above other elements */
    width: 23px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}


.auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--gray-light);
}

.tab-btn {
    flex: 1;
    padding: 15px;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-dark);
    transition: var(--transition);
    position: relative;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-content {
    padding: 30px;
    display: none;
}

.tab-content.active {
    display: block;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--gray-dark);
    cursor: pointer;
}

.form-options a {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.switch-tab {
    color: var(--primary-color);
    font-weight: 600;
}

.file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px dashed var(--gray-medium);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.file-upload:hover {
    border-color: var(--primary-color);
    background-color: rgba(255, 107, 107, 0.05);
}

.file-upload i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.file-upload span {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.file-upload input {
    display: none;
}

/* Profile View Modal */
.profile-header {
    display: flex;
    gap: 30px;
    padding: 30px;
    border-bottom: 1px solid var(--gray-light);
}

.profile-img {
    flex: 0 0 150px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-info h2 {
    margin-bottom: 5px;
}

.profile-info p {
    margin-bottom: 10px;
    color: var(--gray-dark);
}

.profile-info p i {
    margin-right: 5px;
    color: var(--primary-color);
}

.profile-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.profile-details {
    padding: 30px;
}

.detail-section {
    margin-bottom: 30px;
}

.detail-section h3 {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 20px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.detail-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 5px;
}

.detail-item p {
    font-weight: 500;
}

.premium-info {
    color: var(--primary-color);
    font-weight: 500;
}

.premium-cta {
    background-color: rgba(255, 107, 107, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.premium-cta h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.premium-cta p {
    margin-bottom: 20px;
    color: var(--gray-dark);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .search-container {
        flex-direction: column;
    }
    
    .search-sidebar {
        flex: 1;
    }
    
    .about .container {
        flex-direction: column;
    }
    
    .about-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .mobile-menu {
        display: flex;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .profile-header {
        flex-direction: column;
    }
    
    .profile-img {
        margin: 0 auto;
    }
    
    .profile-info {
        text-align: center;
    }
    
    .profile-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .modal-content {
        margin: 80px 15px;
    }
    
    .profile-view {
        max-width: 100%;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
}