/* Custom Variables */
:root {
    --primary-color: #8e44ad;
    --secondary-color: #9b59b6;
    --accent-color: #e8d5f2;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gradient-primary: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    --gradient-secondary: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

/* Purple Theme Enhancements */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white !important;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
    color: white !important;
}

.btn-primary i {
    color: white !important;
}

/* White icons on purple backgrounds */
.btn-primary .fas,
.btn-primary .fa,
.navbar-brand .fas,
.navbar-brand .fa,
.service-icon .fas,
.service-icon .fa,
.card-icon .fas,
.card-icon .fa,
.login-icon .fas,
.login-icon .fa,
.action-icon .fas,
.action-icon .fa,
.table th .fas,
.table th .fa,
.gradient-primary .fas,
.gradient-primary .fa,
[style*="background: var(--gradient-primary)"] .fas,
[style*="background: var(--gradient-primary)"] .fa {
    color: white !important;
}

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

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

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

/* Prevent section overlapping */
section {
    position: relative;
    z-index: 1;
}

/* Main content spacing for fixed navbar */
main {
    position: relative;
    z-index: 1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    padding-top: 80px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    z-index: 1030;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(26, 26, 26, 0.98) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link.btn {
    background: var(--gradient-primary);
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
    color: white !important;
    border: none;
}

.navbar-nav .nav-link.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 50%, var(--dark-color) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 0;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/images/pole-background.jpg?v=1751865500') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(142, 68, 173, 0.8) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    text-align: center;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.hero-location {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Purple Theme Contact Form */
.contact-form-card {
    background: var(--light-color);
    color: var(--dark-color);
    border: 1px solid rgba(142, 68, 173, 0.1);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(142, 68, 173, 0.25);
}

.form-label {
    color: var(--dark-color);
    font-weight: 600;
}

/* Tab Styling */
.nav-tabs {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    color: #6c757d;
    font-weight: 600;
    padding: 1rem 2rem;
    transition: var(--transition);
    background: none;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: none;
    border-color: transparent;
    border-bottom: 2px solid var(--primary-color);
}

.nav-tabs .nav-link i {
    color: inherit;
}

/* Specifications Section */
.specifications-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.spec-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(142, 68, 173, 0.1);
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(142, 68, 173, 0.15);
}

.spec-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.spec-card h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.spec-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.spec-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Lightbox2 Custom Styling */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.lb-container {
    position: relative;
}

.lb-close {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 10001 !important;
    font-size: 24px !important;
    color: #333 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.lb-close:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

.lb-close::before {
    content: '×' !important;
    color: #333 !important;
    font-size: 28px !important;
    font-weight: bold !important;
    line-height: 1 !important;
}

/* Override default lightbox close button */
.lb-close, .lb-close:hover, .lb-close:focus {
    opacity: 1 !important;
    filter: none !important;
    text-decoration: none !important;
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 24px;
}

.lb-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lb-prev {
    left: 20px;
}

.lb-next {
    right: 20px;
}

.lb-dataContainer {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0 0 8px 8px;
}

.lb-data .lb-details {
    color: white;
    padding: 15px;
    text-align: center;
}

.lb-data .lb-caption {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.lb-data .lb-number {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 5px;
}

/* Custom Lightbox Styles */
.custom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.custom-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom-lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.custom-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.custom-close-btn:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.custom-lightbox-caption {
    margin-top: 20px;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 20px;
    border-radius: 8px;
    max-width: 80%;
}

.custom-lightbox-caption p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}







/* Pricing Note */
.pricing-note {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border: 1px solid #28a745;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    text-align: center;
    color: #155724;
    font-size: 0.9rem;
    margin-top: auto;
    margin-bottom: 1rem;
}

.pricing-note i {
    color: #28a745;
}

/* Purple Theme Service Cards */
.service-card {
    background: var(--light-color);
    color: var(--dark-color);
    border: 1px solid rgba(142, 68, 173, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(142, 68, 173, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    background: var(--gradient-primary);
    color: white;
}

.service-price {
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--box-shadow-hover);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.05);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    color: white;
    font-size: 2rem;
    text-decoration: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--light-color);
    margin-top: 0;
    position: relative;
    z-index: 1;
    clear: both;
    color: var(--dark-color);
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(255, 107, 107, 0.1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(108, 92, 231, 0.05));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #e74c3c);
    border-radius: 10px;
    margin-bottom: 1.2rem;
}

.service-icon-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(255, 107, 107, 0.3));
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.service-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover .service-price {
    transform: scale(1.05);
    text-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    text-align: left;
    flex-grow: 1;
}

.service-features li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--dark-color);
    transition: all 0.2s ease;
    transform: translateX(0);
    text-align: left;
}

.service-card:hover .service-features li {
    transform: translateX(5px);
}

.service-features li:nth-child(odd) {
    transition-delay: 0.1s;
}

