/**
 * Akash Legal - Luxury & Premium CSS Design System
 */

/* 1. Global Reset & Variables */
:root {
    --primary: #4F2817;       /* Deep Warm Chocolate Brown */
    --primary-dark: #2F170D;  /* Very Dark Chocolate/Black Coffee */
    --gold: #CD7954;          /* Copper Rust/Burnt Terracotta */
    --gold-light: #DEA68D;    /* Soft Muted Peach/Apricot */
    --light-bg: #FCF8F5;      /* Warm Cream/Alabaster Off-white */
    --dark-bg: #3F344A;       /* Deep Grape/Plum background */
    --white: #FFFFFF;
    --text-dark: #3F344A;     /* Plum-tinted deep body text */
    --text-muted: #7D7289;    /* Muted body text */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Baskervville', serif;
    --font-body: 'League Spartan', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* 2. Custom Preloader & Cursor */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner-container {
    width: 60px;
    height: 60px;
    position: relative;
    margin-bottom: 20px;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--gold);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    animation-delay: -1.0s;
}

.preloader-text {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: 600;
}

@keyframes sk-bounce {
    0%, 100% { transform: scale(0.0); }
    50% { transform: scale(1.0); }
}

/* Custom Cursor */
.custom-cursor {
    width: 25px;
    height: 25px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    mix-blend-mode: difference;
    display: none; /* JS will reveal on non-touch devices */
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    display: none;
}

/* 3. Typography & Utility Classes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}

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

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

.bg-navy-dark {
    background-color: var(--primary-dark) !important;
}

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

.text-gray {
    color: #A0AEC0 !important;
}

.border-gold-subtle {
    border: 1px solid rgba(201, 161, 74, 0.15);
}

/* Section Header styling */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-header.text-start {
    text-align: left;
    margin-left: 0;
}

.section-header.text-start .section-title::after {
    left: 0;
    transform: none;
}

/* 4. Luxury Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-dark) !important;
    border: 1px solid var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 161, 74, 0.2);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 161, 74, 0.2);
}

/* 5. Sticky Transparent Header */
.top-bar {
    background-color: var(--primary-dark);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar a {
    color: #A0AEC0;
    transition: var(--transition);
}

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

.main-header {
    background-color: rgba(79, 40, 23, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(205, 121, 84, 0.15);
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 5px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--primary);
}

.navbar-brand .logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 1.6rem;
    color: var(--white);
}

.navbar-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 15px !important;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold);
}

/* 6. Hero Slider with Overlay Grid */
.hero-slider-section {
    position: relative;
    background-color: var(--primary-dark);
}

.hero-slide {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(79, 40, 23, 0.3) 0%, rgba(47, 23, 13, 0.9) 100%);
    z-index: 1;
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(205,121,84,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(205,121,84,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; }
    .hero-slide { height: 75vh; }
}

/* Floating Cards & Badges in Hero */
.hero-badges-container {
    position: relative;
    z-index: 3;
}

.floating-badge-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    transform: translateY(0);
}

.floating-badge-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 161, 74, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.floating-badge-icon {
    font-size: 2.2rem;
    color: var(--gold);
}

.floating-badge-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.floating-badge-desc {
    font-size: 0.85rem;
    color: #A0AEC0;
    margin-bottom: 0;
}

/* 7. Premium Cards (Glassmorphism & Grids) */
.glass-card {
    background: var(--white);
    border: 1px solid rgba(79, 40, 23, 0.06);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(79, 40, 23, 0.08);
    border-color: rgba(205, 121, 84, 0.25);
}

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

.glass-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(205, 121, 84, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border-radius: 6px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.glass-card:hover .glass-card-icon {
    background-color: var(--gold);
    color: var(--primary-dark);
}

.glass-card-title {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.glass-card-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.card-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.card-link i {
    transition: var(--transition);
}

.glass-card:hover .card-link i {
    transform: translateX(5px);
}

/* Practice Area Card - Dark Luxury Theme */
.practice-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    z-index: 1;
}

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

.practice-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(79, 40, 23, 0.95) 0%, rgba(79, 40, 23, 0.4) 60%, rgba(79, 40, 23, 0.1) 100%);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    transition: var(--transition);
}

