﻿/* assets/css/style.css - COMPLETE VERSION WITH CAROUSEL */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #3d1c1c;
    /* Muted Deep Wine */
    --primary-light: #522828;
    --accent: #b8904d;
    /* Gold stays same as it pairs perfectly */
    --accent-light: #d4af37;
    --dark: #1a0f0f;
    /* Dark Wine-Charcoal replaces black */
    --dark-light: #261717;
    --light: #fafafa;
    --light-gray: #f5f5f5;
    --muted: #888888;
    --success: #2e7d32;
    --gradient: linear-gradient(135deg, #1a0f0f 0%, #3d1c1c 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.18);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--light);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ============ FORM MODERN ============ */
.form-control-modern,
.form-select-modern {
    background: rgba(184, 144, 77, 0.02);
    border: 1px solid rgba(184, 144, 77, 0.2);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    transition: var(--transition);
    color: var(--primary);
    font-weight: 500;
}

.form-control-modern:focus,
.form-select-modern:focus {
    background: white;
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(184, 144, 77, 0.1);
    outline: none;
}

.form-select-modern {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23b8904d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

.contact-info-card {
    background: var(--primary) !important;
}

.bg-primary-subtle {
    background-color: rgba(184, 144, 77, 0.1) !important;
}

.text-primary-emphasis {
    color: var(--accent) !important;
}

/* ============ NAVBAR ============ */
.navbar {
    padding: 1.5rem 0;
    transition: var(--transition);
    z-index: 1050;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.navbar-brand .text-primary {
    color: white !important;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand .text-primary {
    color: var(--primary) !important;
}

.navbar-brand .text-accent {
    color: var(--accent);
}

.navbar.scrolled .navbar-brand .text-dark {
    color: var(--primary) !important;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: white !important;
    /* Default white for visible over dark hero */
    padding: 0.5rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: 50px;
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--primary) !important;
    /* Switch to dark on scroll */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

.navbar .navbar-toggler-icon {
    filter: invert(1);
    transition: var(--transition);
}

.navbar.scrolled .navbar-toggler-icon {
    filter: invert(0);
}

.navbar-nav .nav-link.active {
    color: var(--accent) !important;
    background: rgba(184, 144, 77, 0.1);
}

.navbar.scrolled .nav-link.active {
    color: var(--primary) !important;
    background: rgba(0, 0, 0, 0.05);
}

/* ============ BUTTONS ============ */
.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-brand,
.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-brand:hover,
.btn-primary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-accent {
    background: var(--accent);
    color: white !important;
    border: none;
}

.btn-accent:hover {
    background: var(--accent-light);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 144, 77, 0.4);
}

.btn-outline-light {
    border: 2px solid white;
    color: white !important;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary) !important;
    transform: translateY(-3px);
}

.btn-outline-brand {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline-brand:hover {
    background: var(--accent);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 144, 77, 0.3);
}

/* ============ HERO CAROUSEL ============ */
.hero-carousel {
    height: 100vh;
    width: 100%;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.carousel-image,
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s linear;
    filter: brightness(0.6);
    /* Slightly darker for better text readability */
}

.carousel-item.active .parallax-bg {
    transform: scale(1);
}

.carousel-item.active .carousel-image {
    transform: scale(1);
}

.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(61, 28, 28, 0.8) 0%, rgba(61, 28, 28, 0.2) 100%);
}

.carousel-caption {
    z-index: 10;
    position: relative;
    max-width: 850px;
    padding: 0 80px 0 140px;
    /* Increased left padding to clear controls */
    margin-bottom: 5rem;
    text-align: left;
}

@media (max-width: 1199px) {
    .carousel-caption {
        padding-left: 120px;
        padding-right: 60px;
    }
}

@media (max-width: 991px) {
    .carousel-caption {
        padding: 0 40px;
        text-align: center !important;
        margin: 0 auto 5rem;
    }

    .carousel-caption .d-flex {
        justify-content: center !important;
    }
}

