﻿/* ============================================================================
   MATRIMONIAL PORTAL - PREMIUM GLASSMORPHISM STYLESHEET
   Theme: Premium Pink & White with Glassmorphism
   Version: 2.0
   ============================================================================ */

/* ============================================================================
   1. CSS VARIABLES - Premium Pink & White Color Palette
   ============================================================================ */
:root {
    /* Primary Pink Colors */
    --primary-pink: #E91E63;
    --dark-pink: #C2185B;
    --light-pink: #F8BBD0;
    --ultra-light-pink: #FCE4EC;
    /* Legacy Support (keeping for backwards compatibility) */
    --pink-primary: #E91E63;
    --pink-dark: #C2185B;
    --pink-light: #F8BBD0;
    --pink-lighter: #FCE4EC;
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-lightest: #F8F9FA;
    --gray-lighter: #F3F4F6;
    --gray-light: #E5E7EB;
    --gray-medium: #6C757D;
    --gray-dark: #343A40;
    --text-dark: #333333;
    --text-light: #666666;
    /* Status Colors */
    --success: #4CAF50;
    --warning: #FFC107;
    --danger: #DC3545;
    --info: #2196F3;
    /* Special Colors */
    --gold: #FFD700;
    --verified-green: #4CAF50;
    /* Glassmorphism Variables */
    --glass-white: rgba(255, 255, 255, 0.85);
    --glass-light: rgba(255, 255, 255, 0.6);
    --glass-pink: rgba(233, 30, 99, 0.1);
    --glass-border: rgba(233, 30, 99, 0.2);
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(233, 30, 99, 0.08);
    --shadow-md: 0 8px 20px rgba(233, 30, 99, 0.12);
    --shadow-lg: 0 20px 60px rgba(233, 30, 99, 0.15);
    --shadow-pink: 0 10px 30px rgba(233, 30, 99, 0.3);
}

/* ============================================================================
   2. GLOBAL STYLES
   ============================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--ultra-light-pink) 0%, var(--white) 50%, var(--light-pink) 100%);
}

main {
    flex: 1;
}

/* Links */
a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        color: var(--dark-pink);
        text-decoration: none;
    }

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-pink);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 800;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

/* ============================================================================
   3. GLASSMORPHISM UTILITIES
   ============================================================================ */

/* Glass Cards */
.glass-card {
    background: var(--glass-white);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-md), inset 0 0 40px rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

    .glass-card:hover {
        box-shadow: var(--shadow-lg), inset 0 0 50px rgba(255, 255, 255, 0.6);
        transform: translateY(-5px);
    }

.glass-card-light {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(233, 30, 99, 0.15);
}

/* Glass Backgrounds */
.bg-glass {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
}

.bg-glass-light {
    background: var(--glass-light);
    backdrop-filter: blur(15px);
}

.bg-glass-pink {
    background: var(--glass-pink);
    backdrop-filter: blur(10px);
}

/* Blur Effect */
.blur-bg {
    backdrop-filter: blur(20px);
}

/* ============================================================================
   4. CUSTOM BUTTON CLASSES
   ============================================================================ */

