/* ===================================
   Custom Styles for Professional Website
   Bootstrap 5 Template
   =================================== */

/* ===================================
   Google Fonts Import
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===================================
   CSS Variables - Color Palette
   =================================== */
:root {
    --primary-color: #0f2027;
    --secondary-color: #2c5364;
    --accent-color: #c9a961;
    --accent-light: #e8d4a8;
    --accent-dark: #a88b4e;
    --light-bg: #f5f7fa;
    --dark-bg: #0f2027;
    --text-primary: #0f2027;
    --text-secondary: #546e7a;
    --border-color: #e0e6ed;
    --shadow-sm: 0 0.125rem 0.25rem rgba(15, 32, 39, 0.08);
    --shadow-md: 0 0.5rem 1rem rgba(15, 32, 39, 0.12);
    --shadow-lg: 0 1rem 3rem rgba(15, 32, 39, 0.18);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: #e8e8e8;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.display-4,
.display-5 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
}

/* ===================================
   Accessibility - Skip Link
   =================================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    padding: 1.25rem 0;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
}

.navbar-brand img {
    transition: var(--transition-base);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
}

/* Brand name and operated by styles */
.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.operated-by {
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1;
    margin-top: -2px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    transition: var(--transition-base);
    position: relative;
    font-size: 1.05rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

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

/* Focus styles for keyboard navigation */
.navbar-nav .nav-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    padding: 3rem 0 4rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    margin: 0 0 0.5rem 0;
    border-radius: 0;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.hero-section .container {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Floating decorative circles */
.hero-section::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.25) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 50%;
    animation: float1 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 8%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(44, 83, 100, 0.2) 0%, rgba(44, 83, 100, 0.03) 100%);
    border-radius: 50%;
    animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }
    50% {
        transform: translate(30px, -40px);
        opacity: 0.9;
    }
}

/* Floating decorative circles */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.floating-circle-1 {
    top: 20%;
    right: 15%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.3) 0%, rgba(201, 169, 97, 0.05) 100%);
    animation: float3 12s ease-in-out infinite;
}

.floating-circle-2 {
    bottom: 30%;
    left: 12%;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(44, 83, 100, 0.25) 0%, rgba(44, 83, 100, 0.04) 100%);
    animation: float4 15s ease-in-out infinite;
}

.floating-circle-3 {
    top: 50%;
    right: 35%;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, rgba(201, 169, 97, 0.03) 100%);
    animation: float5 10s ease-in-out infinite;
}

@keyframes float3 {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translate(40px, -50px) scale(1.2);
        opacity: 1;
    }
}

@keyframes float4 {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-30px, 40px) scale(1.15);
        opacity: 0.9;
    }
}

@keyframes float5 {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(20px, 30px) scale(1.3);
        opacity: 0.85;
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: translate(-25px, 35px);
        opacity: 0.8;
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.min-vh-75 {
    min-height: auto;
}

/* Hero text styling */
.hero-section h1 {
    color: var(--text-primary);
    font-size: 3rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9), 0 4px 20px rgba(255, 255, 255, 0.6);
    font-weight: 800;
}

.hero-section .lead {
    color: var(--text-primary);
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.8);
}

.hero-section .text-muted {
    color: var(--text-primary) !important;
    opacity: 0.9;

/* Hero content box */
.hero-content-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 1.5rem 4rem rgba(15, 32, 39, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.hero-content-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.3) 0%, rgba(44, 83, 100, 0.2) 100%);
    border-radius: 2rem;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-base);
}

.hero-content-box:hover::before {
    opacity: 1;
}

/* Content box for sections */
.content-box {
    background: #ffffff;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);
    border: 1px solid #d1d5db;
    position: relative;
    transition: var(--transition-base);
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 1.5rem 1.5rem 0 0;
}

.content-box:hover {
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* About section content box */
.about-section .about-content-box1 {
    background: #ffffff !important;
    padding: 3rem !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(201, 169, 97, 0.2) !important;
    position: relative;
    transition: var(--transition-base);
}

.about-section .about-content-box1:hover {
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-3px);
}

.hero-content-box h1,
.hero-content-box .lead,
.hero-content-box p {
    text-shadow: none;
}
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.8);
}

