/**
 * Thirumanam Matrimony - Main Stylesheet
 * Tamil Wedding Theme with Gold, Maroon, and Orange Colors
 */

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    /* Primary Colors - Tamil Wedding Theme */
    --color-primary: #8B0000;      /* Deep Maroon */
    --color-secondary: #D4AF37;    /* Gold */
    --color-accent: #FF6B00;       /* Orange */
    --color-tertiary: #FFD700;     /* Bright Gold */

    /* Background Colors */
    --bg-light: #FFF9F0;           /* Cream */
    --bg-gradient: linear-gradient(135deg, #8B0000 0%, #CC0000 100%);
    --bg-gold-gradient: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);

    /* Text Colors */
    --text-dark: #2D2D2D;
    --text-muted: #6C757D;
    --text-light: #FFFFFF;

    /* Border Colors */
    --border-color: #E0D5C5;
    --border-gold: #D4AF37;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);

    /* Fonts */
    --font-english: 'Poppins', sans-serif;
    --font-tamil: 'Noto Sans Tamil', sans-serif;

    /* Spacing */
    --section-padding: 80px;
}

/* =====================================================
   Base Styles
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-english);
    color: var(--text-dark);
    background-color: #FFFFFF;
    line-height: 1.6;
}

body.lang-tamil {
    font-family: var(--font-tamil), var(--font-english);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   Utility Classes
   ===================================================== */
.bg-primary {
    background: var(--color-primary) !important;
}

.bg-secondary {
    background: var(--color-secondary) !important;
}

.bg-gradient-primary {
    background: var(--bg-gradient) !important;
}

.bg-gradient-gold {
    background: var(--bg-gold-gradient) !important;
}