.badge-premium {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(184, 144, 77, 0.1);
    color: var(--accent);
    border: 1px solid rgba(184, 144, 77, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.display-1 {
    font-size: 3.5rem;
    /* Reverted to original comfortable size */
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    /* Added for better legibility */
}

.fw-800 {
    font-weight: 800;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 1.5rem;
    /* Tighter margin but caption padding handles spacing */
    backdrop-filter: blur(10px);
    opacity: 0.8;
    transition: var(--transition);
    z-index: 20;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
    justify-content: flex-start;
    margin-left: 140px;
    /* Aligned with caption padding */
    margin-bottom: 3rem;
}

@media (max-width: 991px) {
    .carousel-indicators {
        justify-content: center;
        margin-left: 0;
    }
}

.carousel-indicators [data-bs-target] {
    width: 40px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-right: 10px;
    border: none;
    transition: var(--transition);
}

.carousel-indicators .active {
    background-color: var(--accent);
    width: 80px;
}

/* ============ HERO CONTENT SECTION ============ */
.hero-content-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.05;
}

.badge-soft {
    background: rgba(184, 144, 77, 0.1);
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.display-5 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-content-section .lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--muted);
}

/* Button Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.0) 100%);
}

.btn-shine:hover::after {
    opacity: 1;
    left: 120%;
    transition: left 0.7s ease, opacity 0.1s ease;
}

/* Continuous Pulse for Primary CTA */
@keyframes gentlePulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(184, 144, 77, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(184, 144, 77, 0.6);
    }
}

.pulse-cta {
    animation: gentlePulse 2.5s infinite ease-in-out;
}

/* KPI Cards */
.kpi {
    background: white;
    border: 1px solid rgba(184, 144, 77, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.kpi:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.kpi .counter {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kpi .lbl {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Hero Card */
.hero-card {
    background: white;
    border: 1px solid rgba(184, 144, 77, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    color: var(--dark);
}

.hero-card h5 {
    color: var(--dark);
}

.hero-card p,
.hero-card .form-label,
.hero-card .form-control,
.hero-card .form-select {
    color: var(--muted);
}

.hero-card .form-control,
.hero-card .form-select {
    background: white;
    border: 1px solid rgba(184, 144, 77, 0.2);
}

.hero-card .form-control:focus,
.hero-card .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(184, 144, 77, 0.1);
}

/* ============ SECTION STYLING ============ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-soft {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.section-soft::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.section-title {
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.breadcrumb-premium {
    background: var(--primary);
    padding: 160px 0 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.breadcrumb-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.page-header-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-top: 1rem;
}

/* ============ SERVICE CARDS PREMIUM ============ */
.service-card-premium {
    transition: var(--transition);
    border-radius: var(--radius);
    background: white;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
}

.card-img-container {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-premium:hover .card-img-container img {
    transform: scale(1.1);
}

.service-icon-floating {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
    border: 4px solid white;
}

.fw-700 {
    font-weight: 700;
}

.scale-hover {
    transition: transform 0.3s ease;
}

.service-card-premium:hover .scale-hover {
    transform: translateX(5px);
}

/* ============ WHY CHOOSE US MODERN ============ */
.why-us-section {
    position: relative;
}

.bg-shape {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 144, 77, 0.1) 0%, transparent 70%);
    top: -10%;
    right: -10%;
}

.icon-circle-lg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.glass-form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

/* Glass Variant for Dark Backgrounds */
.glass-form-card .form-control-modern,
.glass-form-card .form-select-modern {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white !important;
    transition: var(--transition);
}

.glass-form-card .form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.bg-light .glass-form-card .form-control-modern,
.bg-light .glass-form-card .form-select-modern {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--primary) !important;
}

.bg-light .glass-form-card .form-control-modern::placeholder {
    color: var(--muted);
}

.form-control-modern:focus,
.form-select-modern:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(184, 144, 77, 0.1);
}

.form-select-modern {
    cursor: pointer;
}

.glass-form-card .form-select-modern option {
    background: #1e1e1e;
    color: white;
}

.bg-light .glass-form-card .form-select-modern option {
    background: white;
    color: var(--primary);
}

/* ============ CARD STYLING ============ */
.card {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    background: white;
}

/* Enhanced Card Hover Animation */
.card-hover {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    transform-origin: center bottom;
    overflow: hidden;
    position: relative;
}

.card-hover:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(184, 144, 77, 0.25) !important;
}

