@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap");


/* ==========================================
    COMMON STYLES FOR ALL PAGES
========================================== */
/* :root {
    --primary-color: #e94b6b;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --light-bg: #eef6ff;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
} */
 :root {
    /* Brand Colors */
    --primary-color: #e94b6b;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;

    /* Backgrounds */
    --light-bg: #eef6ff;              /* Light Blue Background */
    --white: #ffffff;

    /* Text */
    --text-dark: #1e2a38;
    --text-light: #6b7c93;

    /* Borders */
    --border-color: #d6e4f0;

    /* Status */
    --success-color: #2ecc71;
    --danger-color: #e74c3c;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--light-bg);
}

/* ==========================================
    HEADER STYLES
========================================== */
.modern-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-modern {
    display: flex;
    align-items: center;
}

.logo-modern img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.notification-icon {
    position: relative;
    color: var(--text-dark);
    font-size: 22px;
    transition: color 0.3s ease;
}

.notification-icon:hover {
    color: var(--primary-color);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.btn-login {
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-login:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-signup {
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-signup:hover {
    background: #d63c5c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 75, 107, 0.3);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(233, 75, 107, 0.9) 10%, rgba(44, 62, 80, 0.85) 20%),
        url('../images/banner/wedding-banner2.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 56px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.hero-title .highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Search Form */
.search-form-modern {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.form-group-modern {
    position: relative;
}

.form-group-modern select,
.form-group-modern input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
}

.form-group-modern select:focus,
.form-group-modern input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 75, 107, 0.1);
}

.form-group-modern::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-light);
    font-size: 12px;
}

.btn-search {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-search:hover {
    background: #d63c5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 75, 107, 0.4);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

.trust-badge .icon {
    width: 22px;
    height: 22px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Stats Section */
.stats-section {
    background: var(--light-bg);
    padding: 60px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg,#fdf2f8 0%,#f3e9ff 100%);
    /* background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); */
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Add subtle pattern to background */
.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(233, 75, 107, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(243, 156, 18, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(233, 75, 107, 0.08);
}

/* Gradient overlay on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(233, 75, 107, 0.02) 0%,
            rgba(243, 156, 18, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(233, 75, 107, 0.15);
    border-color: rgba(233, 75, 107, 0.2);
}

/* Card Decorations */
.card-decoration {
    position: absolute;
    opacity: 0.6;
    transition: all 0.4s ease;
    pointer-events: none;
}

.card-decoration.top-left {
    top: -10px;
    left: -10px;
}

.card-decoration.bottom-right {
    bottom: -10px;
    right: -10px;
    transform: rotate(180deg);
}

.feature-card:hover .card-decoration {
    opacity: 1;
    transform: scale(1.1);
}

.feature-card:hover .card-decoration.bottom-right {
    transform: rotate(180deg) scale(1.1);
}

/* Floating Hearts/Icons */
.floating-hearts {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.1;
}

.heart-small {
    position: absolute;
    font-size: 20px;
    animation: float 6s ease-in-out infinite;
    color: var(--primary-color);
}

.heart-small:nth-child(2) {
    animation-delay: 2s;
    animation-duration: 7s;
}

.heart-small:nth-child(3) {
    animation-delay: 4s;
    animation-duration: 8s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(5deg);
    }

    50% {
        transform: translateY(-5px) rotate(-5deg);
    }

    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.feature-card:hover .floating-hearts {
    opacity: 0.2;
}

/* Feature Icon */
.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: var(--white);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(233, 75, 107, 0.3);
    transition: all 0.4s ease;
}

/* Icon glow effect on hover */
.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.6;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(233, 75, 107, 0.4);
}

/* Feature Title */
.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--primary-color);
}

/* Feature Description */
.feature-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Shine effect on hover */
.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.feature-card:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 15px;
    }
}

/* Additional decorative elements for more visual interest */
.feature-card:nth-child(1) {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f7 100%);
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, #ffffff 0%, #f5fff8 100%);
}

