/* Elite Design System - AJEE Nigeria */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --primary: #1B241C;
    /* Deep Dark Green */
    --primary-light: #2A362C;
    --primary-dark: #0F140F;
    --secondary: #D4AF37;
    /* Premium Gold */
    --secondary-hover: #B89622;
    --secondary-glow: rgba(212, 175, 55, 0.4);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F1D592 50%, #B89622 100%);
    --dark-gradient: linear-gradient(180deg, #1B241C 0%, #0A0C0A 100%);
    --accent: #8D6E63;
    /* Brown Accent */
    --bg-light: #0A0C0A;
    /* Deepest Ink */
    --white: #161A16;
    /* Dark Panel */
    --glass: rgba(27, 36, 28, 0.7);
    --glass-bright: rgba(255, 255, 255, 0.05);
    --text-main: #F2F2F2;
    --text-light: #B0B0B0;
    --border: rgba(212, 175, 55, 0.15);
    /* Subtile Gold Border */
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
    --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.9);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

html {
    scroll-behavior: smooth;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.5;
    /* Compact line height */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 3rem 0;
    position: relative;
}

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

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

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.text-muted {
    color: var(--text-light);
}

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Navigation */
.navbar {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 3rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo:hover {
    color: var(--secondary);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0.5rem;
    transition: var(--transition);
    display: block;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a.active {
    color: var(--secondary);
    font-weight: 600;
}

.nav-admin {
    color: var(--secondary) !important;
    font-weight: 600;
}

.btn-nav {
    background: var(--secondary);
    color: var(--primary) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.btn-nav:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    color: var(--primary) !important;
}

.nav-admin {
    color: var(--secondary) !important;
    font-weight: 600;
}

.btn-nav {
    background: var(--secondary);
    color: var(--primary) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
}

.btn-nav:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    color: var(--primary) !important;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 60vh;
    /* Reduced from 85vh / 600px */
    min-height: 500px;
    overflow: hidden;
    background: var(--primary);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 36, 28, 0.8);
    /* Dark overlay */
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-controls button:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.1);
}

.hero-content {
    max-width: 800px;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #e2e8f0;
    max-width: 600px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 6rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    color: #cbd5e1;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary) !important;
    box-shadow: 0 0 15px var(--secondary-glow);
}

.btn-primary:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 25px var(--secondary-glow);
}

.btn-secondary {
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

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

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

.btn-block {
    display: block;
    width: 100%;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 175, 55, 0.1);
    border-color: var(--secondary);
}

.glow-border {
    position: relative;
    z-index: 1;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-gradient);
    z-index: -1;
    border-radius: calc(var(--radius) + 2px);
    opacity: 0;
    transition: var(--transition);
}

