/* ============================================
   VivahSamiti - Universal Master Stylesheet
   Consolidated CSS for All Pages
   ============================================ */

:root {
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --secondary: #ff6f00;
    --gold: #ffd700;
    --accent-gold: #ffd700;
    --success: #4caf50;
    --success-dark: #388e3c;
    --light-bg: #fafafa;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(233,30,99,0.15);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
}

/* ============================================
   NAVBAR - Common for all pages
   ============================================ */
.navbar {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 12px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand span {
    color: var(--gold);
}

.navbar-brand img {
    height: 45px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-login {
    background: #fff;
    color: var(--primary);
    border-radius: 25px;
    padding: 8px 25px;
    font-weight: 600;
}

.btn-login:hover {
    background: var(--gold);
    color: #333;
}

.btn-register {
    background: var(--secondary);
    color: #fff;
    border-radius: 25px;
    padding: 8px 25px;
    font-weight: 600;
    border: none;
}

.btn-register:hover {
    background: #ff8f00;
}

.offcanvas-end {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.offcanvas-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offcanvas-title span {
    color: var(--gold);
}

.offcanvas-title img {
    height: 35px;
}

.btn-close-white {
    filter: brightness(0) invert(1);
}

.offcanvas-body .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    display: block;
}

.offcanvas-body .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 10px;
}

.offcanvas-body .btn-login,
.offcanvas-body .btn-register {
    width: 100%;
    text-align: center;
    padding: 12px;
    margin-top: 10px;
}

/* User Avatar Styles */
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.user-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

/* Icon Buttons */
.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
}

/* User Info */
.user-info strong {
    font-size: 14px;
    line-height: 1.2;
}

.user-info small {
    font-size: 12px;
}

