/* =====================================================
   Joe Luis Knock-Out Catering - Dark Street Taco Theme
   ===================================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Warm Street Taco tones */
    --color-primary: #D2691E;        /* Chocolate/Burnt Orange */
    --color-primary-dark: #8B4513;   /* Saddle Brown */
    --color-primary-light: #E8A85C;  /* Light Orange */
    --color-accent: #C41E3A;         /* Cardinal Red (Chili) */
    --color-accent-light: #E63946;   /* Lighter Red */

    /* Dark Theme Colors */
    --color-bg-dark: #1A1A1A;        /* Near Black */
    --color-bg-darker: #0D0D0D;      /* Darkest */
    --color-bg-card: #252525;        /* Card Background */
    --color-bg-card-hover: #2D2D2D;  /* Card Hover */

    /* Text Colors */
    --color-text-primary: #F5F5F5;   /* Off White */
    --color-text-secondary: #B3B3B3; /* Light Gray */
    --color-text-muted: #808080;     /* Muted Gray */

    /* Accent Colors */
    --color-gold: #DAA520;           /* Goldenrod */
    --color-green: #228B22;          /* Forest Green (Cilantro) */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-accent) 100%);
    --gradient-dark: linear-gradient(180deg, var(--color-bg-darker) 0%, var(--color-bg-dark) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.85) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px rgba(210, 105, 30, 0.3);

    /* Borders */
    --border-subtle: 1px solid rgba(255,255,255,0.1);
    --border-accent: 2px solid var(--color-primary);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --section-padding-mobile: 50px 0;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.dark-theme {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* Section Styling */
.section {
    padding: var(--section-padding);
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile);
    }
}

.section-dark {
    background-color: var(--color-bg-darker);
}

.section-gradient {
    background: var(--gradient-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--color-text-primary);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   Navigation
   ===================================================== */
.navbar {
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: var(--border-subtle);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    line-height: 1.1;
    text-decoration: none;
}

.brand-logo {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    letter-spacing: 1px;
}

.brand-knockout {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.brand-catering {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--color-text-primary);
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Language dropdown button - style like nav-link */
.navbar-nav button.nav-link {
    background: transparent;
    border: none;
    cursor: pointer;
}

.navbar-nav button.nav-link:focus {
    box-shadow: none;
    outline: none;
}

/* Dropdown menu styling */
.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
    background-color: var(--color-primary);
    color: white;
}

.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
    background-color: var(--color-primary-dark);
    color: white;
}

/* Call Us button - accent style on desktop, nav-link on mobile */
.btn-callus {
    background: transparent;
    border: none;
    cursor: pointer;
}

@media (min-width: 992px) {
    .btn-callus {
        background: var(--gradient-primary) !important;
        color: white !important;
        font-weight: 600;
        padding: 10px 25px !important;
        border-radius: 25px;
        margin-left: 10px;
    }

    .btn-callus:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-glow);
        color: white !important;
    }

    /* Remove underline effect on desktop for Call Us button */
    .btn-callus::after {
        display: none !important;
    }
}

/* Buttons */
.btn-accent {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.btn-outline-accent {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-accent:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        var(--gradient-overlay),
        url('/images/hero-bg.jpg') center/cover no-repeat;
    background-color: var(--color-bg-darker);
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-tagline {
    color: var(--color-primary-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6);
}

.hero h1 {
    color: var(--color-text-primary);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.7);
}

.hero h1 .highlight {
    color: var(--color-primary);
    display: block;
}

.hero-subtitle {
    color: var(--color-text-primary);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.6);
}

.hero-location {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9), 0 0 15px rgba(0,0,0,0.6);
}

.hero-location i {
    color: var(--color-accent-light);
    margin-right: 8px;
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.8)) drop-shadow(0 0 8px rgba(230, 57, 70, 0.4));
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Fire Animation for Hero */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--color-bg-dark), transparent);
    z-index: 1;
}

/* =====================================================
   Cards
   ===================================================== */