/* Pulse animation for icons */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.feature-icon svg {
    animation: pulse 3s ease-in-out infinite;
}

/* Success Stories */
.stories-section {
    background: var(--light-bg);
    padding: 80px 20px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.story-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.story-content {
    padding: 30px;
}

.story-names {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.story-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .search-form-modern {
        padding: 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 32px;
    }
}

/* ==========================================
    PAGE HEADER STYLES
========================================== */
.modern-page-header {
    background: linear-gradient(135deg, rgba(233, 75, 107, 0.95) 0%, rgba(44, 62, 80, 0.9) 100%),
        url('../images/page-header.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
}

.page-header-content {
    text-align: center;
    color: white;
}

.page-header-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.modern-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.modern-breadcrumb li {
    color: rgba(255, 255, 255, 0.9);
}

.modern-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-breadcrumb a:hover {
    color: var(--accent-color);
}

.modern-breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
    SECTION STYLES
========================================== */
.modern-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-intro h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
    CARD STYLES
========================================== */
.modern-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

/* ==========================================
    BUTTON STYLES
========================================== */
.btn-primary-modern {
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-modern:hover {
    background: #d63c5c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 75, 107, 0.3);
    color: white;
}

.btn-secondary-modern {
    padding: 12px 30px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-modern:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
    color: white;
}

.btn-success-modern {
    padding: 10px 25px;
    background: var(--success-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-success-modern:hover {
    background: #229954;
    transform: translateY(-2px);
}

.btn-danger-modern {
    padding: 10px 25px;
    background: var(--danger-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-danger-modern:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* ==========================================
    FORM STYLES
========================================== */
.modern-form-group {
    margin-bottom: 20px;
}

.modern-form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.modern-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
}

.modern-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 75, 107, 0.1);
}

textarea.modern-form-control {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
    FOOTER STYLES
========================================== */
.modern-footer {
    background: linear-gradient(135deg, var(--secondary-color), #1a252f);
    color: var(--white);
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
}

/* ==========================================
    UTILITY CLASSES
========================================== */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.padding-tb {
    padding: 80px 0;
}

/* ==========================================
    RESPONSIVE
========================================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .page-header-title {
        font-size: 32px;
    }

    .section-intro h3 {
        font-size: 28px;
    }

    .modern-page-header {
        padding: 100px 0 60px;
    }

    .modern-section {
        padding: 50px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Profile Specific Styles */
.profile-cover-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 300px;
    margin-top: 70px;
    position: relative;
}

.profile-header-content {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.profile-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.profile-image-large {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid white;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-edit-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile-edit-btn:hover {
    background: #d63c5c;
    transform: scale(1.1);
}

.profile-name-section {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-top: 20px;
}

.profile-name-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.profile-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.profile-content-section {
    padding: 140px 0 80px;
}

/* Tabs Styling */
.profile-tabs {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.profile-tabs .nav-tabs {
    border: none;
    gap: 10px;
}

.profile-tabs .nav-link {
    border: none;
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.profile-tabs .nav-link:hover {
    background: var(--primary-color);
    color: white;
}

.profile-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
}

/* Info Cards */
.info-card-modern {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.info-card-header h6 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.info-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list-modern li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-list-modern li:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 15px;
}

.info-value {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item.blurred img {
    filter: blur(10px);
}

.upload-box {
    aspect-ratio: 1;
    border: 3px dashed var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.upload-box:hover {
    border-color: var(--primary-color);
    background: var(--white);
}

.upload-box i {
    font-size: 40px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.upload-box span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Blocked Users */
.blocked-user-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.blocked-user-card:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.blocked-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blocked-user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.blocked-user-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.empty-state-box {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-box i {
    font-size: 60px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.empty-state-box p {
    font-size: 16px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .profile-image-large {
        width: 140px;
        height: 140px;
    }

    .profile-name-section h3 {
        font-size: 24px;
    }

    .profile-content-section {
        padding: 100px 0 60px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}


/* Contact Page Specific Styles */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-card h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info-card h5 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-text {
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
}

/* Pricing Page Specific Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-price span {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
}

.pricing-feature i {
    font-size: 20px;
    flex-shrink: 0;
}

.pricing-feature.included i {
    color: var(--success-color);
}

.pricing-feature.not-included {
    opacity: 0.4;
}

.pricing-feature.not-included i {
    color: var(--danger-color);
}

.pricing-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 75, 107, 0.4);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
}

.about-content {
    background: var(--white);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.about-content h4 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.about-content h6 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-style: italic;
}

.about-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-feature {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.about-feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-feature h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.about-feature p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Requests Page Specific Styles */
.requests-container {
    max-width: 900px;
    margin: 0 auto;
}

.request-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.request-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.request-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.request-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--border-color);
    flex-shrink: 0;
}

.request-info {
    flex: 1;
}

.request-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.request-details {
    display: flex;
    gap: 20px;
    margin-bottom: 8px;
}

.request-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-light);
}

.request-detail-item i {
    color: var(--primary-color);
}

.request-time {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.request-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.request-actions button,
.request-actions form {
    margin: 0;
}

.btn-accept {
    padding: 10px 25px;
    background: var(--success-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-accept:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.btn-reject {
    padding: 10px 25px;
    background: var(--danger-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-reject:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.no-requests {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-requests-icon {
    font-size: 80px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-requests h4 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.no-requests p {
    font-size: 16px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .request-content {
        flex-direction: column;
        text-align: center;
    }

    .request-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
        justify-content: center;
    }

    .request-details {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Chat Page Specific Styles */
.chat-container {
    max-width: 1000px;
    margin: 0 auto;
}

.chat-header-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.chat-user-info h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.chat-user-status {
    font-size: 14px;
    color: var(--success-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-user-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    display: inline-block;
}

.chat-messages-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 500px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message-wrapper {
    display: flex;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

.message-wrapper.sent {
    flex-direction: row-reverse;
}

.message-bubble {
    max-width: 60%;
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.message-wrapper.received .message-bubble {
    background: var(--light-bg);
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
}

.message-wrapper.sent .message-bubble {
    background: linear-gradient(135deg, var(--primary-color), #d63c5c);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 5px;
    text-align: right;
}

.message-wrapper.received .message-time {
    text-align: left;
}

.chat-input-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.chat-input-form {
    display: flex;
    gap: 15px;
}

.chat-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 15px;
    transition: all 0.3s ease;
    resize: none;
}

.chat-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 75, 107, 0.1);
}

.chat-send-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.chat-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 75, 107, 0.4);
}

.chat-send-btn i {
    font-size: 18px;
}

.no-messages {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-messages i {
    font-size: 60px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.no-messages p {
    font-size: 16px;
    margin: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar Styling */
.chat-messages-card::-webkit-scrollbar {
    width: 6px;
}

.chat-messages-card::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
}

.chat-messages-card::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .message-bubble {
        max-width: 80%;
    }

    .chat-input-form {
        flex-direction: column;
    }

    .chat-send-btn {
        width: 100%;
        justify-content: center;
    }

    .chat-messages-card {
        height: 400px;
    }
}

/* Update Profile Specific Styles */
.update-form-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.update-form-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.update-form-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section {
    margin-bottom: 30px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

/* Member Profile View Styles */
.profile-action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-send-request {
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-send-request:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 75, 107, 0.4);
}

.btn-request-sent {
    padding: 12px 25px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.btn-message {
    padding: 12px 25px;
    background: var(--success-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-message:hover {
    background: #229954;
    transform: translateY(-2px);
    color: white;
}

.btn-block {
    padding: 12px 25px;
    background: var(--danger-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-block:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-unblock {
    background: var(--text-light);
}

.btn-unblock:hover {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .profile-actions {
        flex-direction: column;
    }

    .profile-action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .profile-action-buttons button,
    .profile-action-buttons a,
    .profile-action-buttons form {
        width: 100%;
    }

    .btn-send-request,
    .btn-message,
    .btn-block,
    .btn-request-sent {
        width: 100%;
        justify-content: center;
    }
}

/* Register Page Specific Styles */
.auth-section {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    background: linear-gradient(135deg,
            rgba(77, 163, 255, 0.08),
            rgba(111, 183, 255, 0.08));
    background: linear-gradient(135deg, rgba(233, 75, 107, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
}

.auth-container {
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
}

.auth-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-logo {
    width: 150px;
    margin-bottom: 20px;
}

.auth-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.auth-subtitle {
    font-size: 16px;
    color: var(--text-light);
}

.auth-form-group {
    margin-bottom: 25px;
    position: relative;
}

.auth-form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.auth-form-control {
    width: 100%;
    padding: 15px 20px;
    padding-left: 50px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
}

.auth-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(233, 75, 107, 0.1);
}

.auth-input-icon {
    position: absolute;
    left: 18px;
    top: 25%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 20px;
}

.auth-form-group.has-label .auth-input-icon {
    top: calc(25% + 14px);
}

.auth-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 75, 107, 0.4);
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.auth-footer-text {
    color: var(--text-light);
    font-size: 15px;
}

.auth-footer-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-footer-link:hover {
    color: var(--accent-color);
}

.error-message {
    color: var(--danger-color);
    font-size: 13px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.password-strength {
    margin-top: 8px;
    font-size: 12px;
}

.strength-bar {
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    margin-top: 5px;
    overflow: hidden;
}

.strength-bar-fill {
    height: 100%;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .auth-card {
        padding: 40px 25px;
    }

    .auth-title {
        font-size: 26px;
    }
}

/* Main legal list */
.legal-list {
    counter-reset: section;
    list-style: none;
    padding-left: 0;
}

.legal-list>li {
    counter-increment: section;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-list>li::before {
    content: counter(section) "). ";
    font-weight: 700;
}

/* Sub list (numbered) */
.legal-list ul {
    counter-reset: subsection;
    list-style: none;
    margin-top: 10px;
    padding-left: 30px;
}

.legal-list ul:not(.dash-list)>li {
    counter-increment: subsection;
    margin-bottom: 10px;
    font-weight: normal;
}

.legal-list ul:not(.dash-list)>li::before {
    content: counter(section) "." counter(subsection) " ";
    font-weight: 600;
}

/* Dash sub-points */
.dash-list {
    list-style: none;
    margin-top: 8px;
    padding-left: 25px;
}

.dash-list li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 15px;
}

.dash-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    font-weight: 600;
}

/* Modern Members Page Styles */
.modern-page-header {
    background: linear-gradient(135deg, rgba(233, 75, 107, 0.95) 0%, rgba(44, 62, 80, 0.9) 100%),
        url('../images/page-header.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
}

.page-header-content {
    text-align: center;
    color: white;
}

.page-header-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.modern-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.modern-breadcrumb li {
    color: rgba(255, 255, 255, 0.9);
}

.modern-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-breadcrumb a:hover {
    color: #f39c12;
}

.modern-breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.6);
}

/* Members Section */
.modern-members-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-intro h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-intro p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
}

/* Filter Section */
.filter-section {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.filter-group {
    position: relative;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #e94b6b;
    box-shadow: 0 0 0 3px rgba(233, 75, 107, 0.1);
}

.btn-filter {
    padding: 12px 30px;
    background: #e94b6b;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    background: #d63c5c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 75, 107, 0.3);
}

/* Member Cards Grid */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.member-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 120%;
    /* 5:6 aspect ratio */
    overflow: hidden;
    background: #f0f0f0;
}

.member-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-card:hover .member-image {
    transform: scale(1.05);
}

.member-status {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 15px;
    height: 15px;
    background: #27ae60;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.member-verified {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e94b6b;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.member-name:hover {
    color: #e94b6b;
}

.member-details {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 12px;
}

.member-detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.member-location {
    font-size: 13px;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.btn-view-profile {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #e94b6b, #d63c5c);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-view-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 75, 107, 0.4);
    color: white;
}

/* Pagination */
.modern-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    padding: 30px 0;
}

.pagination-list {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-item {
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: var(--white);
    color: #2c3e50;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-link:hover:not(.disabled) {
    background: #e94b6b;
    color: white;
    border-color: #e94b6b;
    transform: translateY(-2px);
}

.pagination-item.active .page-link {
    background: #e94b6b;
    color: white;
    border-color: #e94b6b;
}

.pagination-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state-icon {
    font-size: 80px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.empty-state h4 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 16px;
    color: #6c757d;
}

/* Loading State */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid #e94b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .page-header-title {
        font-size: 32px;
    }

    .members-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .section-intro h3 {
        font-size: 28px;
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }

    .modern-page-header {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Update Profile Specific Styles */
.update-form-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.update-form-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.update-form-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section {
    margin-bottom: 30px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

/* Profile Image Upload Section */
.profile-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
    margin-bottom: 30px;
}

.profile-image-preview-wrapper {
    position: relative;
}

.profile-image-preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.profile-image-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 4px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.profile-image-overlay:hover {
    background: #d63c5c;
    transform: scale(1.1);
}

.profile-image-overlay i {
    color: white;
    font-size: 20px;
}

.profile-image-info {
    flex: 1;
}

.profile-image-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.profile-image-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn-change-photo {
    padding: 10px 20px;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-change-photo:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .profile-image-section {
        flex-direction: column;
        text-align: center;
    }

    .profile-image-preview {
        width: 120px;
        height: 120px;
    }
}


/* ==========================================
    PHOTO ZOOM MODAL STYLES
========================================== */
.photo-zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.photo-zoom-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.photo-zoom-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.photo-zoom-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 25px 80px rgba(233, 75, 107, 0.3);
    border: 5px solid var(--white);
}

.photo-zoom-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(233, 75, 107, 0.4);
}

.photo-zoom-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--danger-color);
}

.photo-zoom-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    font-size: 14px;
    opacity: 0.8;
}

.photo-zoom-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.zoom-control-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.zoom-control-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.zoom-control-btn:active {
    transform: scale(0.95);
}

/* Zoom cursor for images */
.member-image,
.profile-image-large,
.gallery-item img,
.story-image {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.member-image:hover,
.profile-image-large:hover {
    transform: scale(1.05);
}

/* Zoom indicator overlay */
.zoom-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(233, 75, 107, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    color: var(--white);
    font-size: 24px;
}

.member-image-wrapper:hover .zoom-indicator {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .photo-zoom-container {
        max-width: 95%;
    }

    .photo-zoom-close {
        top: 10px;
        right: 10px;
    }

    .photo-zoom-info {
        bottom: 10px;
        font-size: 12px;
    }

    .photo-zoom-controls {
        bottom: 80px;
        padding: 10px 15px;
    }

    .zoom-control-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Loading spinner for image */
.photo-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Pinch zoom for touch devices */
.photo-zoom-image.draggable {
    cursor: grab;
}

.photo-zoom-image.dragging {
    cursor: grabbing;
}

.approval-alert {
    background: #fff3cd;
    color: #856404;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 5px solid #ffc107;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.approval-alert i {
    margin-right: 8px;
}

.guest-alert {
    background: #fff3cd;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    border-left: 5px solid #ffc107;
}

.guest-alert h4 {
    margin-bottom: 10px;
}

.guest-buttons {
    margin-top: 15px;
}

.guest-buttons a {
    margin: 5px;
}
