/* css/style.css - Gözdemir İnşaat Custom Stylesheet */

@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: #c5a059; /* Sophisticated Bronze / Gold Accent */
    --primary-hover: #b08d4b;
    --primary-light: rgba(197, 160, 89, 0.08);
    --secondary: #121518; /* Rich Charcoal */
    --dark: #080a0c; /* Deep Obsidian Pitch Black */
    --light: #fbfbf9; /* Clean Warm Off-white */
    --gray-bg: #f3f4f1;
    --text-dark: #191d21;
    --text-muted: #5e6872;
    --border-color: rgba(0,0,0,0.05);
    --border-color-dark: rgba(255,255,255,0.06);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
}

/* Global Bootstrap Primary/Info Overrides to prevent blue color clutter */
.text-primary, .text-info {
    color: var(--primary) !important;
}
.bg-primary, .bg-info {
    background-color: var(--primary) !important;
    color: var(--dark) !important;
}
.bg-primary-light, .bg-info-light {
    background-color: var(--primary-light) !important;
}
.btn-primary, .btn-info {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--dark) !important;
}
.btn-primary:hover, .btn-info:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}
.alert-primary {
    background-color: var(--primary-light) !important;
    border-color: var(--primary) !important;
    color: var(--secondary) !important;
}

/* Premium Visual Utilities */
.bg-dark-translucent {
    background-color: rgba(8, 10, 12, 0.75) !important;
    backdrop-filter: blur(8px);
}
.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}
.hover-zoom {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.hover-zoom:hover {
    transform: scale(1.06) !important;
}
.transition-all {
    transition: all 0.3s ease-in-out;
}


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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

/* Navbar Customization */
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    color: #fff !important;
}
.navbar-brand span {
    color: var(--primary);
}
.custom-navbar {
    background-color: rgba(15, 17, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color-dark);
    padding: 1rem 0;
    transition: var(--transition);
}
.custom-navbar.scrolled {
    padding: 0.6rem 0;
    background-color: var(--dark);
}
.custom-navbar .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: #cbd5e1 !important;
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem !important;
    transition: var(--transition);
    position: relative;
}
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: var(--primary) !important;
}
.custom-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}
.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
    width: 60%;
}

/* Hero Carousel */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background-color: var(--dark);
}
.hero-slider-section .carousel-item {
    height: calc(100vh - 80px);
    min-height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-slider-section .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8,10,12,0.65) 0%, rgba(8,10,12,0.92) 100%);
}
.carousel-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    max-width: 800px;
}
.carousel-subtitle {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding-left: 10px;
    border-left: 3px solid var(--primary);
}
.carousel-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    color: #ffffff !important;
}
.carousel-desc {
    font-size: 1.15rem;
    color: #f1f5f9 !important;
    margin-bottom: 2.5rem;
    max-width: 650px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

/* Styled Buttons */
.btn-gold {
    background-color: var(--primary);
    color: var(--secondary);
    border: 2px solid var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--ThemeButtonRadius);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-gold:hover {
    background-color: var(--secondary) !important;
    color: var(--primary) !important;
    border-color: var(--secondary) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.25) !important;
}
.btn-outline-gold {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--ThemeButtonRadius);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-outline-gold:hover {
    background-color: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.15);
}

/* Feature Cards & Grid */
.section-title-wrapper {
    margin-bottom: 3.5rem;
}
.section-tagline {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: block;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}
.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.feature-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: left;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
    transition: var(--transition);
}
.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary);
    color: var(--secondary);
    transform: rotateY(180deg);
}

/* Service Card Layout */
.service-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.service-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.service-card:hover .service-card-img img {
    transform: scale(1.1);
}
.service-card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(15,17,18,0.7) 100%);
}
.service-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 5px;
    z-index: 10;
    text-transform: uppercase;
}
.service-card-body {
    padding: 1.75rem;
}
.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.service-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.readmore-link {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.readmore-link i {
    transition: var(--transition);
}
.readmore-link:hover {
    color: var(--primary-hover);
}
.readmore-link:hover i {
    transform: translateX(5px);
}

.stats-section {
    background-image: linear-gradient(180deg, rgba(8, 10, 12, 0.88) 0%, rgba(8, 10, 12, 0.88) 100%), url('../uploads/slider-kaba.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    position: relative;
    padding: 6.5rem 0;
    border-top: 1px solid rgba(197, 160, 89, 0.12);
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}
.stat-box {
    text-align: center;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}
.stat-text {
    font-size: 1rem;
    color: #cbd5e1;
}

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    border-radius: 16px;
    padding: 4rem;
    color: white;
    border: 1px solid var(--border-color-dark);
    margin-top: -80px;
    position: relative;
    z-index: 20;
    box-shadow: var(--shadow-lg);
}

/* Project Card */
.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}
.project-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15,17,18,0.1) 30%, rgba(15,17,18,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition);
}
.project-card:hover .project-card-img {
    transform: scale(1.1);
}
.project-card:hover .project-card-overlay {
    background: linear-gradient(180deg, rgba(212,175,55,0.1) 20%, rgba(15,17,18,0.95) 100%);
}
.project-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.project-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.project-client {
    color: #cbd5e1;
    font-size: 0.85rem;
}

/* Blog List Card */
.blog-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.blog-card-img {
    height: 200px;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}