.hero-image-placeholder {
    transition: var(--transition-base);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
    border-radius: 2rem !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%) !important;
    border: 1px solid rgba(201, 169, 97, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(201, 169, 97, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

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

.hero-image-placeholder:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 2.5rem 5rem rgba(201, 169, 97, 0.3);
    border-color: rgba(201, 169, 97, 0.5);
}

.hero-image-placeholder i {
    color: rgba(201, 169, 97, 0.8) !important;
    position: relative;
    z-index: 1;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    transition: var(--transition-base);
    border: none;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #0d6efd;
    color: white;
    box-shadow: 0 0.5rem 1.5rem rgba(13, 110, 253, 0.3);
}

.btn-primary:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 0.75rem 1.5rem rgba(13, 110, 253, 0.4);
}

.btn-primary:focus {
    outline: 3px solid rgba(13, 110, 253, 0.4);
    outline-offset: 2px;
}

.btn-outline-secondary {
    border: 2px solid var(--text-secondary);
    color: var(--text-secondary);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--text-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* ===================================
   Cards
   =================================== */
.card {
    transition: var(--transition-base);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 97, 0.08);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1.5rem 3.5rem rgba(201, 169, 97, 0.2) !important;
    border-color: rgba(201, 169, 97, 0.2);
}

.card-body {
    padding: 2rem;
}

/* Feature Cards */
.feature-icon {
    width: 70px;
    height: 70px;
    transition: var(--transition-base);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%) !important;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: var(--transition-base);
    z-index: -1;
}

.card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.card:hover .feature-icon::after {
    opacity: 0.2;
    inset: -10px;
}

/* Service Cards */
.service-card {
    position: relative;
    overflow: visible;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 6px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    transition: var(--transition-base);
    border-radius: 3px;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
}

.service-card:hover::before {
    height: 60%;
}

/* Portfolio Cards */
.portfolio-item {
    cursor: pointer;
}

.portfolio-image {
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(201, 169, 97, 0.92);
    opacity: 0;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item:hover .portfolio-image::after {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

/* ===================================
   Sections
   =================================== */
section {
    position: relative;
    background: transparent;
    margin: 0.5rem 0;
    padding: 0.5rem 0;
}

section .container {
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

/* Alternating section backgrounds with organic shapes */
section:nth-child(even) {
    position: relative;
}

section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(44, 83, 100, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Main content wrapper */
main {
    padding: 2rem 0;
}

main .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section spacing */
.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* Override for sections to remove extra padding since we have margin */
section.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* Ensure sections have proper spacing */
section:first-of-type {
    margin-top: 0;
}

section:last-of-type {
    margin-bottom: 0;
}

/* Step numbers for How It Works section */
.step-number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.step-number {
    background: linear-gradient(135deg, var(--accent-color) 0%, #b89850 100%);
}

.step-number:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 1rem 2rem rgba(201, 169, 97, 0.3);
}

/* ===================================
   Forms
   =================================== */
.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    transition: var(--transition-base);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.2);
    outline: none;
}

.form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}

/* ===================================
   Footer
   =================================== */
footer {
    background: var(--dark-bg);
    margin-top: 2rem;
    border-radius: 1rem 1rem 0 0;
}

footer a {
    transition: var(--transition-base);
}

footer a:hover {
    color: var(--accent-color) !important;
    text-decoration: none;
}

footer a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Social media icons */
footer .bi {
    transition: var(--transition-base);
}

footer a:hover .bi {
    transform: translateY(-3px);
}

/* ===================================
   Back to Top Button
   =================================== */
#backToTop {
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

#backToTop:focus {
    outline: 3px solid rgba(201, 169, 97, 0.4);
    outline-offset: 2px;
}

/* ===================================
   Utility Classes
   =================================== */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