.card-dark {
    background-color: var(--color-bg-card);
    border: var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.card-dark:hover {
    background-color: var(--color-bg-card-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.card-dark .card-body {
    padding: 1.5rem;
}

.card-dark .card-title {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
}

.card-dark .card-text {
    color: var(--color-text-secondary);
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 2rem;
}

.service-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Menu Cards */
.menu-card {
    position: relative;
}

.menu-card .popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-accent);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-card .card-body {
    padding: 1.25rem;
}

.menu-card .item-name {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.menu-card .item-description {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* =====================================================
   Menu Categories
   ===================================================== */
.menu-category {
    margin-bottom: 3rem;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: var(--border-subtle);
}

.category-header i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-right: 15px;
}

.category-header h3 {
    color: var(--color-text-primary);
    margin: 0;
}

/* Menu Category Images */
.category-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-image-wrapper:hover .category-image {
    transform: scale(1.05);
}

.category-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 1.5rem;
}

.category-image-overlay i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.category-image-overlay h3 {
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.category-description {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.serving-time {
    display: flex;
    align-items: center;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    background-color: var(--color-bg-card);
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
}

.serving-time i {
    color: var(--color-primary);
    margin-right: 10px;
    font-size: 1.1rem;
}

.menu-notes {
    display: flex;
    align-items: flex-start;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    background-color: rgba(210, 105, 30, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--color-gold);
}

.menu-notes i {
    color: var(--color-gold);
    margin-right: 10px;
    margin-top: 2px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.menu-disclaimer {
    display: flex;
    align-items: flex-start;
    color: var(--color-accent-light);
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    background-color: rgba(196, 30, 58, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--color-accent);
}

.menu-disclaimer i {
    color: var(--color-accent);
    margin-right: 10px;
    margin-top: 2px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* =====================================================
   Reviews Section
   ===================================================== */
.review-card {
    background-color: var(--color-bg-card);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: var(--border-subtle);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    margin-right: 15px;
}

.review-author {
    flex: 1;
}

.review-author h5 {
    color: var(--color-text-primary);
    margin: 0;
    font-size: 1rem;
}

.review-author .review-time {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.review-stars {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--color-text-secondary);
    font-style: italic;
    line-height: 1.6;
}

/* =====================================================
   Team Section
   ===================================================== */
.team-card {
    background-color: var(--color-bg-card);
    border-radius: 12px;
    padding: 2rem;
    border: var(--border-subtle);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--color-primary);
    transition: all 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-fallback {
    display: none;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background-color: var(--color-bg-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: var(--border-subtle);
}

.team-social a:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.team-social a[title="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.team-social a[title="Facebook"]:hover {
    background: #1877F2;
}

.team-social a[title="TikTok"]:hover {
    background: linear-gradient(45deg, #00f2ea, #ff0050);
}

.team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-info h4 {
    color: var(--color-text-primary);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.team-bio {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.team-contact {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
}

.team-contact .btn {
    padding: 0.5rem 1rem;
}

.team-contact .dropdown-menu {
    min-width: auto;
}

@media (max-width: 768px) {
    .team-card {
        padding: 1.5rem;
    }

    .team-photo {
        width: 120px;
        height: 120px;
    }

    .team-photo-fallback {
        font-size: 2.5rem;
    }

    .team-social a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .team-contact {
        flex-direction: column;
        width: 100%;
    }

    .team-contact .btn,
    .team-contact .dropdown {
        width: 100%;
    }

    .team-contact .dropdown .btn {
        width: 100%;
    }
}

/* =====================================================
   Contact Section
   ===================================================== */
.contact-info-card {
    background-color: var(--color-bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: var(--border-subtle);
}

.contact-info-card h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-right: 15px;
    margin-top: 3px;
    width: 25px;
}

.contact-item a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-item span {
    color: var(--color-text-secondary);
}

/* Contact Form */
.contact-form {
    background-color: var(--color-bg-card);
    border-radius: 12px;
    padding: 2rem;
    border: var(--border-subtle);
}

.form-label {
    color: var(--color-text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    background-color: var(--color-bg-darker);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-text-primary);
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--color-bg-darker);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.2);
    color: var(--color-text-primary);
}

.form-control::placeholder {
    color: var(--color-text-muted);
}

.form-select option {
    background-color: var(--color-bg-dark);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Alert Messages */
.alert-success-custom {
    background-color: rgba(34, 139, 34, 0.2);
    border: 1px solid var(--color-green);
    color: #90EE90;
    border-radius: 8px;
    padding: 1rem 1.5rem;
}

.alert-error-custom {
    background-color: rgba(196, 30, 58, 0.2);
    border: 1px solid var(--color-accent);
    color: #FFB6C1;
    border-radius: 8px;
    padding: 1rem 1.5rem;
}

/* =====================================================
   Gallery Section
   ===================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--color-bg-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay span {
    color: white;
    font-weight: 500;
}

/* Gallery Placeholder (when images not loaded) */
.gallery-placeholder {
    display: none;
    position: absolute;
    inset: 0;
    background: var(--color-bg-card);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    opacity: 0.5;
}

.gallery-placeholder span {
    font-size: 0.9rem;
}

.gallery-item.no-image img,
.gallery-item.no-image .overlay {
    display: none;
}

.gallery-item.no-image .gallery-placeholder {
    display: flex;
}

/* Social Media Embed Container */
.social-embed-container {
    background-color: var(--color-bg-card);
    border-radius: 12px;
    padding: 1rem;
    border: var(--border-subtle);
    overflow: hidden;
}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
    background-color: var(--color-bg-darker);
    padding: 60px 0 30px;
    border-top: 3px solid var(--color-primary);
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-right: 15px;
}

.footer-brand .brand-text-wrapper {
    display: flex;
    flex-direction: column;
}

.footer-tagline {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--color-bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: var(--border-subtle);
}

.social-links a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
}

.site-footer h5 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--color-text-secondary);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.footer-contact i {
    color: var(--color-primary);
    margin-right: 10px;
    margin-top: 3px;
    width: 20px;
    flex-shrink: 0;
}

.footer-contact a,
.footer-contact span {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
    min-width: 0;
}

/* Allow email and address links to fill available space */
.footer-contact li > a {
    flex: 1;
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-contact .contact-options {
    display: flex;
    gap: 0.5rem;
    flex-basis: 100%;
    margin-left: 30px;
    margin-top: 0.5rem;
}

.footer-contact .contact-options .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
}

.footer-contact .contact-options .btn i {
    margin: 0;
    width: auto;
    color: var(--color-primary);
}

.footer-contact .contact-options .btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.footer-contact .contact-options .btn:hover i {
    color: white !important;
}

.service-areas-text {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.copyright {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--color-primary);
}

/* =====================================================
   Toast Notifications
   ===================================================== */
.toast {
    background: transparent !important;
    box-shadow: none !important;
}

.toast-body-custom {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    min-width: 320px;
    animation: slideInRight 0.4s ease-out;
}

.toast-success {
    background: linear-gradient(135deg, #1a472a 0%, #228B22 100%);
    border-left: 4px solid #90EE90;
}

.toast-error {
    background: linear-gradient(135deg, #4a1a1a 0%, #C41E3A 100%);
    border-left: 4px solid #FFB6C1;
}

.toast-icon {
    font-size: 1.75rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
}

.toast-success .toast-icon {
    color: #90EE90;
}

.toast-error .toast-icon {
    color: #FFB6C1;
}

.toast-content {
    flex: 1;
}

.toast-title {
    color: white;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.toast-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.hiding {
    animation: slideOutRight 0.3s ease-in forwards;
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .toast-body-custom {
        min-width: auto;
        margin: 0 1rem;
    }
}

/* =====================================================
   Utility Classes
   ===================================================== */
.text-primary-custom {
    color: var(--color-primary) !important;
}

.text-accent {
    color: var(--color-accent) !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.border-accent {
    border-color: var(--color-primary) !important;
}

/* Divider with fire icon */
.fire-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
}

.fire-divider::before,
.fire-divider::after {
    content: '';
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-primary));
}

.fire-divider::after {
    background: linear-gradient(to left, transparent, var(--color-primary));
}

.fire-divider i {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin: 0 20px;
    animation: flicker 1.5s ease-in-out infinite alternate;
}

@keyframes flicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--color-bg-darker);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .btn-accent.ms-lg-3 {
        margin-top: 1rem;
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* =====================================================
   Back to Top Button
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.back-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .site-footer,
    .social-links,
    .btn,
    .back-to-top {
        display: none !important;
    }

    body.dark-theme {
        background: white;
        color: black;
    }
}