.blog-card-body {
    padding: 1.5rem;
}
.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: block;
}
.blog-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.blog-title a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}
.blog-title a:hover {
    color: var(--primary);
}
.blog-summary {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Page Header (Subpages) */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    border-bottom: 1px solid var(--border-color-dark);
}
.page-header-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}
.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}
.breadcrumb-item.active {
    color: #94a3b8;
}

/* Contact widgets (Sticky and floating) */
.floating-widgets {
    position: fixed;
    right: 25px;
    bottom: 95px; /* Sits comfortably above sticky bottom bar */
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.btn-floating {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    color: white;
    text-decoration: none;
    transition: var(--transition);
}
.btn-floating:hover {
    transform: scale(1.1) rotate(5deg);
    color: white;
}
.btn-floating.whatsapp {
    background-color: #25d366;
}
.btn-floating.whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.btn-floating.phone-float {
    background-color: var(--primary);
}
.btn-floating.phone-float:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Sticky Bottom Action Bar */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    border-top: 2px solid var(--primary);
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    z-index: 998;
    padding: 10px 0;
}
.sticky-bar-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.sticky-bar-btn {
    flex: 1;
    text-align: center;
    color: #cbd5e1;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: var(--transition);
}
.sticky-bar-btn i {
    font-size: 1.25rem;
    color: var(--primary);
    transition: var(--transition);
}
.sticky-bar-btn:hover {
    color: white;
}
.sticky-bar-btn:hover i {
    transform: translateY(-3px);
}
.sticky-bar-divider {
    width: 1px;
    height: 30px;
    background-color: var(--border-color-dark);
}

/* Footer Section */
.main-footer {
    background-color: var(--dark);
    color: #94a3b8;
    padding: 5rem 0 7rem 0; /* Add bottom padding so content doesn't get covered by sticky bar */
    border-top: 1px solid var(--border-color-dark);
}
.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.footer-logo span {
    color: var(--primary);
}
.footer-title {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.footer-contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    align-items: flex-start;
}
.footer-contact-info i {
    color: var(--primary);
    font-size: 1.1rem;
}

.footer-bottom {
    background-color: #090a0b;
    padding: 1.5rem 0;
    color: #64748b;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.03);
}

/* Custom 404 Styles */
.error-page-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 2rem;
}
.error-card {
    text-align: center;
    max-width: 600px;
}
.error-code {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(212,175,55,0.2);
    animation: pulse 2s infinite;
}
.error-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.error-text {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* Multi-step Project Request / Quote Page */
.quote-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 3rem;
}
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}
.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--gray-bg);
    z-index: 1;
}
.step-indicator-progress {
    position: absolute;
    top: 20px;
    left: 0;
    height: 3px;
    background-color: var(--primary);
    z-index: 2;
    transition: width 0.4s ease;
    width: 0%;
}
.step-node {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--gray-bg);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    z-index: 3;
    transition: var(--transition);
    border: 3px solid #fff;
}
.step-node.active {
    background-color: var(--primary);
    color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25);
}
.step-node.completed {
    background-color: var(--secondary);
    color: white;
}
.quote-step {
    display: none;
}
.quote-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-slider-section .carousel-item {
        height: 60vh;
        min-height: 450px;
    }
    .carousel-title {
        font-size: 2.25rem;
    }
    .carousel-desc {
        font-size: 1rem;
    }
    .cta-banner {
        padding: 2.5rem;
        margin-top: -40px;
        text-align: center;
    }
    .cta-banner .btn-gold {
        margin-top: 1.5rem;
    }
}

/* Project filtering tabs */
.proj-filter-btn {
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: var(--transition) !important;
}
.proj-filter-btn.active {
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3) !important;
}

/* Service Detail enhancements */
.service-rich-text h2 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}
.service-rich-text p {
    margin-bottom: 1.25rem;
}
.hover-zoom:hover {
    transform: scale(1.05);
}

/* Custom UI/UX Enhancements Block */

/* Collapsible SEO Content styles */
.seo-collapse-content {
    max-height: 220px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    position: relative;
}
.seo-collapse-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(to bottom, rgba(251,251,249,0), rgba(251,251,249,1));
    transition: opacity 0.3s;
    pointer-events: none;
}
.seo-collapse-content.expanded {
    max-height: 3000px;
}
.seo-collapse-content.expanded::after {
    opacity: 0;
}

/* Premium CTA Banner enhancements */
.cta-banner {
    background: linear-gradient(135deg, #181d22 0%, #080a0c 100%) !important;
    border-radius: 16px !important;
    padding: 3rem !important;
    color: #ffffff !important;
    border-left: 6px solid var(--primary) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: relative;
    z-index: 20;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(197, 160, 89, 0.15) !important;
}

/* Mobile Navbar Glassmorphism styling */
@media (max-width: 991.98px) {
    .custom-navbar .navbar-collapse {
        background-color: rgba(8, 10, 12, 0.96) !important;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(197, 160, 89, 0.2) !important;
        border-radius: 12px;
        padding: 1.5rem;
        margin-top: 10px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    }
    .custom-navbar .nav-link {
        font-size: 1.05rem;
        padding: 0.8rem 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    .custom-navbar .nav-link:hover, .custom-navbar .nav-link.active {
        background-color: rgba(197, 160, 89, 0.08) !important;
        color: var(--primary) !important;
        padding-left: 1.5rem !important;
    }
    .navbar-toggler {
        border-color: rgba(197, 160, 89, 0.4) !important;
        padding: 6px 10px;
    }
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.25) !important;
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='%23c5a059' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>") !important;
    }
}

