:root {
    --primary-color: #8d0038;
    --secondary-color: #ba003b;
    --accent-color: #db6689;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 25px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

.main-header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-large {
    padding: 15px 35px;
    font-size: 16px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    display: block;
}

.user-dropdown {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
}

.user-btn:hover {
    background: var(--border-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    min-width: 200px;
    margin-top: 10px;
    display: none;
    overflow: hidden;
    z-index: 1000;
}

.user-dropdown:hover .dropdown-menu,
.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown .dropdown-menu {
    left: 0;
    right: auto;
    min-width: 280px;
}

/* Help Dropdown in Main Nav */
.help-dropdown-nav {
    position: relative;
}

.help-nav-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: inherit;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: color 0.3s;
    font-family: inherit;
    text-decoration: none;
}

.help-nav-btn:hover {
    color: var(--primary-color);
}

.help-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    min-width: 280px;
    padding: 10px 0;
    display: none;
    z-index: 1001;
}

.help-dropdown-menu.show {
    display: block;
}

.help-dropdown-menu .dropdown-header {
    padding: 10px 16px;
    font-weight: 600;
    color: #666;
    font-size: 0.85rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 8px;
}

.help-dropdown-menu .dropdown-header i {
    margin-right: 8px;
    color: #28a745;
    font-size: 0.8rem;
}

.help-dropdown-menu .help-contacts {
    padding: 8px 16px;
    margin-bottom: 8px;
}

.help-dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.help-dropdown-menu a:hover {
    background: #f8f9fa;
    color: #007bff;
}

.help-dropdown-menu a i {
    width: 16px;
    margin-right: 10px;
    color: #666;
    font-size: 0.8rem;
}

.help-dropdown-menu a:hover i {
    color: #007bff;
}

.help-dropdown-menu .help-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-color);
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: var(--light-color);
}

/* Help Dropdown Contact Items */
.dropdown-header {
    padding: 10px 16px;
    font-weight: 600;
    color: #666;
    font-size: 0.85rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 8px;
}

.dropdown-header i {
    margin-right: 8px;
    color: #28a745;
    font-size: 0.8rem;
}

.contact-list {
    padding: 8px 16px;
    margin-bottom: 8px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 0.8rem;
}

.contact-item .country {
    font-weight: 600;
    color: #333;
    min-width: 50px;
}

.contact-item .phone {
    color: #007bff;
    font-weight: 500;
    cursor: pointer;
}

.contact-item .phone:hover {
    color: #0056b3;
    text-decoration: underline;
}

.divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.9), rgba(156, 39, 176, 0.9)), 
                url('../images/hero-bg.jpg') center/cover;
    padding: 20px 0;
    margin-top: 0;
    color: #fff;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
}