/* Dropdown Styles */
.user-dropdown {
    min-width: 250px;
    margin-top: 10px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.user-dropdown .dropdown-item {
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.user-dropdown .dropdown-item:hover {
    background: #f8f9fa;
    padding-left: 25px;
}

.user-dropdown .dropdown-item i {
    width: 20px;
}

/* Notification Dropdown */
.notification-dropdown {
    min-width: 350px;
    max-width: 400px;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 10px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.notification-item {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.notification-item:hover {
    background: #f8f9fa;
}

.notification-item i {
    font-size: 20px;
    margin-top: 2px;
}

.notification-item div {
    flex: 1;
}

.notification-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.notification-item p {
    margin: 0;
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
}

.notification-item small {
    font-size: 11px;
    color: #adb5bd;
}

/* Mobile Styles */
.mobile-user-profile {
    margin-bottom: 20px;
}

.bg-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mobile-quick-actions {
    display: flex;
    gap: 10px;
}

.mobile-action-btn {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-action-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.mobile-action-btn i {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

.mobile-action-btn span:not(.badge) {
    display: block;
    font-size: 12px;
}

.mobile-action-btn .badge {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 10px;
}

.btn-logout {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    color: white;
}

/* Offcanvas Customization */
#mobileMenu .nav-link {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

#mobileMenu .nav-link:hover {
    padding-left: 10px;
    color: #ffd700;
}

#mobileMenu .nav-link i {
    width: 25px;
}

/* ============================================
   BREADCRUMB - Common for all pages
   ============================================ */
.breadcrumb-section {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #999;
    padding: 0 0.5rem;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.page-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ============================================
   HOMEPAGE STYLES
   ============================================ */
.hero {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.85), rgba(194, 24, 91, 0.8)), url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&q=80') center/cover fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.stats-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin: 5px;
    font-weight: 500;
}

.stats-badge i {
    color: var(--gold);
    margin-right: 8px;
}

.search-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.search-box h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 25px;
}

.form-select,
.form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-select:focus,
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.btn-search {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-search:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
    color: #fff;
}

.features {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.section-title .highlight {
    color: var(--primary);
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border-radius: 20px;
    transition: all 0.4s;
    border: 1px solid #eee;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-card h4 {
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

.profiles {
    padding: 80px 0;
}

.profile-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.profile-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.profile-img {
    height: 280px;
    position: relative;
    overflow: hidden;
}

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

.verified-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4caf50;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.verified-badge i {
    margin-right: 5px;
}

.profile-info {
    padding: 20px;
    text-align: center;
}

.profile-info h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.profile-info .age-loc {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.profile-info .profession {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-interest {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 15px;
}

.btn-interest:hover {
    transform: scale(1.05);
    color: #fff;
}

.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.how-it-works .section-title h2,
.how-it-works .section-title p {
    color: #fff;
}

.step-card {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: 700;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.step-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    opacity: 0.9;
}

.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-content {
    padding-left: 30px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-feature-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.about-feature-item div h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.about-feature-item div p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.success-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f8, #fff);
}

.story-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.story-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.story-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.story-content {
    padding: 25px;
}

.story-content h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.story-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonials {
    padding: 80px 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-card .quote {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin: 15px 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary);
}

.testimonial-author h6 {
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
}

.testimonial-author span {
    color: #888;
    font-size: 0.85rem;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0;
    color: #fff;
}

.stats-section h2 {
    font-size: 3rem;
    font-weight: 700;
}

.stats-section p {
    opacity: 0.9;
    margin: 0;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat bottom;
    background-size: cover;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.about-hero p {
    font-size: 22px;
    font-weight: 300;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.about-story {
    padding: 100px 20px;
    background: white;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 25px;
    line-height: 1.2;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-image {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.2);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 30%, rgba(233, 30, 99, 0.1) 100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

.mission-vision {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mission-vision-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section-title {
    text-align: center;
    margin-bottom: 80px;
}

.about-section-title h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.about-section-title p {
    font-size: 18px;
    color: #666;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card, .vision-card {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.15);
}

.mission-card h3, .vision-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-card i, .vision-card i {
    font-size: 40px;
}

.mission-card p, .vision-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.values-section {
    padding: 100px 20px;
    background: white;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 40px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 40px;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.value-item h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.stats-about-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.stats-about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.stats-about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-about-item {
    text-align: center;
}

.stat-about-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-about-label {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.95;
}

.team-about-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.team-about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-about-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-about-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.2);
}

.team-about-member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
}

.team-about-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-about-member-info {
    padding: 30px;
    text-align: center;
}

.team-about-member-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.team-about-member-role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-about-member-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.team-about-member-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.team-about-member-social a {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.team-about-member-social a:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.why-choose-about-us {
    padding: 100px 20px;
    background: white;
}

.why-choose-about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-about-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 40px;
    line-height: 1.2;
}

.feature-about-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-about-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-about-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-about-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.feature-about-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.why-choose-about-image {
    position: relative;
}

.why-choose-about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.2);
}

.about-cta-final {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-top: 100px;
}

.about-cta-final h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-cta-final p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.btn-primary-about {
    background: white;
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--primary);
}

.btn-outline-about {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-section {
    padding: 60px 20px;
    background: white;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.contact-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.1);
    border-color: var(--primary);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 20px;
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

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

.contact-form-section {
    background: #f8f9fa;
    padding: 50px 20px;
    border-radius: 15px;
    margin-top: 40px;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
    text-align: left!important;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-row .form-group {
    margin-bottom: 10px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

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

.working-hours {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid var(--primary);
}

.working-hours h5 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.working-hours h5 i {
    color: var(--primary);
    font-size: 18px;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    color: #666;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list strong {
    color: #333;
    font-weight: 600;
}

.faq-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.faq-header p {
    font-size: 15px;
    color: #666;
}

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

.faq-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.1);
}

.faq-question {
    padding: 18px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question h5 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 18px 18px 18px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

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

.alert-message {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
}

.alert-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-message i {
    margin-top: 2px;
    flex-shrink: 0;
}

.alert-message strong {
    display: block;
    margin-bottom: 3px;
}

/* ============================================
   PRICING PAGE STYLES
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #555;
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--primary);
}

.pricing-section {
    padding: 4rem 0;
    background: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-gold);
    color: #333;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 10;
}

.card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    position: relative;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-tagline {
    font-size: 0.95rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.plan-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.card-body {
    padding: 2rem 1.5rem;
}

.plan-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f5f5f5;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: #4caf50;
    margin-top: 0.2rem;
    font-size: 1rem;
    min-width: 18px;
}

.duration-options {
    margin-bottom: 2rem;
}

.duration-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.duration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
}

.duration-option {
    position: relative;
}

.duration-option input[type="radio"] {
    display: none;
}

.duration-option label {
    display: block;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.duration-option label:hover {
    border-color: var(--primary);
    background: #fff5f8;
}

.duration-option input[type="radio"]:checked + label {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(233,30,99,0.1), rgba(233,30,99,0.05));
    box-shadow: 0 4px 12px rgba(233,30,99,0.2);
}

.duration-months {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.duration-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.duration-per-month {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.25rem;
}

.btn-purchase {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233,30,99,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.btn-purchase:hover:not(:disabled):not(.loading) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233,30,99,0.4);
}

.btn-purchase.loading {
    cursor: wait;
    opacity: 0.9;
}

.btn-purchase:disabled:not(.loading) {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner.fa-spin {
    animation: spin 1s linear infinite;
}

.info-section {
    background: #fff;
    padding: 3rem 0;
    border-top: 1px solid #f0f0f0;
}

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

.info-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fafafa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: #fff5f8;
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.info-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.contact-section {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
    border-top: 1px solid #f0f0f0;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-option {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-option:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.contact-option i {
    font-size: 1.2rem;
}

/* Alert Container for Pricing */
.alert-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 90%;
    max-width: 600px;
}

.custom-alert {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    animation: slideDown 0.3s ease-out;
    border-left: 4px solid;
}

.custom-alert.alert-error {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff 0%, #ffebee 100%);
}

.custom-alert.alert-success {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #fff 0%, #e8f5e9 100%);
}

.alert-icon {
    font-size: 1.5rem;
    min-width: 24px;
}

.alert-error .alert-icon {
    color: #dc3545;
}

.alert-success .alert-icon {
    color: #28a745;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #333;
}

.alert-message {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.alert-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.alert-close:hover {
    background: rgba(0,0,0,0.05);
    color: #333;
}

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

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

.alert-exit {
    animation: slideUp 0.3s ease-out forwards;
}

/* ============================================
   SUBSCRIPTION SUCCESS PAGE STYLES
   ============================================ */
.success-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.success-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.success-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
}

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

.success-header {
    background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.success-header::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%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.success-icon {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    animation: scaleIn 0.6s ease-out 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 4rem;
    animation: checkmark 0.8s ease-out 0.4s both;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.success-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    animation: fadeIn 0.6s ease-out 0.8s both;
}

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

.success-body {
    padding: 2.5rem 2rem;
}

.subscription-details {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-label i {
    color: var(--success);
    font-size: 1.1rem;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-align: right;
}

.detail-value.highlight {
    color: var(--success);
    font-size: 1.5rem;
}

.features-section {
    margin-bottom: 2rem;
}

.features-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.feature-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    background: #fff;
    border-color: var(--success);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    color: var(--success);
    font-size: 1.5rem;
    min-width: 24px;
}

.feature-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

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

.btn-action {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(233,30,99,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233,30,99,0.4);
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-action i {
    font-size: 1.1rem;
}

.info-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-left: 4px solid #ffc107;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-box i {
    color: #ff9800;
    font-size: 1.5rem;
    min-width: 24px;
}

.info-box-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.info-box-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.support-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.support-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.support-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.support-contacts {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.support-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border-radius: 50px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.support-contact:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.support-contact i {
    font-size: 1rem;
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--success);
    position: absolute;
    animation: confetti-fall 3s ease-out forwards;
    pointer-events: none;
}

@keyframes confetti-fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================
   PROFILE DETAIL PAGE STYLES
   ============================================ */
.profile-detail-section {
    background: #f8f9fa;
}

.profile-detail-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sticky-sidebar {
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.profile-detail-img {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.profile-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified-badge-large {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4caf50;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.profile-quick-info {
    padding: 20px;
}

.profile-quick-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.profile-id {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.quick-stats {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #e9ecef;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item i {
    width: 20px;
    color: var(--primary);
    font-size: 0.95rem;
}

.stat-item span {
    color: #555;
    font-weight: 500;
    font-size: 0.9rem;
}

.profile-for-badge {
    background: rgba(233, 30, 99, 0.1);
    border: 2px solid rgba(233, 30, 99, 0.2);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.profile-for-badge strong {
    color: var(--primary);
}

.action-buttons {
    margin-top: 15px;
}

.action-buttons .btn {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px;
}

.detail-section {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.section-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(233, 30, 99, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-heading i {
    color: var(--primary);
    font-size: 1rem;
}

.about-text {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.detail-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-item .label {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-item .label i {
    color: var(--primary);
    width: 14px;
    font-size: 0.85rem;
}

.detail-item .value {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    word-break: break-word;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.upgrade-prompt {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(194, 24, 91, 0.05));
    border-radius: 10px;
}

.upgrade-prompt i {
    color: var(--primary);
    opacity: 0.5;
}

.upgrade-prompt h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.upgrade-prompt p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.report-section {
    text-align: center;
    padding: 15px 0;
}

.report-section .btn-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

/* ============================================
   LOGIN & REGISTER PAGE STYLES
   ============================================ */
body.auth-page {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(194, 24, 91, 0.05));
    min-height: 100vh;
}

.login-container {
    max-width: 450px;
    width: 100%;
    margin: auto;
    padding: 20px;
}

.register-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.login-card,
.register-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.login-header,
.register-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 40px 30px;
    text-align: center;
    color: #fff;
}

.register-header {
    padding: 30px;
}

.login-header img,
.register-header img {
    height: 60px;
    margin-bottom: 15px;
}

.register-header img {
    height: 50px;
    margin-bottom: 10px;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.register-header .brand-name {
    font-size: 1.6rem;
}

.brand-name span {
    color: var(--gold);
}

.login-subtitle,
.register-subtitle {
    opacity: 0.95;
    font-size: 0.95rem;
}

.register-subtitle {
    font-size: 0.85rem;
}

.login-body,
.register-body {
    padding: 40px 30px;
}

.register-body .section-title {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(233, 30, 99, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.register-body .section-title i {
    font-size: 1.1rem;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label .required {
    color: var(--primary);
}

.input-group {
    position: relative;
}

.input-group .form-control {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--primary);
}

.forgot-password {
    text-align: right;
    margin-top: 8px;
}

.forgot-password a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.profile-type-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.profile-type-cards .profile-card {
    position: relative;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
}

.profile-type-cards .profile-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.profile-type-cards .profile-card.active {
    border-color: var(--primary);
    background: rgba(233, 30, 99, 0.05);
}

.profile-type-cards .profile-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.profile-type-cards .profile-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.profile-type-cards .profile-card label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    cursor: pointer;
}

.gender-options {
    display: flex;
    gap: 15px;
}

.gender-card {
    flex: 1;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.gender-card:hover {
    border-color: var(--primary);
    background: rgba(233, 30, 99, 0.05);
}

.gender-card.active {
    border-color: var(--primary);
    background: rgba(233, 30, 99, 0.1);
}

.gender-card input[type="radio"] {
    display: none;
}

.gender-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.gender-card label {
    cursor: pointer;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: block;
}

.input-group-text {
    background: rgba(233, 30, 99, 0.1);
    border: 2px solid #eee;
    border-right: none;
    color: var(--primary);
    font-weight: 600;
}

.divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: #999;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

.divider::before {
    margin-right: 15px;
}

.divider::after {
    margin-left: 15px;
}

.social-login {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.btn-social {
    flex: 1;
    border: 2px solid #eee;
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-social:hover {
    border-color: var(--primary);
    background: rgba(233, 30, 99, 0.05);
}

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

.btn-google {
    color: #ea4335;
}

.btn-facebook {
    color: #1877f2;
}

.register-link,
.login-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    color: #666;
}

.register-link a,
.login-link a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.register-link a:hover,
.login-link a:hover {
    text-decoration: underline;
}

.terms-text {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 20px;
}

.terms-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.terms-text a:hover {
    text-decoration: underline;
}

.alert {
    border-radius: 10px;
    border: none;
    font-size: 0.9rem;
}

.alert-danger {
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary);
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* ============================================
   GLOBAL FORM LOADER
   ============================================ */
/* Global Form Loader Styles */
.global-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.global-loader-overlay.active {
    display: flex;
    opacity: 1;
}

.global-loader-content {
    text-align: center;
    background: white;
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: loaderBounce 0.5s ease;
}

@keyframes loaderBounce {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.loader-spinner {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #a855f7;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
    border-top-color: #ec4899;
    animation-delay: 0.3s;
}

.spinner-ring:nth-child(3) {
    border-top-color: #8b5cf6;
    animation-delay: 0.6s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #ec4899;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    25% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.loader-text {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-subtext {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Prevent body scroll when loader is active */
body.loader-active {
    overflow: hidden;
}

/* Button loading state */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: btnSpinner 0.6s linear infinite;
}

@keyframes btnSpinner {
    to {
        transform: rotate(360deg);
    }
}


/* FOOTER */
footer {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-brand span {
    color: var(--gold);
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    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-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ANIMATIONS */
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .search-box {
        margin-top: -40px;
        padding: 25px;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
}


/* ============================================
   ENHANCED MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablets (768px to 1024px) */
@media (max-width: 1024px) {
    .story-grid,
    .mission-vision-grid,
    .why-choose-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stats-about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .team-about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .feature-about-list {
        gap: 20px;
    }
}

/* Mobile Devices (max 767px) */
@media (max-width: 767px) {
    /* Typography */
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    /* Search Box */
    .search-box {
        margin-top: -30px;
        padding: 20px;
        border-radius: 15px;
    }

    .search-box h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .form-select,
    .form-control {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .btn-search {
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* Features Section */
    .features {
        padding: 50px 0;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-card h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Profile Cards */
    .profile-card {
        margin-bottom: 20px;
    }

    .profile-img {
        height: 200px;
    }

    .profile-info h5 {
        font-size: 1rem;
    }

    .profile-info .age-loc {
        font-size: 0.85rem;
    }

    /* How it Works */
    .how-it-works {
        padding: 50px 0;
    }

    .step-card {
        padding: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-card h4 {
        font-size: 1rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }

    /* About Section */
    .about-story {
        padding: 50px 20px;
    }

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

    .story-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .story-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .story-image {
        height: 280px;
    }

    /* Mission & Vision */
    .mission-vision {
        padding: 50px 20px;
    }

    .about-section-title h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .about-section-title p {
        font-size: 0.9rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-card,
    .vision-card {
        padding: 25px;
        border-top-width: 4px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .mission-card i,
    .vision-card i {
        font-size: 28px;
    }

    .mission-card p,
    .vision-card p {
        font-size: 0.9rem;
    }

    /* Core Values */
    .values-section {
        padding: 50px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .value-item {
        padding: 25px;
        text-align: center;
    }

    .value-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
        font-size: 30px;
    }

    .value-item h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .value-item p {
        font-size: 0.85rem;
    }

    /* Statistics */
    .stats-about-section {
        padding: 50px 20px;
    }

    .stats-about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-about-number {
        font-size: 2rem;
    }

    .stat-about-label {
        font-size: 0.85rem;
    }

    /* Team Section */
    .team-about-section {
        padding: 50px 20px;
    }

    .team-about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-about-member-image {
        height: 250px;
    }

    .team-about-member-name {
        font-size: 1.1rem;
    }

    .team-about-member-role {
        font-size: 0.8rem;
    }

    .team-about-member-desc {
        font-size: 0.85rem;
    }

    .team-about-member-social {
        gap: 10px;
    }

    .team-about-member-social a {
        width: 30px;
        height: 30px;
    }

    /* Why Choose Us */
    .why-choose-about-us {
        padding: 50px 20px;
    }

    .why-choose-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-about-content h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .feature-about-list {
        gap: 15px;
    }

    .feature-about-item {
        gap: 15px;
    }

    .feature-about-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .feature-about-text h4 {
        font-size: 1rem;
    }

    .feature-about-text p {
        font-size: 0.85rem;
    }

    .why-choose-about-image img {
        border-radius: 15px;
    }

    /* Contact Page */
    .contact-hero {
        padding: 40px 20px;
    }

    .contact-hero h1 {
        font-size: 1.6rem;
    }

    .contact-hero p {
        font-size: 0.95rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-form-section {
        padding: 30px 20px;
    }

    .form-wrapper h2 {
        font-size: 1.4rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Pricing Page */
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .trust-badges {
        gap: 1.5rem;
        flex-direction: column;
    }

    .trust-badge {
        justify-content: center;
        font-size: 0.85rem;
    }

    .pricing-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        border-radius: 12px;
    }

    .card-header {
        padding: 1.5rem 1.2rem 1rem;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .plan-tagline {
        font-size: 0.85rem;
    }

    .plan-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .card-body {
        padding: 1.5rem 1.2rem;
    }

    .plan-description {
        font-size: 0.9rem;
    }

    .features-list li {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }

    .duration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-purchase {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem 1.2rem;
    }

    .info-card i {
        font-size: 2.5rem;
    }

    .info-card h4 {
        font-size: 1rem;
    }

    .info-card p {
        font-size: 0.85rem;
    }

    /* Success Page */
    .success-container {
        padding: 1rem;
    }

    .success-header {
        padding: 2rem 1.5rem;
    }

    .success-icon {
        width: 100px;
        height: 100px;
    }

    .success-icon i {
        font-size: 3rem;
    }

    .success-title {
        font-size: 1.8rem;
    }

    .success-subtitle {
        font-size: 0.95rem;
    }

    .success-body {
        padding: 1.5rem 1rem;
    }

    .subscription-details {
        padding: 1.5rem;
    }

    .detail-row {
        padding: 0.8rem 0;
    }

    .detail-label {
        font-size: 0.85rem;
    }

    .detail-value {
        font-size: 0.9rem;
    }

    .detail-value.highlight {
        font-size: 1.3rem;
    }

    .features-title {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 0.8rem;
    }

    .feature-item i {
        font-size: 1.2rem;
    }

    .feature-text {
        font-size: 0.8rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .btn-action {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .info-box {
        padding: 1.2rem;
    }

    .info-box-content h4 {
        font-size: 0.9rem;
    }

    .info-box-content p {
        font-size: 0.8rem;
    }

    /* Profile Detail */
    .profile-detail-img {
        height: 250px;
    }

    .detail-section {
        padding: 15px;
        margin-bottom: 12px;
    }

    .section-heading {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .detail-item {
        padding: 10px;
    }

    .detail-item .label {
        font-size: 0.75rem;
    }

    .detail-item .value {
        font-size: 0.9rem;
    }

    /* Login & Register */
    .login-container {
        padding: 15px;
    }

    .login-card,
    .register-card {
        border-radius: 15px;
    }

    .login-header,
    .register-header {
        padding: 30px 20px;
    }

    .login-header img,
    .register-header img {
        height: 45px;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .login-body,
    .register-body {
        padding: 25px 20px;
    }

    .register-body .section-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .profile-type-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .profile-type-cards .profile-card {
        padding: 12px 8px;
    }

    .profile-type-cards .profile-card i {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .profile-type-cards .profile-card label {
        font-size: 0.8rem;
    }

    .gender-options {
        gap: 10px;
    }

    .gender-card {
        padding: 12px;
    }

    .gender-card i {
        font-size: 1.2rem;
    }

    .gender-card label {
        font-size: 0.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .social-login {
        gap: 10px;
    }

    .btn-social {
        padding: 10px;
        font-size: 0.85rem;
    }

    .btn-social i {
        font-size: 1rem;
    }

    .divider {
        margin: 20px 0;
        font-size: 0.8rem;
    }

    /* Navbar */
    .navbar-brand {
        font-size: 1.3rem;
    }

    .navbar-brand img {
        height: 35px;
    }

    .nav-link {
        margin: 0 5px;
        font-size: 0.9rem;
    }

    .btn-login,
    .btn-register {
        padding: 6px 15px;
        font-size: 0.85rem;
        border-radius: 20px;
    }

    /* Breadcrumb */
    .breadcrumb-section {
        padding: 15px 0;
    }

    .breadcrumb-item {
        font-size: 0.8rem;
    }

    .page-title {
        font-size: 1.2rem;
    }

    .page-subtitle {
        font-size: 0.8rem;
    }

    /* Footer */
    footer {
        padding: 40px 0 20px;
    }

    .footer-brand {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    footer p {
        font-size: 0.85rem;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    /* CTA Sections */
    .about-cta-final {
        padding: 50px 20px;
    }

    .about-cta-final h2 {
        font-size: 1.6rem;
    }

    .about-cta-final p {
        font-size: 0.95rem;
    }

    .about-cta-buttons {
        gap: 10px;
        flex-direction: column;
    }

    .btn-primary-about,
    .btn-outline-about {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
    }

    .contact-cta {
        padding: 40px 20px;
    }

    .contact-cta h2 {
        font-size: 1.6rem;
    }

    .contact-cta p {
        font-size: 0.9rem;
    }

    .cta-buttons {
        gap: 10px;
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
    }

    /* FAQ */
    .faq-section {
        padding: 40px 20px;
    }

    .faq-wrapper {
        max-width: 100%;
    }

    .faq-header h2 {
        font-size: 1.5rem;
    }

    .faq-header p {
        font-size: 0.9rem;
    }

    .faq-question h5 {
        font-size: 0.9rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
        padding: 0 15px 15px;
    }

    /* Loader */
    .global-loader-content {
        padding: 30px 35px;
        border-radius: 15px;
    }

    .loader-spinner {
        width: 70px;
        height: 70px;
        margin: 0 auto 15px;
    }

    .spinner-ring {
        border-width: 3px;
    }

    .loader-icon {
        font-size: 24px;
    }

    .loader-text {
        font-size: 18px;
    }

    .loader-subtext {
        font-size: 12px;
    }

    /* Testimonials */
    .testimonials {
        padding: 50px 0;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-card .quote {
        font-size: 2rem;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
    }

    .testimonial-author h6 {
        font-size: 0.9rem;
    }

    /* Success Stories */
    .success-stories {
        padding: 50px 0;
    }

    .story-card {
        margin-bottom: 15px;
    }

    .story-img {
        height: 200px;
    }

    .story-content {
        padding: 20px;
    }

    .story-content h5 {
        font-size: 1rem;
    }

    .story-content p {
        font-size: 0.85rem;
    }

    /* Stats Section */
    .stats-section {
        padding: 40px 0;
    }

    .stats-section h2 {
        font-size: 1.8rem;
    }

    .stats-section p {
        font-size: 0.95rem;
    }

    /* About Feature Items */
    .about-feature-item {
        margin-bottom: 15px;
    }

    .about-feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 12px;
    }

    .about-feature-item div h5 {
        font-size: 0.95rem;
    }

    .about-feature-item div p {
        font-size: 0.85rem;
    }
}

/* Small Phones (max 480px) */
@media (max-width: 480px) {
    /* Hero */
    .hero {
        min-height: 400px;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .stats-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
        margin: 3px;
    }

    /* Search Box */
    .search-box {
        margin-top: -20px;
        padding: 15px;
    }

    .search-box h3 {
        font-size: 1rem;
    }

    /* Forms */
    .form-select,
    .form-control {
        padding: 9px 10px;
        font-size: 0.9rem;
    }

    .btn-search {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    /* Buttons */
    .btn-interest,
    .btn-purchase,
    .btn-action {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    /* Sections */
    .features,
    .profiles,
    .how-it-works,
    .testimonials,
    .success-stories {
        padding: 40px 0;
    }

    /* Grids */
    .profile-type-cards {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .contact-cards,
    .pricing-cards,
    .features-grid,
    .info-cards {
        grid-template-columns: 1fr;
    }

    .stats-about-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Typography */
    .about-section-title h2,
    .section-title h2,
    .about-cta-final h2,
    .contact-cta h2 {
        font-size: 1.4rem;
    }

    .section-title p,
    .about-section-title p {
        font-size: 0.85rem;
    }

    /* Cards */
    .feature-card,
    .profile-card,
    .story-card,
    .testimonial-card,
    .contact-card,
    .pricing-card,
    .mission-card,
    .vision-card,
    .detail-section {
        border-radius: 10px;
        padding: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.2rem;
    }

    /* Images */
    .profile-img,
    .story-img,
    .profile-detail-img {
        height: 180px;
    }

    .story-image {
        height: 200px;
    }

    /* Specific Sections */
    .brand-name {
        font-size: 1.2rem;
    }

    .navbar-brand img {
        height: 30px;
    }

    .logo {
        height: 25px;
    }

    /* About Page */
    .about-story,
    .mission-vision,
    .values-section,
    .team-about-section,
    .why-choose-about-us {
        padding: 40px 0;
    }

    .story-content h2,
    .why-choose-about-content h2,
    .about-content h2 {
        font-size: 1.4rem;
    }

    .feature-about-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .team-about-member-name {
        font-size: 1rem;
    }

    .value-item h4 {
        font-size: 0.95rem;
    }

    /* Contact Page */
    .contact-hero {
        padding: 30px 15px;
    }

    .contact-form-section {
        padding: 20px 15px;
    }

    .form-row {
        gap: 8px;
    }

    /* Login/Register */
    .login-container {
        padding: 10px;
    }

    .login-header,
    .register-header {
        padding: 25px 15px;
    }

    .login-body,
    .register-body {
        padding: 20px 15px;
    }

    .btn-login,
    .btn-register {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Footer */
    .footer-brand {
        font-size: 1.2rem;
    }

    .footer-title {
        font-size: 0.95rem;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    /* Spacing */
    .about-section-title {
        margin-bottom: 40px;
    }

    .about-about-buttons {
        gap: 8px;
    }

    /* Hide elements on very small screens if needed */
    .stats-badge {
        display: inline-block;
    }
}

/* Extra Small (max 360px) */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.2rem;
    }

    .button,
    .btn {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}