.bg-light-cream {
    background-color: var(--bg-light);
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-gold {
    color: var(--color-secondary) !important;
}

.text-accent {
    color: var(--color-accent) !important;
}

.border-gold {
    border-color: var(--border-gold) !important;
}

.section-padding {
    padding: var(--section-padding) 0;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #6B0000;
    border-color: #6B0000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #B8962E;
    border-color: #B8962E;
    color: var(--text-dark);
}

.btn-outline-primary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

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

.btn-outline-gold {
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    background: transparent;
}

.btn-outline-gold:hover {
    background: var(--color-secondary);
    color: var(--text-dark);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* =====================================================
   Top Bar
   ===================================================== */
.top-bar {
    background: var(--color-primary);
    font-size: 0.875rem;
}

.top-bar a {
    color: rgba(255,255,255,0.9);
}

.top-bar a:hover {
    color: var(--color-secondary);
}

.lang-switcher a {
    padding: 2px 8px;
}

.lang-switcher a.fw-bold {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

/* =====================================================
   Navbar
   ===================================================== */
.navbar {
    padding: 15px 0;
    background: white;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Logo Icon */
.brand-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #CC0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    position: relative;
    flex-shrink: 0;
}

.brand-icon::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
}

.brand-icon i {
    font-size: 1.4rem;
    color: var(--color-secondary);
    z-index: 1;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #8B0000 0%, #CC0000 50%, #8B0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand:hover .brand-name {
    background: linear-gradient(135deg, #CC0000 0%, #8B0000 50%, #CC0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.875rem;
    color: var(--color-secondary);
    font-weight: 500;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-primary);
    background: rgba(139, 0, 0, 0.05);
}

.navbar-nav .nav-link.active {
    color: var(--color-primary);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero-section {
    background: var(--bg-gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-overlay.png') repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.hero-stat {
    text-align: center;
    color: white;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* =====================================================
   Quick Search Box
   ===================================================== */
.search-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.search-box-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: center;
}

.search-box .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.search-box .form-select,
.search-box .form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 14px;
    transition: all 0.3s ease;
}

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

.search-box .btn-search {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
}

/* =====================================================
   Section Headers
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--bg-gold-gradient);
    margin: 20px auto;
    border-radius: 2px;
}

/* =====================================================
   Features Section
   ===================================================== */
.features-section {
    background: var(--bg-light);
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

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

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =====================================================
   Free Bride Banner
   ===================================================== */
.free-bride-banner {
    background: var(--bg-gold-gradient);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 60px 0;
}

.free-bride-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.free-bride-conditions {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* =====================================================
   Profile Cards
   ===================================================== */
.profile-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.profile-photo-wrapper {
    position: relative;
    padding-top: 120%;
    overflow: hidden;
}

.profile-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-card:hover .profile-photo {
    transform: scale(1.05);
}

.profile-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-secondary);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.profile-badge.vip {
    background: var(--bg-gold-gradient);
}

.profile-badge.verified {
    background: #28a745;
    color: white;
}

.profile-info {
    padding: 20px;
}

.profile-id {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.profile-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.profile-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.profile-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-detail i {
    color: var(--color-primary);
}

.profile-actions {
    display: flex;
    gap: 8px;
}

.profile-actions .btn {
    flex: 1;
    padding: 8px;
    font-size: 0.875rem;
}

/* =====================================================
   Success Stories
   ===================================================== */
.success-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.success-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.success-content {
    padding: 25px;
}

.success-names {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.success-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.success-story {
    color: var(--text-muted);
    font-style: italic;
}

/* =====================================================
   Membership Plans
   ===================================================== */
.plan-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border-color: var(--color-secondary);
}

.plan-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: var(--text-dark);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.plan-price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.plan-duration {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.plan-features li i {
    color: #28a745;
}

.plan-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
}

/* =====================================================
   Forms
   ===================================================== */
.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.input-group-text {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-right: none;
}

/* =====================================================
   Cards
   ===================================================== */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.card-header {
    background: var(--bg-gradient);
    color: white;
    border-radius: 16px 16px 0 0 !important;
    padding: 20px;
}

.card-header h5 {
    margin: 0;
    font-weight: 600;
}

.card-body {
    padding: 25px;
}

/* =====================================================
   Profile View Page
   ===================================================== */
.profile-view-photo {
    width: 100%;
    max-width: 350px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.profile-view-header {
    background: var(--bg-gradient);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.profile-view-id {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 10px;
}

.profile-view-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.profile-section {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.profile-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.profile-field {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.profile-field:last-child {
    border-bottom: none;
}

.profile-field-label {
    flex: 0 0 40%;
    font-weight: 500;
    color: var(--text-muted);
}

.profile-field-value {
    flex: 1;
    color: var(--text-dark);
}

/* =====================================================
   Dashboard
   ===================================================== */
.dashboard-stat {
    background: white;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.dashboard-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.dashboard-stat-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.dashboard-stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.dashboard-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.dashboard-stat-label {
    color: var(--text-muted);
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: #1a1a1a;
}

.footer-main {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-title {
    color: var(--color-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

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

.footer-contact li {
    color: rgba(255,255,255,0.7);
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--color-secondary);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-secondary);
    color: var(--text-dark) !important;
}

/* Footer Operating Hours */
.footer-hours {
    color: rgba(255,255,255,0.8);
}

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

.footer-hours li i {
    color: var(--color-secondary);
}

/* Footer Admin Contacts */
.footer-subtitle {
    color: #fff;
    font-size: 1rem;
}

.footer-admin-contacts {
    font-size: 0.875rem;
}

.footer-admin-contacts li {
    margin-bottom: 5px;
    color: rgba(255,255,255,0.7);
}

.footer-admin-contacts .contact-name {
    color: rgba(255,255,255,0.7);
}

.footer-admin-contacts a {
    color: var(--color-secondary);
}

.footer-admin-contacts a:hover {
    color: #fff;
}

/* =====================================================
   Alerts
   ===================================================== */
.alert {
    border-radius: 12px;
    border: none;
    padding: 16px 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
}

/* =====================================================
   Tables
   ===================================================== */
.table {
    border-radius: 12px;
    overflow: hidden;
}

.table thead th {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 15px;
    font-weight: 500;
}

.table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-color: var(--border-color);
}

/* =====================================================
   Pagination
   ===================================================== */
.pagination .page-link {
    border: none;
    color: var(--color-primary);
    padding: 10px 16px;
    margin: 0 3px;
    border-radius: 8px;
}

.pagination .page-item.active .page-link {
    background: var(--color-primary);
    color: white;
}

.pagination .page-link:hover {
    background: rgba(139, 0, 0, 0.1);
    color: var(--color-primary);
}

/* =====================================================
   Modals
   ===================================================== */
.modal-content {
    border: none;
    border-radius: 16px;
}

.modal-header {
    background: var(--bg-gradient);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 20px 25px;
}

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

.modal-body {
    padding: 25px;
}

.modal-footer {
    padding: 15px 25px 25px;
    border-top: none;
}

/* =====================================================
   Registration Steps
   ===================================================== */
.registration-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 10px;
}

.step.active .step-number {
    background: var(--color-primary);
    color: white;
}

.step.completed .step-number {
    background: #28a745;
    color: white;
}

.step-line {
    width: 60px;
    height: 2px;
    background: var(--border-color);
    margin: 0 15px;
}

.step.completed + .step-line {
    background: #28a745;
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .search-box {
        margin-top: 30px;
    }

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

    .profile-card {
        max-width: 300px;
        margin: 0 auto;
    }

    .registration-steps {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-line {
        display: none;
    }

    .step {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .plan-price {
        font-size: 2rem;
    }
}

/* =====================================================
   Animations
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* =====================================================
   Loading Spinner
   ===================================================== */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* =====================================================
   Print Styles
   ===================================================== */
@media print {
    .navbar,
    .footer,
    .btn,
    .no-print {
        display: none !important;
    }

    body {
        background: white;
    }

    .profile-section {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