.practice-card-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.practice-card-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.practice-card-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: var(--transition);
}

.practice-card:hover .practice-card-img {
    transform: scale(1.1);
}

.practice-card:hover .practice-card-overlay {
    background: linear-gradient(to top, rgba(79, 40, 23, 0.98) 0%, rgba(79, 40, 23, 0.7) 100%);
}

.practice-card:hover .practice-card-icon {
    transform: translateY(0);
    opacity: 1;
}

.practice-card:hover .practice-card-desc {
    height: auto;
    opacity: 1;
    margin-top: 10px;
}

/* 8. Statistics Counter */
.counter-section {
    background-color: var(--primary);
    background-image: linear-gradient(rgba(205, 121, 84, 0.05) 1px, transparent 1px);
    background-size: 100% 50px;
    border-top: 1px solid rgba(205, 121, 84, 0.2);
    border-bottom: 1px solid rgba(205, 121, 84, 0.2);
}

.counter-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
}

.counter-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* 9. Timeline Steps (How We Work) */
.timeline-step {
    position: relative;
    text-align: center;
    padding: 0 15px;
}

.step-num-box {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border: 1px solid rgba(205, 121, 84, 0.25);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(79, 40, 23, 0.05);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.timeline-step:hover .step-num-box {
    background-color: var(--gold);
    color: var(--primary-dark);
    box-shadow: 0 15px 30px rgba(205, 121, 84, 0.3);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Connection line between steps in timeline */
@media (min-width: 992px) {
    .timeline-step::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        border-top: 1px dashed rgba(205, 121, 84, 0.3);
        top: 40px;
        left: 50%;
        z-index: 1;
    }
    .col-lg-3:last-child .timeline-step::after {
        display: none;
    }
}

/* 10. Testimonials Slider */
.testimonial-swiper {
    padding: 30px 15px 60px !important;
}

.testimonial-card {
    background-color: var(--white);
    border: 1px solid rgba(79, 40, 23, 0.06);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
}

.testimonial-card-quote {
    font-size: 2.8rem;
    color: rgba(205, 121, 84, 0.15);
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2px;
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
}

/* 11. Custom Pricing Tables */
.pricing-card {
    background-color: var(--white);
    border: 1px solid rgba(11, 35, 65, 0.06);
    border-radius: 8px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: 0 20px 45px rgba(201, 161, 74, 0.1);
    transform: scale(1.03);
}

.pricing-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background-color: var(--gold);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.plan-title {
    font-size: 1.4rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 30px;
}

.price-currency {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--primary);
    vertical-align: top;
    position: relative;
    top: 5px;
}

.price-amt {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
}

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

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(79, 40, 23, 0.05);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.plan-features li i {
    color: var(--gold);
    margin-right: 8px;
}

.plan-features li.disabled {
    color: #A0AEC0;
    text-decoration: line-through;
}

.plan-features li.disabled i {
    color: #A0AEC0;
}

/* 12. Accordions (FAQ Styles) */
.custom-accordion .accordion-item {
    background-color: var(--white);
    border: 1px solid rgba(79, 40, 23, 0.06);
    margin-bottom: 15px;
    border-radius: 6px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.custom-accordion .accordion-button {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    background-color: var(--white);
    padding: 20px 25px;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    background-color: rgba(205, 121, 84, 0.03);
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234F2817'%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");
}

.custom-accordion .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='%23CD7954'%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");
}

.custom-accordion .accordion-body {
    padding: 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    background-color: var(--white);
}

/* 13. Blog Cards */
.blog-card {
    background-color: var(--white);
    border: 1px solid rgba(79, 40, 23, 0.06);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    height: 100%;
}

.blog-card-img-wrap {
    height: 230px;
    overflow: hidden;
    position: relative;
}

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

.blog-card:hover .blog-card-img {
    transform: scale(1.08);
}

