/* ==========================================================================
   Parthan Catering - Premium Stylesheet
   Theme: Luxury Kerala Wedding (Maroon, Gold, Dark Brown, Cream)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* Color Palette */
    --primary-maroon: #6B1D2F;
    --primary-maroon-dark: #4A121F;
    --primary-maroon-light: #8E2C43;
    --primary-gold: #D4AF37;
    --primary-gold-dark: #B38F1E;
    --primary-gold-light: #F4E2A6;
    --dark-brown: #2B1B17;
    --dark-brown-light: #3D2924;
    --cream-bg: #FFFDF9;
    --cream-bg-alt: #F8F4EB;
    
    /* Text Colors */
    --text-dark: #2B1B17;
    --text-muted: #6B5B57;
    --text-light: #FFFFFF;
    
    /* Formatting & Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 10px rgba(43, 27, 23, 0.05);
    --shadow-md: 0 10px 30px rgba(43, 27, 23, 0.08);
    --shadow-lg: 0 20px 50px rgba(43, 27, 23, 0.15);
    --border-radius: 12px;
}

/* ==========================================================================
   Global & Typography Settings
   ========================================================================== */

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream-bg);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-maroon);
}

a {
    color: var(--primary-maroon);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Selection Color */
::selection {
    background-color: var(--primary-maroon);
    color: var(--primary-gold-light);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream-bg-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-maroon);
    border-radius: 5px;
    border: 2px solid var(--cream-bg-alt);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-maroon-light);
}

/* Custom Spacers & Utilities */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

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

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

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

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

/* ==========================================================================
   Preloader / Loading Spinner
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-brown);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.navbar-custom {
    padding: 15px 0;
    background-color: rgba(43, 27, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
    z-index: 1000;
}

.navbar-custom.navbar-scrolled {
    padding: 10px 0;
    background-color: var(--dark-brown);
    box-shadow: var(--shadow-md);
}

.navbar-brand-custom {
    display: flex;
    flex-direction: column;
}

.navbar-brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1.1;
    letter-spacing: 1px;
}

.navbar-brand-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 2px;
    position: relative;
}

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

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: calc(100% - 32px);
}

.navbar-toggler-custom {
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 4px 8px;
    border-radius: 4px;
}

.navbar-toggler-custom:focus {
    box-shadow: none;
    outline: none;
}

/* ==========================================================================
   Buttons Setup
   ========================================================================== */
.btn-gold {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--primary-gold);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-maroon {
    background-color: var(--primary-maroon);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--primary-maroon);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.btn-maroon:hover {
    background-color: transparent;
    color: var(--primary-maroon);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--primary-gold);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--primary-gold);
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Hero Banners
   ========================================================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: var(--dark-brown);
}

.hero-slide {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(43, 27, 23, 0.9) 20%, rgba(43, 27, 23, 0.4) 60%, rgba(43, 27, 23, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--text-light);
    max-width: 800px;
}

.hero-badge {
    background-color: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 8vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--text-light);
}

.hero-title span {
    color: var(--primary-gold);
}

.hero-desc {
    font-size: clamp(1rem, 3.8vw, 1.3rem);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.85);
}

/* Mobile responsive fixes for Hero Banner */
@media (max-width: 767px) {
    .hero-slider {
        height: auto !important;
        min-height: 100vh;
    }
    
    .hero-slide {
        height: auto !important;
        min-height: 100vh;
        padding: 100px 24px 60px !important; /* Stack padding: 100px top, 60px bottom, 24px horizontal */
        display: flex !important;
        align-items: center !important;
    }
    
    .hero-slide::before {
        background: rgba(26, 16, 14, 0.6) !important; /* Dark overlay with 0.6 opacity */
    }
    
    .hero-content {
        text-align: left !important;
        width: 100% !important;
    }
    
    .hero-btns {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .hero-btns .btn {
        width: 100% !important;
        max-width: 280px !important;
        margin: 10px auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px !important;
        margin-top: 25px !important;
    }
    
    .hero-feature-item {
        width: 100%;
        max-width: 280px;
        text-align: left;
    }
}

/* Feature tags inside hero */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.hero-feature-item {
    font-size: 0.85rem;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-left: 3px solid var(--primary-gold);
    padding: 8px 16px;
    border-radius: 0 8px 8px 0;
}

/* Inner Page Hero Banner */
.inner-hero {
    position: relative;
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(43, 27, 23, 0.95), rgba(43, 27, 23, 0.85));
}