/* Animated Icon on Card Hover */
.card-hover .icon-pill {
    transition: all 0.5s ease;
}

.card-hover:hover .icon-pill {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient);
    color: white;
}

.icon-pill {
    width: 60px;
    height: 60px;
    background: rgba(184, 144, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ============ SERVICE CHIPS ============ */
.service-chip {
    display: inline-block;
    background: rgba(184, 144, 77, 0.08);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin: 0.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(184, 144, 77, 0.1);
}

.service-chip:hover {
    background: rgba(184, 144, 77, 0.15);
    transform: translateY(-2px);
}

/* ============ BREADCRUMBS PREMIUM ============ */
.breadcrumb-premium {
    background: var(--primary);
    /* Matched to application color as requested */
    background: linear-gradient(135deg, #1a0f0f 0%, #3d1c1c 100%);
    /* Rich gradient */
    padding: 120px 0 60px;
    margin-top: -100px;
    position: relative;
    overflow: hidden;
}

.breadcrumb-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(184, 144, 77, 0.15), transparent);
}

/* ============ BREADCRUMB PREMIUM ============ */
.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a,
.breadcrumb-item.active {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: var(--accent);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\00bb';
    color: rgba(255, 255, 255, 0.3);
    padding: 0 15px;
    font-size: 0.8rem;
    line-height: 1;
    display: inline-block;
}

/* ============ PAGE HEADER ============ */
.page-header-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-top: 1rem;
}

/* ============ PROCESS SECTION ============ */
.process-step {
    padding: 3rem;
    background: white;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    border: 2px solid var(--accent);
}

/* ============ FAQ SECTION ============ */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-accordion .accordion-button {
    padding: 1.5rem;
    font-weight: 700;
    background: white;
    color: var(--primary);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
}

.faq-accordion .accordion-button::after {
    filter: grayscale(1);
}

/* ============ TESTIMONIALS PREMIUM ============ */
.testimonial-card-premium {
    background: white;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
}

.italic-font {
    font-style: italic;
    color: var(--muted);
}

