/* ============================================
   COLDBROCK HEALTH CARE - BRANDED DESIGN SYSTEM
   Beautiful UI with Logo Color Palette
   ============================================ */

/* === COLOR PALETTE (Extracted from Logo) === */
:root {
    /* Primary Colors - Deep Blues from Logo */
    --primary-dark: #0d3b66;
    --primary: #1a5490;
    --primary-medium: #2c7fb8;
    --primary-light: #41b6e6;
    --primary-lighter: #e3f2fd;
    
    /* Secondary Colors - Complementary */
    --secondary: #00a8cc;
    --secondary-light: #4dd0e1;
    
    /* Accent Colors */
    --accent-gold: #f4a261;
    --accent-coral: #e76f51;
    
    /* Semantic Colors */
    --success: #2a9d8f;
    --success-light: #d4edda;
    --warning: #e9c46a;
    --warning-light: #fff3cd;
    --danger: #e63946;
    --danger-light: #f8d7da;
    --info: #41b6e6;
    --info-light: #d1ecf1;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #e9ecef;
    --gray-200: #dee2e6;
    --gray-300: #ced4da;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --black: #000000;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-medium) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-gold) 100%);
    --gradient-success: linear-gradient(135deg, var(--success) 0%, #20c997 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(13, 59, 102, 0.08);
    --shadow-md: 0 4px 12px rgba(13, 59, 102, 0.12);
    --shadow-lg: 0 8px 24px rgba(13, 59, 102, 0.16);
    --shadow-xl: 0 12px 40px rgba(13, 59, 102, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-medium);
}

.container {
    max-width: 1200px;
}

/* === BEAUTIFUL BUTTONS === */
.btn {
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-success {
    background: var(--gradient-success);
    color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* === STUNNING HEADER === */
.top-bar {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

.contact-info span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-info i {
    color: var(--accent-gold);
}

.contact-info a {
    color: var(--white);
    transition: var(--transition-fast);
}

.contact-info a:hover {
    color: var(--accent-gold);
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px) scale(1.1);
}

.main-header .navbar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar-brand .logo {
    height: auto;
    max-height: 80px;
    width: auto;
    max-width: 280px;
    transition: all var(--transition-base);
    filter: drop-shadow(var(--shadow-sm));
}

.navbar-brand .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(var(--shadow-md));
}

.navbar-nav .nav-link {
    color: var(--gray-700) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all var(--transition-base);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
    border-radius: 3px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    background: var(--primary-lighter);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    margin-left: 10px;
}

.navbar-nav .btn-outline-primary {
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 8px 22px;
}

/* === HERO SLIDESHOW - STUNNING === */
.hero-slideshow {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: slideIn 1s ease;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.85) 0%, rgba(26, 84, 144, 0.75) 50%, rgba(44, 127, 184, 0.65) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 40px;
    animation: fadeInUp 1s ease;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slide-content .btn {
    margin: 10px;
    font-size: 1.1rem;
    padding: 16px 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.slide-content .btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.slide-content .btn-primary:hover {
    background: var(--accent-coral);
    transform: translateY(-4px);
}

.slide-content .btn-outline-primary {
    border-color: var(--white);
    color: var(--white);
}

.slide-content .btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slide-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.slide-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slide-dot.active {
    background: var(--accent-gold);
    width: 40px;
    border-radius: 10px;
    border-color: var(--white);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === BEAUTIFUL SECTIONS === */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 20px auto 0;
}

/* === STUNNING CARDS === */
.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    background: var(--white);
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: 30px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.card-text {
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* === SERVICE CARDS - EXTRA BEAUTIFUL === */
.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    background: var(--white);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: var(--gradient-accent);
}

/* === STATS SECTION - IMPRESSIVE === */
.stats-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.stat-card {
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-gold);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* === BEAUTIFUL FORMS === */
.form-control, .form-select {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--white);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-lighter);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* === STUNNING FOOTER === */
.main-footer {
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.95) 0%, rgba(26, 84, 144, 0.9) 100%);
    z-index: 0;
}

.footer-content {
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-widget h5 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-logo {
    max-width: 240px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(1.1) drop-shadow(var(--shadow-sm));
    transition: all var(--transition-base);
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2) drop-shadow(var(--shadow-md));
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    color: var(--accent-gold);
    transition: transform var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
}

.contact-item a:hover {
    color: var(--accent-gold);
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.newsletter-form .form-control {
    border: none;
    border-radius: 50px 0 0 50px;
    padding: 14px 24px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 14px 28px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background: var(--accent-coral);
}

.footer-widget .social-links {
    display: flex;
    gap: 12px;
}

.footer-widget .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.footer-widget .social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

.certification {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid var(--accent-gold);
}

.certification h6 {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.certification p {
    margin: 0;
    font-size: 0.85rem;
}

/* === SCROLL TO TOP BUTTON - BEAUTIFUL === */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    z-index: 999;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.scroll-to-top.show {
    display: flex;
    animation: fadeInUp 0.5s ease;
}

/* === ALERTS - BEAUTIFUL === */
.alert {
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    border-left: 4px solid;
    box-shadow: var(--shadow-sm);
}

.alert-success {
    background: var(--success-light);
    border-left-color: var(--success);
    color: var(--success);
}

.alert-danger {
    background: var(--danger-light);
    border-left-color: var(--danger);
    color: var(--danger);
}

.alert-warning {
    background: var(--warning-light);
    border-left-color: var(--warning);
    color: #856404;
}

.alert-info {
    background: var(--info-light);
    border-left-color: var(--info);
    color: #0c5460;
}

/* === BADGES - BEAUTIFUL === */
.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
}

.bg-primary {
    background: var(--gradient-primary) !important;
}

.bg-success {
    background: var(--success) !important;
}

.bg-warning {
    background: var(--warning) !important;
    color: var(--gray-800) !important;
}

.bg-danger {
    background: var(--danger) !important;
}

.bg-info {
    background: var(--info) !important;
}

/* === TABLES - BEAUTIFUL === */
.table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table thead th {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    border: none;
    padding: 16px;
}

.table tbody tr {
    transition: all var(--transition-fast);
}

.table tbody tr:hover {
    background: var(--primary-lighter);
    transform: scale(1.01);
}

.table tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    border-color: var(--gray-200);
}