/* Primary Pink Gradient Button */
.btn-maroon,
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--dark-pink) 100%);
    border: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-pink);
    position: relative;
    overflow: hidden;
}

    .btn-maroon::before,
    .btn-primary-custom::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-maroon:hover,
    .btn-primary-custom:hover {
        background: linear-gradient(135deg, var(--dark-pink) 0%, var(--primary-pink) 100%);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4);
    }

        .btn-maroon:hover::before,
        .btn-primary-custom:hover::before {
            width: 300px;
            height: 300px;
        }

    .btn-maroon:active,
    .btn-primary-custom:active {
        transform: translateY(-1px);
    }

    .btn-maroon:disabled,
    .btn-primary-custom:disabled {
        background: linear-gradient(135deg, #999 0%, #aaa 100%);
        cursor: not-allowed;
        box-shadow: none;
        opacity: 0.65;
    }

/* Outline Pink Button */
.btn-maroon-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-maroon-outline:hover {
        background: linear-gradient(135deg, var(--primary-pink) 0%, var(--dark-pink) 100%);
        border-color: var(--primary-pink);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: var(--shadow-pink);
    }

/* Light Pink Button */
.btn-maroon-light {
    padding: 14px 32px;
    background: var(--light-pink);
    border: none;
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .btn-maroon-light:hover {
        background: var(--primary-pink);
        color: var(--white);
        transform: translateY(-2px);
    }

/* Button Sizes */
.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ============================================================================
   5. NAVBAR STYLES
   ============================================================================ */
.navbar-maroon {
    background: rgba(233, 30, 99, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.2);
    padding: 1rem 0;
}

    .navbar-maroon .navbar-brand {
        color: var(--white) !important;
        font-weight: 800;
        font-size: 1.75rem;
        letter-spacing: 0.5px;
    }

        .navbar-maroon .navbar-brand:hover {
            color: rgba(255, 255, 255, 0.9) !important;
        }

    .navbar-maroon .nav-link {
        color: rgba(255, 255, 255, 0.95) !important;
        font-weight: 600;
        margin: 0 10px;
        padding: 10px 20px;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

        .navbar-maroon .nav-link:hover {
            color: var(--white) !important;
            background-color: rgba(255, 255, 255, 0.15);
        }

        .navbar-maroon .nav-link.active {
            color: var(--white) !important;
            background-color: rgba(255, 255, 255, 0.2);
        }

    .navbar-maroon .dropdown-menu {
        background: var(--glass-white);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(233, 30, 99, 0.2);
        border-radius: 15px;
        box-shadow: var(--shadow-md);
        padding: 10px;
    }

    .navbar-maroon .dropdown-item {
        color: var(--text-dark);
        padding: 10px 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

        .navbar-maroon .dropdown-item:hover {
            background: linear-gradient(135deg, var(--primary-pink) 0%, var(--dark-pink) 100%);
            color: var(--white);
        }

        .navbar-maroon .dropdown-item.active {
            background: var(--primary-pink);
            color: var(--white);
        }

/* ============================================================================
   6. CARD STYLES
   ============================================================================ */
.card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

    .card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-5px);
    }

/* Profile Card */
.profile-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(233, 30, 99, 0.15);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    height: 100%;
}

    .profile-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(233, 30, 99, 0.3);
    }

/* Pink Header Card */
.card-maroon-header {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--dark-pink) 100%);
    color: var(--white);
    border: none;
    border-radius: 20px 20px 0 0;
    padding: 20px;
}

    .card-maroon-header h5,
    .card-maroon-header h6 {
        color: var(--white);
    }

/* Card with Image */
.card-img-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ultra-light-pink) 0%, var(--light-pink) 100%);
    border-radius: 20px 20px 0 0;
}

    .card-img-wrapper img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.profile-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

/* ============================================================================
   7. FORM STYLES
   ============================================================================ */
.form-control {
    border: 2px solid rgba(233, 30, 99, 0.2);
    border-radius: 15px;
    padding: 14px 18px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: var(--text-dark);
}

    .form-control:focus {
        border-color: var(--primary-pink);
        background: var(--white);
        box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
        outline: none;
    }

    .form-control::placeholder {
        color: rgba(233, 30, 99, 0.4);
    }

    .form-control.is-invalid {
        border-color: var(--danger);
    }

        .form-control.is-invalid:focus {
            border-color: var(--danger);
            box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
        }