.service-features li:nth-child(even) {
    transition-delay: 0.2s;
}

.service-features i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-features i {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.03), rgba(108, 92, 231, 0.03));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 107, 107, 0.05);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotateY(10deg);
    filter: drop-shadow(0 5px 15px rgba(255, 107, 107, 0.2));
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover h4 {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover p {
    color: var(--dark-color);
    transform: translateY(-1px);
}

/* X-Pole Stage Section */
.xpole-section {
    padding: 5rem 0;
    background: var(--gradient-dark);
    color: white;
}

.xpole-section .section-title {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.xpole-section .section-subtitle {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.xpole-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.xpole-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: center;
}

.xpole-features li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.xpole-image img {
    border-radius: 20px;
    box-shadow: var(--box-shadow-hover);
    transition: var(--transition);
}

.xpole-image img:hover {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--dark-color);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--accent-color);
}

.testimonial-author span {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Gallery Styles */
.gallery-hero {
    background: var(--gradient-dark);
    color: white;
    text-align: center;
    padding-top: 2rem;
}

.gallery-grid {
    padding: 5rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Contact Styles */
.contact-hero {
    background: var(--gradient-dark);
    color: white;
    text-align: center;
    padding-top: 2rem;
    margin-top: 0;
}

.contact-form-section {
    padding: 5rem 0;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.form-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: #6c757d;
    margin-bottom: 2rem;
    text-align: center;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.pricing-summary {
    padding: 5rem 0;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--dark-color);
}

.contact-info {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

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

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-info-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
    background: var(--gradient-dark);
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer p {
    color: #bdc3c7;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-legal-links .footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-legal-links .footer-link:hover {
    color: var(--primary-color);
}

.footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Enhanced footer styles */
.social-links {
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-links li {
    transition: var(--transition);
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-link {
    color: #bdc3c7 !important;
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color) !important;
}

.footer-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 16px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1050;
    width: 300px;
}

.flash-messages .alert {
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .navbar-nav .nav-link.btn {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .trust-item {
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .flash-messages {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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

/* Pulse animation for CTA button */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.pulse-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Trust indicators */
.trust-indicators {
    margin-top: 3rem;
    padding: 2rem 0;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.trust-item i {
    font-size: 1.5rem;
}

.trust-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Stats section */
.stats-section {
    background: var(--gradient-primary) !important;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced CTA buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Pricing Display Styles */
.pricing-display {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
    margin-top: 8px;
}

.pricing-display .form-label {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.total-cost-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    border-radius: 15px !important;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    background: white;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Agreement Styles */
.agreement-hero {
    background: var(--gradient-dark);
    color: white;
    text-align: center;
    padding-top: 2rem;
}

.agreement-form-section {
    padding: 5rem 0;
}

.agreement-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.agreement-preview-section {
    padding: 5rem 0;
}

.agreement-document {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    font-family: 'Times New Roman', serif;
    line-height: 1.6;
}

.agreement-header {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.agreement-content h4, .agreement-content h5 {
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.parties {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.terms-list {
    margin-left: 1rem;
}

.terms-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.signature-block {
    text-align: center;
    margin-top: 2rem;
}

.signature-line {
    border-bottom: 2px solid #000;
    height: 40px;
    margin: 1rem 0;
    width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.agreement-actions {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

/* Print styles for agreement */
@media print {
    .agreement-document {
        box-shadow: none;
        padding: 0;
    }
    
    .agreement-actions {
        display: none;
    }
    
    .navbar, .footer {
        display: none;
    }
    
    body {
        padding-top: 0;
    }
}

/* Agreement form enhancements */
.agreement-form .form-control:focus,
.agreement-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

/* Agreements List Styles */
.agreements-hero {
    background: var(--gradient-dark);
    color: white;
    text-align: center;
    padding-top: 2rem;
}

.agreements-list-section {
    padding: 5rem 0;
}

.agreements-table-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.agreements-table-card .table {
    margin-bottom: 0;
}

.agreements-table-card .table th {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.agreements-table-card .table td {
    padding: 1rem;
    vertical-align: middle;
    border-color: rgba(255, 107, 107, 0.1);
}

.agreements-table-card .table tbody tr:hover {
    background-color: rgba(255, 107, 107, 0.05);
}

.no-agreements {
    text-align: center;
    padding: 3rem;
}

.no-agreements i {
    opacity: 0.3;
}

.loading-spinner {
    padding: 3rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.btn-group-sm .btn {
    padding: 0.375rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    overflow: hidden;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Modal enhancements */
.modal-xl {
    max-width: 1200px;
}

.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.modal-header {
    background: var(--gradient-primary);
    color: white !important;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
}

.modal-header .fas,
.modal-header .fa {
    color: white !important;
}

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

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid rgba(255, 107, 107, 0.1);
    padding: 1.5rem 2rem;
}

/* Back Office Styles */
.back-office-hero {
    background: var(--gradient-dark);
    color: white;
    text-align: center;
    padding-top: 2rem;
}

.back-office-dashboard {
    padding: 5rem 0;
}

.dashboard-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 107, 107, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.dashboard-card .card-icon {
    background: var(--gradient-primary);
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.dashboard-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.dashboard-card .card-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.dashboard-card .card-stats {
    margin-bottom: 1.5rem;
}

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

.dashboard-card .stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-card .card-actions {
    margin-top: auto;
}

.quick-actions {
    padding: 5rem 0;
}

.quick-action-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 107, 107, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.quick-action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.15);
}

.quick-action-card .action-icon {
    background: var(--gradient-primary);
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.quick-action-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.quick-action-card p {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.recent-activity {
    padding: 5rem 0;
}

.activity-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 107, 107, 0.1);
    height: 100%;
}

.activity-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 107, 107, 0.1);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item .activity-icon {
    background: rgba(255, 107, 107, 0.1);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.activity-item .activity-content {
    flex-grow: 1;
}

.activity-item .activity-content p {
    margin: 0;
    font-size: 0.9rem;
}

.activity-item .activity-content small {
    color: #6c757d;
}

/* Contact Inquiries Styles */
.contact-inquiries-hero {
    background: var(--gradient-dark);
    color: white;
    text-align: center;
    padding-top: 2rem;
}

.inquiries-list-section {
    padding: 5rem 0;
}

.inquiries-table-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.inquiries-table-card .table th {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.inquiries-table-card .table td {
    padding: 1rem;
    vertical-align: middle;
    border-color: rgba(255, 107, 107, 0.1);
}

.message-preview {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.no-inquiries {
    text-align: center;
    padding: 3rem;
}

.no-inquiries i {
    opacity: 0.3;
}

/* Revenue Report Styles */
.revenue-hero {
    background: var(--gradient-dark);
    color: white;
    text-align: center;
    padding-top: 2rem;
}

.revenue-summary {
    padding: 5rem 0;
}

.revenue-stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 107, 107, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.revenue-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.15);
}

.revenue-stat-card .stat-icon {
    background: var(--gradient-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.revenue-stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.revenue-stat-card .stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.revenue-breakdown {
    padding: 5rem 0;
}

.breakdown-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 107, 107, 0.1);
    height: 100%;
}

.breakdown-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.breakdown-item {
    margin-bottom: 1.5rem;
}

.breakdown-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.breakdown-amount {
    font-weight: 600;
    color: var(--dark-color);
}

.breakdown-bar .progress {
    height: 8px;
    background-color: rgba(255, 107, 107, 0.1);
}

.agreement-revenue {
    padding: 5rem 0;
}

.revenue-table-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.revenue-table-card .table th {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.revenue-table-card .table td {
    padding: 1rem;
    vertical-align: middle;
    border-color: rgba(255, 107, 107, 0.1);
}

.no-data {
    text-align: center;
    padding: 3rem;
}

.no-data i {
    opacity: 0.3;
}

/* Admin Login Styles */
.admin-login-hero {
    background: var(--gradient-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.admin-login-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.1);
    max-width: 450px;
    margin: 0 auto;
}

.login-header {
    margin-bottom: 2rem;
}

.login-icon {
    background: var(--gradient-primary);
    color: white !important;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.login-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: #6c757d;
    margin-bottom: 0;
}

.login-form {
    margin-bottom: 2rem;
}

.password-input-group {
    position: relative;
}

.password-input-group .form-control {
    padding-right: 3rem;
    border: 2px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.password-input-group .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.login-form .btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.login-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.login-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 107, 0.1);
}

.security-notice {
    background: #f8f9fa !important;
}

.security-info {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Admin authentication indicator */
.admin-indicator {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.admin-indicator .fas,
.admin-indicator .fa {
    color: white !important;
}

.admin-indicator .admin-logout {
    color: white;
    text-decoration: none;
    margin-left: 0.5rem;
    opacity: 0.8;
}

.admin-indicator .admin-logout:hover {
    opacity: 1;
    color: white;
}

/* Quick FAQ Styles */
.quick-faq-section {
    background: var(--light-color);
}

.quick-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.quick-faq-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.quick-faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.quick-faq-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-faq-item h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quick-faq-item p {
    color: #666;
    margin: 0;
}

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

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

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

.shadow-custom {
    box-shadow: var(--box-shadow) !important;
}

.shadow-hover {
    box-shadow: var(--box-shadow-hover) !important;
}

.transition-all {
    transition: var(--transition) !important;
}

/* Header spacing utility */
.header-spacing {
    padding-top: 6rem !important;
}

/* Fixed navbar height compensation */
.navbar-fixed-spacing {
    margin-top: 80px;
}