.glow-border:hover::before {
    opacity: 0.5;
    filter: blur(10px);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary-glow);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.card-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--secondary);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--primary-light);
    color: var(--text-main);
    font-family: inherit;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1B241C 0%, #0A0C0A 100%);
    color: white;
    padding: 1.5rem 0 0.75rem;
    position: relative;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.footer-col {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.footer-col:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.footer-about {
    max-width: 100%;
}

.footer-contact {
    max-width: 100%;
}

.footer-col>* {
    flex: 0 0 auto;
}

.footer-col p {
    flex: 1 1 auto;
}

.footer h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer h4 {
    color: var(--secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.footer p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.85rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1 1 auto;
}

.footer ul li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.footer ul li a {
    color: var(--text-light);
    transition: var(--transition);
    font-size: 0.85rem;
    display: inline-block;
}

.footer ul li a:hover {
    color: var(--secondary);
    text-shadow: 0 0 8px var(--secondary-glow);
    padding-left: 5px;
}

.contact-item {
    margin-bottom: 0.75rem !important;
}

.contact-item strong {
    color: var(--secondary);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.contact-item span,
.contact-item a {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    display: block;
}

.contact-item a:hover {
    color: var(--secondary);
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Alerts */
.alert {
    padding: 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, 0.3);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #F87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
    background: var(--white);
}

.table th,
.table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.table th {
    background: var(--primary);
    /* Dark Header */
    color: var(--secondary);
    /* White text */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    padding: 1rem;
}

.table tr:hover td {
    background: var(--bg-light);
}

.table tr:nth-child(even) {
    background-color: var(--primary-light);
}

/* Striped */
.table tr:last-child td {
    border-bottom: none;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-success {
    background: rgba(74, 222, 128, 0.2);
    color: #4ADE80;
}

.badge-warning {
    background: rgba(251, 191, 36, 0.2);
    color: #FBBF24;
}

.badge-danger {
    background: rgba(248, 113, 113, 0.2);
    color: #F87171;
}

.badge-info {
    background: rgba(56, 189, 248, 0.2);
    color: #38BDF8;
}

/* Social Links */
.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 0;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 768px) {
    /* Container & Spacing */
    .container {
        padding: 0 1rem;
    }

    /* Typography */
    h1 {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem;
    }

    h4 {
        font-size: 1.25rem !important;
        margin-bottom: 0.75rem;
    }

    body {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Navigation */
    .navbar-content {
        flex-wrap: wrap;
        position: relative;
        padding: 0.75rem 0;
        gap: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo img {
        max-height: 40px;
    }

    .nav-toggle {
        display: flex;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        animation: fadeInUp 0.3s ease-out;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius) var(--radius);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border);
        width: 100%;
        text-align: left;
        min-height: 44px;
        font-size: 1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: var(--bg-light);
        padding-left: 2rem;
        color: var(--secondary);
    }

    .btn-nav {
        margin: 0.5rem 1.5rem;
        text-align: center;
        width: calc(100% - 3rem);
        display: block;
        min-height: 44px;
        padding: 0.75rem 1.5rem;
    }

    .nav-admin {
        color: var(--secondary) !important;
        font-weight: 600;
    }

    /* Sections */
    .section {
        padding: 1.5rem 0;
    }

    .section-title {
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        font-size: 1.75rem;
    }

    .section-title::after {
        width: 40px;
        height: 2px;
    }

    /* Hero Sections */
    .hero {
        padding: 3rem 0 4rem;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-slider {
        height: 50vh;
        min-height: 350px;
    }

    .hero-slider .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-slider .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .slider-controls {
        bottom: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }

    .slider-controls button {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    /* Page Banners */
    .page-banner {
        padding: 3rem 0;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .lead {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    /* Grids */
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    /* Cards */
    .card {
        padding: 1.25rem;
    }

    .card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .card-footer {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .price {
        font-size: 1.125rem;
    }

    /* Buttons */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn-block {
        width: 100%;
    }

    /* Forms */
    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    input,
    select,
    textarea {
        padding: 0.875rem 1rem;
        font-size: 1rem;
        min-height: 44px;
        -webkit-appearance: none;
        border-radius: var(--radius);
    }

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

    select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        padding-right: 2.5rem;
    }

    /* Tables */
    .table-responsive {
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .table {
        font-size: 0.875rem;
        min-width: 600px;
    }

    .table th,
    .table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }

    .table th {
        font-size: 0.75rem;
        padding: 0.75rem 0.5rem;
    }

    /* Alerts */
    .alert {
        padding: 1rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Badges */
    .badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.625rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0 0.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }

    .footer h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .footer h4 {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .footer p,
    .footer ul li,
    .footer ul li a {
        font-size: 0.85rem;
    }

    .footer-logo {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .footer-logo img {
        max-height: 35px;
    }

    .footer-bottom {
        padding-top: 0.75rem;
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }

    /* Floating Widgets */
    .floating-widgets {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float,
    .book-now-float {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }

    /* Text Utilities */
    .text-center {
        text-align: center;
    }

    .mt-4 {
        margin-top: 1.25rem;
    }

    .mb-4 {
        margin-bottom: 1.25rem;
    }
}

/* Page Banners */
.page-banner {
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    position: relative;
    color: white;
}

.page-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 36, 28, 0.85);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.text-white {
    color: white !important;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* WhatsApp Floating Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-button:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: white;
    position: relative;
    z-index: 1;
}

.whatsapp-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.6;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--white);
    color: var(--text-main);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--white);
}

.whatsapp-button:hover + .whatsapp-tooltip,
.whatsapp-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-tooltip strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 0.25rem;
}

/* Mobile WhatsApp Widget */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button {
        width: 56px;
        height: 56px;
    }

    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-pulse {
        width: 56px;
        height: 56px;
    }

    .whatsapp-tooltip {
        right: -10px;
        font-size: 0.8rem;
        padding: 0.625rem 0.875rem;
        max-width: 200px;
        white-space: normal;
    }

    .whatsapp-tooltip::after {
        right: 15px;
    }
}