.form-select {
    border: 2px solid rgba(233, 30, 99, 0.2);
    border-radius: 15px;
    padding: 14px 18px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .form-select:focus {
        border-color: var(--primary-pink);
        background: var(--white);
        box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
        outline: none;
    }

.form-label {
    font-weight: 600;
    color: var(--dark-pink);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.input-group-text {
    background: rgba(233, 30, 99, 0.08);
    border: 2px solid rgba(233, 30, 99, 0.2);
    border-right: none;
    color: var(--primary-pink);
    padding: 14px 16px;
    border-radius: 15px 0 0 15px;
    transition: all 0.3s ease;
}

.input-group:focus-within .input-group-text {
    border-color: var(--primary-pink);
    background: rgba(233, 30, 99, 0.12);
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 15px 15px 0;
}

/* ============================================================================
   8. BADGE STYLES
   ============================================================================ */
.badge {
    padding: 8px 16px;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Verified Badge - Green */
.badge-verified {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

    .badge-verified::before {
        content: "✓";
        font-size: 1rem;
    }

/* Premium Badge - Gold */
.badge-premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333333;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

    .badge-premium::before {
        content: "⭐";
        font-size: 1rem;
    }

/* Pending Badge */
.badge-pending {
    background: #FFC107;
    color: #333333;
}

/* Pink Badge */
.badge-maroon {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--dark-pink) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* ============================================================================
   9. HERO SECTION
   ============================================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ultra-light-pink) 0%, var(--light-pink) 50%, var(--white) 100%);
    padding: 120px 20px 80px;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('../images/hero-bg.jpg');
        background-size: cover;
        background-position: center;
        opacity: 0.12;
        z-index: 0;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(233, 30, 99, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        top: -200px;
        right: -200px;
        animation: float 20s ease-in-out infinite;
        z-index: 0;
    }

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-50px, 50px) scale(1.1);
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--dark-pink) 0%, var(--primary-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================================
   10. FOOTER STYLES
   ============================================================================ */
.footer-maroon {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--dark-pink) 100%);
    color: var(--white);
    padding: 60px 0 0;
    margin-top: 80px;
    box-shadow: 0 -8px 30px rgba(233, 30, 99, 0.2);
}

    .footer-maroon a {
        color: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
        display: inline-block;
    }

        .footer-maroon a:hover {
            color: var(--white);
            text-decoration: none;
            transform: translateX(5px);
        }

    .footer-maroon h5 {
        color: var(--white);
        font-weight: 800;
        margin-bottom: 1.5rem;
        font-size: 1.25rem;
    }

    .footer-maroon ul {
        list-style: none;
        padding: 0;
    }

    .footer-maroon li {
        margin-bottom: 0.75rem;
    }

    .footer-maroon .footer-bottom {
        text-align: center;
        padding: 25px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        margin-top: 40px;
        font-size: 0.95rem;
    }

.social-links {
    display: flex;
    gap: 15px;
}

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        transition: all 0.3s ease;
        transform: translateX(0);
    }

        .social-links a:hover {
            background: var(--white);
            color: var(--primary-pink);
            transform: translateY(-5px) translateX(0);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
        }

/* ============================================================================
   11. UTILITY CLASSES
   ============================================================================ */

/* Text Colors */
.text-maroon {
    color: var(--primary-pink) !important;
}

.text-maroon-dark {
    color: var(--dark-pink) !important;
}

.text-maroon-light {
    color: var(--light-pink) !important;
}

/* Background Colors */
.bg-maroon {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--dark-pink) 100%) !important;
    color: var(--white);
}

.bg-maroon-light {
    background: var(--ultra-light-pink) !important;
}

.bg-gray-light {
    background: var(--gray-lightest) !important;
}

.bg-gradient-pink {
    background: linear-gradient(135deg, var(--ultra-light-pink) 0%, var(--white) 100%) !important;
}

/* Border Colors */
.border-maroon {
    border-color: var(--primary-pink) !important;
}

.border-maroon-2 {
    border: 2px solid var(--primary-pink) !important;
}

/* Shadows */
.shadow-maroon {
    box-shadow: var(--shadow-pink) !important;
}

.shadow-glass {
    box-shadow: var(--shadow-md), inset 0 0 40px rgba(255, 255, 255, 0.5) !important;
}

/* HR / Divider */
hr.maroon {
    border-color: var(--primary-pink);
    border-width: 2px;
    opacity: 0.3;
}

/* ============================================================================
   12. PROFILE PHOTO STYLES
   ============================================================================ */

/* Large Profile Photo - 150px */
.profile-photo-lg {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-pink);
    display: block;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

/* Medium Profile Photo - 80px */
.profile-photo-md {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-pink);
    display: block;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.25);
}

/* Small Profile Photo - 50px */
.profile-photo-sm {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-pink);
    display: block;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.2);
}

/* Photo with Hover Effect */
.profile-photo-hover {
    transition: all 0.4s ease;
    cursor: pointer;
}

    .profile-photo-hover:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
    }