.inner-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light);
}

.inner-hero-title {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.breadcrumb-custom {
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-custom .breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-custom .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--primary-gold);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--primary-gold);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "|";
}

/* ==========================================================================
   Section Title component
   ========================================================================== */
.section-title-wrapper {
    margin-bottom: 60px;
    position: relative;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

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

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

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-title-wrapper.text-start .section-desc {
    margin: 0;
}

/* ==========================================================================
   Cards, Glassmorphism, Hovers
   ========================================================================== */
.premium-card {
    background-color: var(--cream-bg);
    border: 1px solid rgba(107, 29, 47, 0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.premium-card-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
}

.premium-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.premium-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.premium-card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-maroon);
}

.premium-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.25);
}

/* Feature Items Grid */
.feature-box {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--cream-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid transparent;
    transition: var(--transition-smooth);
    height: 100%;
}

.feature-box:hover {
    border-bottom-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-box-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background-color: rgba(107, 29, 47, 0.05);
    color: var(--primary-maroon);
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.feature-box:hover .feature-box-icon {
    background-color: var(--primary-maroon);
    color: var(--primary-gold-light);
}

.feature-box-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-box-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.choose-img-wrapper {
    position: relative;
}

.choose-img-large {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    width: 85%;
}

.choose-img-small {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    border-radius: var(--border-radius);
    border: 8px solid var(--cream-bg);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Food Menu layouts (menus.html)
   ========================================================================== */
.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.menu-tab-btn {
    background-color: var(--cream-bg-alt);
    border: 1px solid rgba(107, 29, 47, 0.1);
    color: var(--primary-maroon);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.menu-tab-btn:hover,
.menu-tab-btn.active {
    background-color: var(--primary-maroon);
    color: var(--text-light);
    border-color: var(--primary-maroon);
}

.menu-item-card {
    display: flex;
    align-items: center;
    background-color: var(--cream-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.menu-item-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.2);
}

.menu-item-thumb {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-gold-light);
    margin-right: 20px;
    flex-shrink: 0;
}

.menu-item-details {
    flex-grow: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-maroon);
    margin-bottom: 0;
}

.menu-item-divider {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(107, 29, 47, 0.15);
    margin: 0 15px;
}

.menu-item-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .menu-item-card {
        flex-direction: column;
        text-align: center;
    }
    .menu-item-thumb {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .menu-item-header {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .menu-item-divider {
        display: none;
    }
}

/* ==========================================================================
   Masonry Filter Gallery (gallery.html)
   ========================================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    background-color: transparent;
    border: 1px solid rgba(43, 27, 23, 0.15);
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    border-color: var(--primary-gold);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.gallery-item {
    width: 33.333%;
    padding: 10px;
    box-sizing: border-box;
    transition: var(--transition-smooth);
}

@media (max-width: 992px) {
    .gallery-item {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        width: 100%;
    }
}

.gallery-item.hide {
    display: none;
}

.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding-top: 75%; /* 4:3 ratio */
}

.gallery-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 27, 23, 0.8);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    padding: 20px;
    text-align: center;
    z-index: 2;
}

.gallery-box:hover img {
    transform: scale(1.15);
}

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

.gallery-zoom-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    font-size: 1.25rem;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-box:hover .gallery-zoom-icon {
    transform: translateY(0);
}

.gallery-caption {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.05s;
    color: var(--primary-gold-light);
}

.gallery-box:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
    color: rgba(255, 255, 255, 0.7);
}

.gallery-box:hover .gallery-category {
    transform: translateY(0);
}

/* ==========================================================================
   Statistics Counter Section
   ========================================================================== */
.stats-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 18, 31, 0.95);
}

.stat-item {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
    line-height: 1;
}

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