/* ============ CTA SECTION PREMIUM ============ */
.cta-section-premium {
    background: linear-gradient(rgba(61, 28, 28, 0.9), rgba(26, 15, 15, 0.85)),
        url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ============ FOOTER PREMIUM ============ */
.footer-premium {
    background: linear-gradient(135deg, #1a0f0f 0%, #3d1c1c 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

/* ============ TESTIMONIALS ============ */
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    margin-top: 2rem;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 2rem;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark);
    color: #ccc;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.footer a {
    color: #ccc;
    transition: var(--transition);
}

.footer a:hover {
    color: white;
    padding-left: 5px;
}

.line {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* ============ STICKY CTA ============ */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }

    80% {
        opacity: 1;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============ MODAL ============ */
.modal-content {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.modal-header {
    background: var(--gradient);
    color: white;
    padding: 2rem;
}

.modal-body {
    padding: 2rem;
}

/* ============ UTILITY CLASSES ============ */
.bg-dark {
    background-color: var(--dark) !important;
}

.bg-dark-light {
    background-color: var(--dark-light) !important;
}

.bg-gradient-obsidian {
    background: var(--gradient) !important;
}

.text-muted {
    color: var(--muted) !important;
}

.text-muted-2 {
    color: var(--muted);
}

.muted {
    color: var(--muted);
}

/* Consolidated Responsive Rules */
@media (max-width: 768px) {
    .display-1 {
        font-size: 3rem !important;
    }

    .carousel-caption {
        padding: 0 20px !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
        margin: 0 5px;
    }
}

/* Animation Classes for AOS */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Removed redundant Enhanced Carousel Styles */

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 20;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    display: inline-block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(184, 144, 77, 0.1), rgba(18, 18, 20, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.client-avatar img {
    border: 3px solid var(--accent);
    padding: 2px;
}

.rating i {
    margin-right: 2px;
}

/* Stats Section */
.stat-item {
    padding: 20px;
}

.stat-item h3 {
    font-weight: 800;
    margin-bottom: 10px;
}

/* Why Choose Us */
.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(184, 144, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), transparent);
}

/* Removed redundant responsive carousel styles */

/* Services Page Specific Styles */
.services-header {
    background: linear-gradient(rgba(61, 28, 28, 0.9), rgba(26, 15, 15, 0.85)), url('https://images.unsplash.com/photo-1492684223066-dd23140edf6d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item.active {
    color: var(--accent);
}

.breadcrumb-item a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent);
}

/* Service Category Cards */
.service-category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.service-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(184, 144, 77, 0.1), rgba(18, 18, 20, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon-small {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(184, 144, 77, 0.1), rgba(18, 18, 20, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-features {
    min-height: 60px;
}

.badge.bg-primary-subtle {
    background-color: rgba(184, 144, 77, 0.1) !important;
    color: var(--accent) !important;
    font-weight: 500;
    padding: 0.5em 0.8em;
}

/* Service Detail Cards */
.service-detail-card {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-list li:last-child {
    border-bottom: none;
}

/* FAQ Styles */
.faq-section .accordion-button {
    background-color: white;
    color: #0f172a;
    font-size: 1.1rem;
    padding: 1.5rem;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: white;
    color: var(--accent);
    box-shadow: 0 5px 15px rgba(184, 144, 77, 0.1);
}

.faq-section .accordion-button:focus {
    border-color: rgba(184, 144, 77, 0.2);
    box-shadow: 0 0 0 0.25rem rgba(184, 144, 77, 0.1);
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b8904d'%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-section .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='%23b8904d'%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-section .accordion-body {
    padding: 1.5rem;
    background-color: white;
    border-radius: 0 0 10px 10px;
}

.faq-section .accordion-body ul {
    padding-left: 1.5rem;
}

.faq-section .accordion-body li {
    margin-bottom: 0.5rem;
}

/* Removed duplicate CTA sections */

/* Animation for page elements */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Enhanced Services Page Styles */

/* Banner Section */
.services-banner {
    background: linear-gradient(rgba(61, 28, 28, 0.9), rgba(26, 15, 15, 0.85)), url('https://images.unsplash.com/photo-1492684223066-dd23140edf6d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(61, 28, 28, 0.9), rgba(26, 15, 15, 0.85));
    mix-blend-mode: multiply;
}

.services-banner .container {
    position: relative;
    z-index: 2;
}

/* Removed redundant breadcrumb styles */

/* Banner Images */
.banner-image-main {
    height: 400px;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.banner-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-image-main:hover img {
    transform: scale(1.05);
}

.banner-image-secondary {
    height: 250px;
    border: 4px solid white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.banner-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-image-secondary:hover img {
    transform: scale(1.05);
}

.floating-stats {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Enhanced Service Cards */
.service-card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

.service-card-hover:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2) !important;
}

.service-card-hover .card-img-top {
    height: 200px;
    position: relative;
}

.service-card-hover .card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-hover:hover .card-img-top img {
    transform: scale(1.1);
}

.category-badge {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-features span {
    font-weight: 500;
    color: #374151;
}

/* Enhanced CTA Section */
.cta-section-enhanced {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-section-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 8s infinite linear;
}

.cta-section-enhanced::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: pulse 10s infinite linear reverse;
}

.cta-section-enhanced .container {
    position: relative;
    z-index: 2;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Enhanced Buttons */
.btn-primary {
    background: var(--gradient);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-light {
    background: white;
    color: var(--accent);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Section Title Enhancement */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-banner {
        padding-top: 100px;
        padding-bottom: 60px;
        background-attachment: scroll;
    }

    .services-banner h1 {
        font-size: 2.8rem;
    }

    .banner-image-secondary {
        display: none;
    }

    .floating-stats {
        display: none;
    }
}

@media (max-width: 768px) {
    .services-banner h1 {
        font-size: 2.2rem;
    }

    .services-banner .lead {
        font-size: 1.1rem;
    }

    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .service-card-hover {
        margin-bottom: 2rem;
    }

    .cta-section-enhanced h2 {
        font-size: 2rem;
    }
}

/* Text Contrast Improvement */
.text-muted {
    color: #6b7280 !important;
}

.text-white {
    color: white !important;
}

.text-dark {
    color: #1f2937 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* Card Body Padding */
.card-body {
    padding: 2rem !important;
}

/* Badge Enhancement */
.badge.bg-primary-subtle {
    background-color: rgba(184, 144, 77, 0.1) !important;
    color: var(--accent) !important;
    font-weight: 600;
    padding: 0.6em 1.2em;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

/* ============ GALLERY ENHANCEMENTS ============ */
.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.gallery-card {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(0.9);
    opacity: 0;
    display: none;
}

.gallery-card.show {
    display: block;
    transform: scale(1);
    opacity: 1;
}

.gallery-card.hide {
    transform: scale(0.8);
    opacity: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark);
}

.gallery-item img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26, 15, 15, 0.8), transparent);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: flex-end;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay span {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
    opacity: 1;
}

/* Staggered Animation for Gallery */
@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-card.animate-in {
    animation: galleryFadeIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* ============ ANIMATED DARK BACKGROUNDS ============ */
/* Ensure content stays on top - FORCED STACKING */
.animated-dark-overlay>.container,
.animated-dark-overlay>div,
.animated-dark-overlay>nav {
    position: relative;
    z-index: 10 !important;
}

.animated-dark-overlay {
    position: relative;
    overflow: hidden;
    /* Removed solid background to let image show */
}

/* Layer 1: High Visibility Animated Image */
.animated-dark-overlay::before {
    content: '';
    position: absolute;
    inset: -50px;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    opacity: 1;
    /* Full opacity for background image */
    filter: blur(8px) brightness(1.1);
    /* Soft blur */
    z-index: 1;
    transition: opacity 0.5s ease;
    animation: slowPan 30s infinite alternate ease-in-out;
}

/* Layer 2: Sophisticated Wine Tint Overlay (placed OVER the image) */
.animated-dark-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 28, 28, 0.45) 0%, rgba(26, 15, 15, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

@keyframes slowPan {
    0% {
        transform: scale(1) translate(0, 0) rotate(0deg);
    }

    50% {
        transform: scale(1.1) translate(-2%, -2%) rotate(1deg);
    }

    100% {
        transform: scale(1.05) translate(1%, -1%) rotate(-1deg);
    }
}

/* ============ ANIMATED BLUR OVERLAY (LIGHTER) ============ */
.animated-blur-overlay>.container,
.animated-blur-overlay>div,
.animated-blur-overlay>nav {
    position: relative;
    z-index: 10 !important;
}

/* ============ PREMIUM WINE BACKGROUND ============ */
.bg-premium-wine {
    /* Matches the CTA section look the user liked: Rich Wine Gradient + Image */
    background: linear-gradient(rgba(61, 28, 28, 0.85), rgba(26, 15, 15, 0.9)),
        url('../../img/hero/wedding.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect like the reference */
    position: relative;
}

/* Ensure content is readable and styled correctly */
.bg-premium-wine .badge-premium {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--accent);
}

/* Utility for Image Collage Overlay */
.bg-gradient-dark-transparent {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.letter-spacing-1 {
    letter-spacing: 1px;
}