.blog-card-body {
    padding: 30px;
}

.blog-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-meta i {
    color: var(--gold);
    margin-right: 5px;
}

.blog-card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--gold);
}

.blog-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* 14. Luxury Appointment Section & Form */
.appointment-section-wrap {
    background-color: var(--primary-dark);
    background-image: radial-gradient(circle at 10% 20%, rgba(205, 121, 84, 0.03) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(205, 121, 84, 0.03) 0%, transparent 40%);
    border-radius: 12px;
    border: 1px solid rgba(205, 121, 84, 0.2);
    overflow: hidden;
}

.appointment-info-box {
    padding: 60px;
}

.appointment-form-box {
    background-color: rgba(79, 40, 23, 0.6);
    backdrop-filter: blur(12px);
    padding: 60px;
    border-left: 1px solid rgba(205, 121, 84, 0.2);
}

.form-luxury .form-control,
.form-luxury .form-select {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 4px;
    transition: var(--transition);
}

.form-luxury .form-control:focus,
.form-luxury .form-select:focus {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(205, 121, 84, 0.2);
    color: var(--white);
}

.form-luxury label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-luxury option {
    background-color: var(--primary-dark);
    color: var(--white);
}

@media (max-width: 991px) {
    .appointment-form-box {
        border-left: none;
        border-top: 1px solid rgba(205, 121, 84, 0.2);
        padding: 40px 30px;
    }
    .appointment-info-box {
        padding: 40px 30px;
    }
}

/* 15. Inner Pages Headers (Banner) */
.inner-header-banner {
    background-color: var(--primary-dark);
    background-image: linear-gradient(rgba(79, 40, 23, 0.8) 0%, rgba(47, 23, 13, 0.95) 100%),
                      url('../images/inner_hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    border-bottom: 1px solid rgba(205, 121, 84, 0.2);
    position: relative;
}

.inner-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(205,121,84,0.01) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(205,121,84,0.01) 1px, transparent 1px);
    background-size: 30px 30px;
}

.inner-banner-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gold) !important;
}

/* 16. Footer Styles */
.footer {
    border-top: 2px solid var(--gold);
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.005) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.005) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

.footer-title {
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-heading {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: var(--gold);
    bottom: 0;
    left: 0;
}

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

.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition);
}

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

.footer-socials a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    text-decoration: none;
}

.footer-socials a:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 4px 0 0 4px;
}

.footer-newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: none;
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 30px;
    bottom: 30px;
    z-index: 996;
    background-color: var(--gold);
    width: 44px;
    height: 44px;
    border-radius: 4px;
    color: var(--primary-dark);
    transition: all 0.4s;
    text-decoration: none;
}

.back-to-top:hover {
    background-color: var(--gold-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Team Member Card Styles */
.team-member-card {
    background-color: var(--white);
    border: 1px solid rgba(79, 40, 23, 0.06);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    text-align: center;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(79, 40, 23, 0.08);
}

.team-img-wrap {
    height: 320px;
    overflow: hidden;
}

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

.team-member-card:hover .team-img-wrap img {
    transform: scale(1.05);
}

.team-info {
    padding: 30px;
}

.team-name {
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: var(--primary);
}

.team-role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-socials a {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0 8px;
    transition: var(--transition);
}

.team-socials a:hover {
    color: var(--gold);
}

/* 17. 404 Error page styling */
.error-page-section {
    padding: 120px 0;
    background-color: var(--light-bg);
}

.error-title {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

/* 18. Bootstrap Helper and Theme Overrides */
.text-primary {
    color: var(--primary) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}
.border-primary {
    border-color: var(--primary) !important;
}
.bg-navy {
    background-color: var(--primary) !important;
}
.bg-navy-dark {
    background-color: var(--primary-dark) !important;
}
.border-gold-subtle {
    border-color: rgba(205, 121, 84, 0.25) !important;
}

/* Custom Spacious Section Padding */
.py-6 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

@media (max-width: 991px) {
    .py-6 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}