/* === PAGINATION - BEAUTIFUL === */
.pagination {
    gap: 8px;
}

.page-link {
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    color: var(--primary);
    padding: 10px 16px;
    transition: all var(--transition-base);
    margin: 0;
}

.page-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: var(--primary);
}

.page-item.disabled .page-link {
    opacity: 0.5;
}

/* === MODAL - BEAUTIFUL === */
.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 24px 30px;
    border: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border: none;
    padding: 20px 30px;
    background: var(--gray-50);
    border-radius: 0 0 20px 20px;
}

/* === DROPDOWN - BEAUTIFUL === */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--primary-lighter);
    color: var(--primary);
    transform: translateX(5px);
}

/* === ADMIN PANEL STYLES - BEAUTIFUL === */
.admin-sidebar {
    background: var(--gradient-primary);
    min-height: 100vh;
    padding: 30px 0;
    box-shadow: var(--shadow-lg);
}

.admin-nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 14px 24px;
    margin: 5px 15px;
    border-radius: 12px;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateX(5px);
}

.admin-nav-link.active {
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 600;
}

.admin-header {
    background: var(--white);
    padding: 20px 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    border-radius: 12px;
}

.stats-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border-left: 4px solid var(--primary);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stats-card.primary {
    border-left-color: var(--primary);
}

.stats-card.success {
    border-left-color: var(--success);
}

.stats-card.warning {
    border-left-color: var(--warning);
}

.stats-card.danger {
    border-left-color: var(--danger);
}

.stats-card.info {
    border-left-color: var(--info);
}

.stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.stats-icon.primary {
    background: var(--primary-lighter);
    color: var(--primary);
}

.stats-icon.success {
    background: var(--success-light);
    color: var(--success);
}

.stats-icon.warning {
    background: var(--warning-light);
    color: var(--warning);
}

.stats-icon.danger {
    background: var(--danger-light);
    color: var(--danger);
}

.stats-icon.info {
    background: var(--info-light);
    color: var(--info);
}

.data-table {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px 0;
    margin-bottom: 40px;
    border-radius: 0 0 30px 30px;
    box-shadow: var(--shadow-lg);
}

.page-header h1, .page-header h2 {
    color: var(--white);
}

/* === COS VERIFICATION PAGE - STUNNING === */
.verification-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.verification-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
    border-top: 5px solid var(--primary);
}

.verification-status {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.cos-details {
    background: var(--gray-50);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.detail-row:hover {
    background: var(--white);
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 8px;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--gray-700);
}

.detail-value {
    text-align: right;
    color: var(--primary-dark);
    font-weight: 500;
}

/* === ACCORDION - BEAUTIFUL === */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 18px 24px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 24px;
    background: var(--gray-50);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-slideshow {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .navbar-brand .logo {
        max-width: 220px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-slideshow {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-content .btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
    
    .navbar-brand .logo {
        max-width: 180px;
    }
    
    .top-bar {
        font-size: 12px;
    }
    
    .contact-info span {
        display: block;
        margin-bottom: 5px;
    }
    
    .social-links {
        margin-top: 10px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-content {
        padding: 40px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .detail-value {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .verification-card {
        padding: 25px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* === ANIMATIONS === */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* === UTILITY CLASSES === */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-success { color: var(--success) !important; }
.text-warning { color: var(--warning) !important; }
.text-danger { color: var(--danger) !important; }
.text-info { color: var(--info) !important; }

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
}

.bg-gradient-secondary {
    background: var(--gradient-secondary) !important;
    color: var(--white) !important;
}

.bg-gradient-accent {
    background: var(--gradient-accent) !important;
    color: var(--white) !important;
}

.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.shadow-xl { box-shadow: var(--shadow-xl) !important; }

.rounded-lg { border-radius: 12px !important; }
.rounded-xl { border-radius: 20px !important; }

/* === LOADING SPINNER - BEAUTIFUL === */
.spinner-border {
    border-color: var(--primary-lighter);
    border-right-color: var(--primary);
}

/* === PRINT STYLES === */
@media print {
    .navbar, .footer, .scroll-to-top, .btn, .social-links {
        display: none !important;
    }
    
    body {
        color: var(--black);
    }
    
    .verification-card {
        box-shadow: none;
        border: 1px solid var(--gray-300);
    }
}

/* === ACCESSIBILITY === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

/* === SMOOTH SCROLLING === */
html {
    scroll-behavior: smooth;
}

/* === SELECTION STYLING === */
::selection {
    background: var(--primary);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary);
    color: var(--white);
}

/* === SCROLLBAR STYLING === */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* === END OF BEAUTIFUL DESIGN SYSTEM === */