/* Shadow utilities */
.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

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

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

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablets and below */
@media (max-width: 991.98px) {
    main .container-fluid {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero-section {
        padding: 2.5rem 0 3rem;
        min-height: auto;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-content-box {
        padding: 2.5rem;
    }
    
    .min-vh-75 {
        min-height: auto;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

/* Mobile devices */
@media (max-width: 767.98px) {
    main .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    section {
        margin: 0.5rem 0;
        padding: 0.5rem 0;
    }
    
    section .container {
        border-radius: 0.75rem;
    }
    
    /* Increase width for About section on mobile - applies to all pages */
    .about-section .col-lg-10,
    .about-section .col-lg-8 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    .about-section .container,
    section.bg-light .container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .about-section div[style*="background: #ffffff"],
    .about-section div[style*="background:#ffffff"] {
        padding: 1.5rem !important;
    }
    
    /* Ensure proper spacing for content boxes on mobile */
    section.bg-light .container {
        padding: 1.5rem 0.5rem !important;
    }
    
    .hero-section {
        padding: 2rem 0 2.5rem;
        min-height: auto;
        margin: 0 0 0.5rem 0;
        border-radius: 0;
    }
    
    .hero-section .container {
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-content-box {
        padding: 2rem;
        border-radius: 1.5rem;
    }
    
    .hero-image-placeholder {
        height: 280px !important;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    #backToTop {
        width: 45px;
        height: 45px;
        margin: 1rem !important;
    }
}

/* Small mobile devices */
@media (max-width: 575.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .hero-section {
        padding: 1.5rem 0 2rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-content-box {
        padding: 1.5rem;
        border-radius: 1.25rem;
    }
    
    /* Further optimize About section for small mobile - applies to all pages */
    .about-section .container,
    section.bg-light .container {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
    
    .about-section div[style*="background: #ffffff"],
    .about-section div[style*="background:#ffffff"] {
        padding: 1.25rem !important;
        border-radius: 1rem !important;
    }
    
    .about-section .about-title,
    .about-section h2.display-5 {
        font-size: 1.5rem !important;
    }
    
    .about-section .about-lead,
    .about-section .lead {
        font-size: 1rem !important;
    }
    
    .about-section .about-text,
    .about-section p.text-muted {
        font-size: 0.95rem !important;
    }
    
    /* Ensure proper spacing for all content boxes on small mobile */
    section.bg-light .container {
        padding: 1.25rem 0.25rem !important;
    }
}

/* ===================================
   Accordion Styles
   =================================== */
.accordion-item {
    border-radius: 1rem !important;
    margin-bottom: 1rem;
    border: 1px solid rgba(201, 169, 97, 0.1) !important;
    overflow: hidden;
    transition: var(--transition-base);
}

.accordion-item:hover {
    border-color: rgba(201, 169, 97, 0.2) !important;
    box-shadow: 0 0.5rem 1.5rem rgba(201, 169, 97, 0.1);
}

.accordion-button {
    border-radius: 1rem !important;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    color: var(--text-primary);
    transition: var(--transition-base);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(201, 169, 97, 0.1) 100%);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.2);
    border-color: var(--accent-color);
}

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

.accordion-body {
    padding: 1.5rem;
    background: #ffffff;
}

/* ===================================
   Enhanced Visual Elements
   =================================== */
.bg-light {
    background: transparent !important;
    position: relative;
}

.bg-light .container {
    background: #ffffff !important;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

/* Decorative elements for sections */
section.bg-light .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 97, 0.3) 50%, transparent 100%);
}

/* Enhanced list styles */
.list-unstyled li {
    position: relative;
    padding-left: 0;
    transition: var(--transition-base);
}

.list-unstyled li:hover {
    transform: translateX(5px);
}

/* Star ratings enhancement */
.bi-star-fill,
.bi-star-half {
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}
.hero-image-container img{
    box-shadow: 10px 10px 10px #e6e6e6;
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .navbar,
    #backToTop,
    footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    a {
        text-decoration: underline;
    }
    
    .card {
        page-break-inside: avoid;
    }
}

/* ===================================
   High Contrast Mode Support
   =================================== */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid currentColor;
    }
    
    .card {
        border: 2px solid currentColor;
    }
}

/* ===================================
   Reduced Motion Support
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===================================
   Dark Mode Support (Optional)
   =================================== */
@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode support
    :root {
        --primary-color: #ecf0f1;
        --text-primary: #ecf0f1;
        --light-bg: #2c3e50;
    }
    
    body {
        background: #1a1a1a;
        color: #ecf0f1;
    }
    
    .bg-light {
        background: #2c3e50 !important;
    }
    */
}