.hero-content-section {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.hero-form-section {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: -25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-search {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto 50px;
}

.search-form {
    color: var(--text-color);
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    align-items: end;
}

.search-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.search-field select,
.search-field input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
}

.age-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.age-range select {
    flex: 1;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.features-section,
.profiles-section,
.how-it-works,
.membership-section,
.testimonials-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.profile-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    position: relative;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.profile-image {
    height: 300px;
    overflow: hidden;
    background: var(--light-color);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--border-color);
}

.profile-info {
    padding: 20px;
}

.profile-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.profile-id {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.profile-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.profile-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.profile-actions .btn {
    flex: 1;
}

/* New How It Works Design - Compact & Mobile Optimized */
.how-it-works-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.how-it-works-images {
    flex: 1;
    max-width: 400px;
}

.single-image {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 16px;
    overflow: hidden;
}

.single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8), rgba(255, 152, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-overlay i {
    font-size: 3rem;
    color: white;
}

.how-it-works-steps {
    flex: 1;
    max-width: 450px;
    text-align: center;
}

.how-it-works-steps .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.steps-list {
    margin: 20px 0;
    text-align: left;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.step-item:hover {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateX(8px);
    border-color: var(--primary-color);
}

.step-item:hover::before {
    transform: scaleY(1);
}

.step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.step-content p {
    color: #6c757d;
    line-height: 1.4;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 400;
}

.cta-button {
    margin-top: 30px;
    text-align: center;
}

.cta-button .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
}

/* Section Visibility Controls */
@media (min-width: 1025px) {
    .hide-on-desktop {
        display: none !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hide-on-tablet {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}

/* Responsive Design - Mobile Optimized */
@media (max-width: 968px) {
    .how-it-works-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .how-it-works-images {
        max-width: 100%;
    }
    
    .single-image {
        height: 450px;
        margin: 0 auto;
        max-width: 450px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 12px;
        margin-bottom: 14px;
    }
    
    .step-number {
        margin: 0 auto 8px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .step-content h3 {
        font-size: 0.95rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .cta-button {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .single-image {
        height: 300px;
        max-width: 380px;
    }
    
    .image-overlay i {
        font-size: 2.5rem;
    }
    
    .step-item {
        margin-bottom: 12px;
        padding: 10px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
    }
    
    .step-content h3 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .step-content p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-content {
        gap: 20px;
    }
    
    .single-image {
        height: 250px;
        max-width: 320px;
    }
    
    .image-overlay i {
        font-size: 2rem;
    }
    
    .steps-list {
        margin: 15px 0;
    }
    
    .step-item {
        margin-bottom: 10px;
        padding: 8px 12px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        margin: 0 auto 6px;
    }
    
    .step-content h3 {
        font-size: 0.85rem;
        margin-bottom: 3px;
    }
    
    .step-content p {
        font-size: 0.7rem;
    }
    
    .cta-button {
        margin-top: 20px;
    }
}

.step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Mobile App Section - Ultra Compact */
.mobile-app-section {
    padding: 3rem 0;
    background: #ffffff !important;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.mobile-app-section::before,
.mobile-app-section::after {
    display: none !important;
}

.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mobile-app-visual {
    position: relative;
}

.app-mockups-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.app-mockup {
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 280px;
    height: 350px;
}

.app-mockup-primary {
    margin-right: -10px;
    z-index: 2;
    position: relative;
}

.app-mockup-secondary {
    opacity: 0.9;
    position: relative;
}

.app-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-mockup-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 8px solid #222;
    border-radius: 30px;
    pointer-events: none;
}

.app-mockup-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.mobile-app-info {
    color: var(--dark-color);
}

.mobile-app-info .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.mobile-app-info .section-header p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}


.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.app-feature i {
    color: #4ade80;
    font-size: 1.2rem;
}

.app-feature span {
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
}

.app-download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 20px;
}

.app-store-btn, .play-store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 28px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 1.1rem;
}

.app-store-btn:hover, .play-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.app-store-btn i, .play-store-btn i {
    font-size: 1.8rem;
}

.btn-text small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

.btn-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.plan-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.02);
}

/* Responsive Design for Plans Grid */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
        max-width: 1200px;
    }
    
    .plan-card {
        padding: 25px 15px;
    }
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
        max-width: 1000px;
    }
    
    .plan-card {
        padding: 20px 12px;
    }
    
    .plan-header h3 {
        font-size: 1.1rem;
    }
    
    .plan-price .amount {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .plan-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .plan-card {
        padding: 25px 20px;
    }
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 600;
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-price .period {
    font-size: 16px;
    color: #666;
    align-self: flex-end;
    margin-bottom: 10px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features .fa-check {
    color: var(--success-color);
}

.plan-features .fa-times {
    color: var(--danger-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: #ffd700;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img,
.author-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-placeholder {
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-color);
    font-size: 24px;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-info p {
    font-size: 14px;
    color: #999;
}

.cta-section {
    padding: 40px 0;
    color: #333;
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.cta-content p {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn-large {
    padding: 10px 24px;
    font-size: 14px;
}

.cta-buttons .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cta-buttons .btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.main-footer {
    background: var(--dark-color);
    color: #fff;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 5px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 5px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.8;
}

.footer-bottom i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    /* CRITICAL: Hide nav-menu by default on mobile */
    .nav-menu {
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #fff !important;
        flex-direction: column !important;
        padding: 20px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        z-index: 999 !important;
        max-height: calc(100vh - 80px) !important;
        overflow-y: auto !important;
        display: flex !important;
        gap: 0 !important;
    }
    
    /* Show menu when active */
    .nav-menu.active {
        transform: translateX(0) !important;
        display: flex !important;
    }
    
    /* Stack navigation links vertically */
    .nav-links {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
        display: flex !important;
        list-style: none !important;
    }
    
    .nav-links li {
        width: 100% !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    .nav-links a,
    .help-nav-btn {
        display: block !important;
        padding: 15px 10px !important;
        width: 100% !important;
        text-align: left !important;
    }
    
    /* Stack action buttons vertically */
    .nav-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        margin-top: 15px !important;
        display: flex !important;
    }
    
    .nav-actions .login-border-btn,
    .nav-actions .register-special-btn {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        display: flex !important;
    }
    
    /* Help dropdown inline on mobile */
    .help-dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        border-left: 3px solid var(--primary-color) !important;
        margin: 10px 0 !important;
        background: #f8f9fa !important;
    }
    
    /* Show hamburger menu */
    .mobile-toggle {
        display: flex !important;
        z-index: 1001 !important;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .search-row {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

.form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Profiles by Matrimonials Section */
.profiles-matrimonials-section {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.section-title-matrimonials {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.matrimonials-red {
    color: #e91e63;
    font-weight: 600;
}

.matrimonials-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.matrimonials-tab {
    padding: 10px 22px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.matrimonials-tab:hover {
    background: #f5f5f5;
}

.matrimonials-tab.active {
    background: #e91e63;
    color: #fff;
}

.matrimonials-items-container {
    max-width: 900px;
    margin: 0 auto;
}

.matrimonials-items-list {
    font-size: 14px;
    color: #555;
    line-height: 2.5;
    text-align: center;
}

.matrimonials-items-list a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 8px;
    font-weight: 500;
}

.matrimonials-items-list a:hover {
    color: #e91e63;
}

/* More specific selector for View More links */
.matrimonials-items-list a.view-more-link,
.matrimonials-items-list a.view-more-link:visited,
.matrimonials-items-list a.view-more-link:active {
    color: #000 !important;
    font-weight: 600;
    text-decoration: underline;
}

.matrimonials-items-list a.view-more-link:hover {
    color: #333 !important;
}

/* MatchMaking Section */
.matchmaking-about-section {
    padding: 50px 0;
    background: #e8f4f8;
}

.matchmaking-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.matchmaking-icon-wrapper {
    flex-shrink: 0;
}

.matchmaking-icon-wrapper i {
    font-size: 32px;
    color: #e91e63;
}

.matchmaking-heading {
    font-size: 22px;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 15px;
}

.matchmaking-paragraph {
    font-size: 13px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
    text-align: justify;
}

.matchmaking-paragraph strong {
    font-weight: 700;
    color: #333;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .profiles-matrimonials-section {
        padding: 2.5rem 0;
    }
    
    .section-title-matrimonials {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .matrimonials-filter-tabs {
        gap: 5px;
        margin-bottom: 18px;
    }
    
    .matrimonials-tab {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 5px !important;
        border: 1px solid #ddd !important;
        margin-bottom: 5px;
    }
    
    .matrimonials-items-list {
        font-size: 13px;
        padding: 0 15px;
    }
    
    .matchmaking-about-section {
        padding: 40px 0;
    }
    
    .matchmaking-wrapper {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    .matchmaking-icon-wrapper {
        text-align: center;
    }
    
    .matchmaking-icon-wrapper i {
        font-size: 28px;
    }
    
    .matchmaking-heading {
        font-size: 20px;
        text-align: center;
    }
    
    .matchmaking-paragraph {
        font-size: 12px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .section-title-matrimonials {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .matrimonials-tab {
        padding: 7px 14px;
        font-size: 12px;
    }
    
    .matrimonials-items-list {
        font-size: 12px;
    }
    
    .matchmaking-heading {
        font-size: 18px;
    }
    
    .matchmaking-paragraph {
        font-size: 11px;
    }
}