/* ==========================================================================
   Testimonials Slider (Swiper)
   ========================================================================== */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background-color: var(--cream-bg);
    border: 1px solid rgba(107, 29, 47, 0.06);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    max-width: 800px;
    margin: 20px auto 40px;
    position: relative;
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: 30px;
    left: 40px;
}

.testimonial-rating {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-maroon);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-gold);
}

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

.testimonial-author-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.swiper-pagination-custom .swiper-pagination-bullet {
    background-color: var(--primary-maroon);
    opacity: 0.3;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
    background-color: var(--primary-gold);
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

/* ==========================================================================
   Call To Action (CTA) Box
   ========================================================================== */
.cta-banner {
    position: relative;
    border-radius: var(--border-radius);
    padding: 80px 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 18, 31, 0.95) 0%, rgba(43, 27, 23, 0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light);
}

.cta-title {
    font-size: 2.6rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 576px) {
    .cta-banner {
        padding: 50px 30px;
    }
    .cta-title {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   FAQ Section Accordions
   ========================================================================== */
.faq-accordion .accordion-item {
    border: 1px solid rgba(107, 29, 47, 0.08);
    background-color: var(--cream-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-maroon);
    background-color: var(--cream-bg);
    padding: 20px 25px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--cream-bg-alt);
    color: var(--primary-maroon-light);
    box-shadow: none;
}

.faq-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='%236B1D2F'%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");
}

.faq-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='%23D4AF37'%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");
}

.faq-accordion .accordion-body {
    padding: 25px;
    font-size: 0.95rem;
    color: var(--text-muted);
    background-color: var(--cream-bg);
    border-top: 1px solid rgba(107, 29, 47, 0.05);
}

/* ==========================================================================
   Contact Page Elements & Form
   ========================================================================== */
.contact-info-card {
    background-color: var(--cream-bg-alt);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--primary-maroon);
    color: var(--primary-gold-light);
    border-radius: 50%;
    text-align: center;
    font-size: 1.25rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-brown);
}

.contact-info-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background-color: var(--cream-bg);
    border: 1px solid rgba(107, 29, 47, 0.08);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-group-custom {
    margin-bottom: 20px;
}

.form-label-custom {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-maroon);
    margin-bottom: 8px;
}

.form-control-custom {
    border: 1px solid rgba(107, 29, 47, 0.15);
    background-color: var(--cream-bg);
    color: var(--text-dark);
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background-color: var(--cream-bg);
}

.map-placeholder-container {
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(107, 29, 47, 0.1);
}

.map-placeholder-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   Mega Footer
   ========================================================================== */
.footer-main {
    background-color: var(--dark-brown);
    color: rgba(255, 255, 255, 0.7);
    padding: 90px 0 30px;
    border-top: 4px solid var(--primary-gold);
}

.footer-widget-title {
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

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

.footer-about-text {
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icon:hover {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    transform: translateY(-3px);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.footer-links-list a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--primary-gold);
}

.footer-links-list a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-contact-info i {
    color: var(--primary-gold);
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 4px;
}

.newsletter-form {
    position: relative;
    margin-top: 15px;
}

.newsletter-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 60px 12px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.newsletter-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
}

.newsletter-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    background-color: var(--primary-gold-light);
}

.footer-bottom {
    background-color: #1E1210;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ==========================================================================
   Floating Widgets & Utilities (WhatsApp & Call stacked, Scroll To Top)
   ========================================================================== */
.floating-contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    animation: fadeInUp 0.8s ease-out;
}

.floating-btn-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white !important;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
    position: relative;
}

.floating-btn-whatsapp {
    background-color: #25d366;
    animation: pulse-whatsapp-float 2s infinite;
}

.floating-btn-phone {
    background-color: var(--primary-maroon);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold) !important;
}

.floating-btn-circle:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Tooltips */
.floating-btn-circle::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px;
    background-color: var(--dark-brown);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    pointer-events: none;
}

.floating-btn-circle:hover::before {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-whatsapp-float {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-maroon);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    transform: translateY(-5px);
}

@media (max-width: 576px) {
    .floating-contact-widget {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .floating-btn-circle {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .floating-btn-circle::before {
        display: none;
    }
    .scroll-top-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        left: 20px;
    }
}