/* Photo Container */
.profile-photo-container {
    position: relative;
    display: inline-block;
}

    .profile-photo-container .photo-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(233, 30, 99, 0.85) 0%, rgba(194, 24, 91, 0.85) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .profile-photo-container:hover .photo-overlay {
        opacity: 1;
    }

    .profile-photo-container .photo-overlay i {
        color: var(--white);
        font-size: 1.5rem;
    }

/* ============================================================================
   13. ALERT STYLES
   ============================================================================ */
.alert {
    border: none;
    border-radius: 15px;
    padding: 18px 20px;
    border-left: 4px solid;
    backdrop-filter: blur(10px);
}

.alert-success {
    border-left-color: var(--success);
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
}

.alert-danger {
    border-left-color: var(--danger);
    background: rgba(220, 53, 69, 0.1);
    color: #c62828;
}

.alert-warning {
    border-left-color: var(--warning);
    background: rgba(255, 193, 7, 0.1);
    color: #f57f17;
}

.alert-info {
    border-left-color: var(--info);
    background: rgba(33, 150, 243, 0.1);
    color: #1565c0;
}

.alert-maroon {
    border-left-color: var(--primary-pink);
    background: rgba(233, 30, 99, 0.1);
    color: var(--dark-pink);
}

/* ============================================================================
   14. PAGINATION STYLES
   ============================================================================ */
.pagination .page-link {
    color: var(--primary-pink);
    border: 2px solid rgba(233, 30, 99, 0.2);
    border-radius: 10px;
    margin: 0 5px;
    padding: 10px 18px;
    transition: all 0.3s ease;
    background: var(--white);
}

    .pagination .page-link:hover {
        background: linear-gradient(135deg, var(--primary-pink) 0%, var(--dark-pink) 100%);
        border-color: var(--primary-pink);
        color: var(--white);
        transform: translateY(-2px);
    }

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--dark-pink) 100%);
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-pink);
}

/* ============================================================================
   15. SPINNER/LOADER STYLES
   ============================================================================ */
.spinner-border {
    border-width: 3px;
}

.spinner-maroon {
    color: var(--primary-pink);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ============================================================================
   16. SECTION HEADERS
   ============================================================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h2 {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--dark-pink);
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 1.2rem;
        color: var(--text-light);
    }

/* ============================================================================
   17. RESPONSIVE ADJUSTMENTS
   ============================================================================ */

/* Tablets */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .navbar-maroon .nav-link {
        margin: 5px 0;
    }

    .profile-card {
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .social-links {
        justify-content: center;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero-section {
        min-height: 80vh;
        padding: 80px 15px 60px;
    }

        .hero-section h1 {
            font-size: 2rem;
        }

        .hero-section p {
            font-size: 1rem;
        }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .form-control,
    .form-select {
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .btn,
    .btn-maroon,
    .btn-primary-custom {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 14px 32px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .footer-maroon {
        padding: 40px 0 0;
        margin-top: 60px;
    }

    .profile-photo-lg {
        width: 120px;
        height: 120px;
    }

    .glass-card {
        border-radius: 20px;
    }

    .card {
        border-radius: 15px;
    }
}

/* ============================================================================
   18. UTILITY SPACING
   ============================================================================ */
.mt-20 {
    margin-top: 2rem;
}

.mb-20 {
    margin-bottom: 2rem;
}

.mt-40 {
    margin-top: 4rem;
}

.mb-40 {
    margin-bottom: 4rem;
}

.px-20 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-20 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* ============================================================================
   19. ANIMATIONS
   ============================================================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

.slide-up {
    animation: slideUp 0.6s ease;
}

.slide-down {
    animation: slideDown 0.6s ease;
}

/* ============================================================================
   20. MISCELLANEOUS
   ============================================================================ */

/* Smooth Transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Cursor Pointer */
.cursor-pointer {
    cursor: pointer;
}

/* No Text Select */
.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Text Truncation */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hover-lift:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

/* ============================================================================
   21. PRINT STYLES
   ============================================================================ */
@media print {
    .navbar-maroon,
    .footer-maroon,
    .hero-section,
    .btn,
    .social-links {
        display: none !important;
    }

    body {
        background: white;
    }

    .card,
    .profile-card,
    .glass-card {
        box-shadow: none;
        border: 1px solid #ddd;
        background: white;
        backdrop-filter: none;
    }
}
