/* ==========================================================================
   CAN AĞAÇ KERESTE - MODERN PREMIUM DESIGN SYSTEM
   Version: 2.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette - Premium Wood Tones */
    --color-primary: #7B3F00;
    /* Rich Chocolate Brown */
    --color-primary-light: #9C5E23;
    /* Warm Amber Brown */
    --color-primary-dark: #4A2600;
    /* Deep Espresso */
    --color-accent: #C9A66B;
    /* Golden Oak */
    --color-accent-light: #E8D5B5;
    /* Light Maple */
    --color-accent-dark: #8B7355;
    /* Muted Bronze */

    /* Forest Greens - Earthier Tones */
    --color-forest: #3D5C2A;
    /* Natural Forest */
    --color-forest-light: #5B8A3C;
    /* Fresh Leaf */
    --color-forest-dark: #2A4019;
    /* Deep Pine */

    /* Neutrals - Warmer */
    --color-cream: #FDF8F3;
    /* Warm Cream */
    --color-sand: #F3EBE0;
    /* Natural Sand */
    --color-charcoal: #2D2926;
    /* Warm Charcoal */
    --color-slate: #5C5552;
    /* Warm Gray */

    /* Premium Gradients */
    --gradient-wood: linear-gradient(135deg, #7B3F00 0%, #C9A66B 50%, #7B3F00 100%);
    --gradient-wood-soft: linear-gradient(135deg, #9C5E23 0%, #C9A66B 100%);
    --gradient-forest: linear-gradient(135deg, #3D5C2A 0%, #5B8A3C 100%);
    --gradient-forest-dark: linear-gradient(135deg, #2A4019 0%, #3D5C2A 100%);
    --gradient-hero: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    --gradient-premium: linear-gradient(135deg, rgba(123, 63, 0, 0.92) 0%, rgba(61, 92, 42, 0.92) 100%);
    --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #F9F5F0 100%);
    --gradient-navbar: linear-gradient(180deg, rgba(42, 64, 25, 0.97) 0%, rgba(61, 92, 42, 0.97) 100%);

    /* Enhanced Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 41, 38, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 41, 38, 0.10);
    --shadow-lg: 0 8px 40px rgba(45, 41, 38, 0.14);
    --shadow-xl: 0 12px 60px rgba(45, 41, 38, 0.18);
    --shadow-glow: 0 0 40px rgba(201, 166, 107, 0.25);
    --shadow-card: 0 4px 24px rgba(123, 63, 0, 0.08);
    --shadow-card-hover: 0 12px 48px rgba(123, 63, 0, 0.15);

    /* Typography */
    --font-primary: 'Montserrat', 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--color-accent);
    color: var(--color-charcoal);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-charcoal);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

p {
    font-size: 1.05rem;
    color: var(--color-slate);
}

/* --------------------------------------------------------------------------
   Navigation - Premium Sticky Header
   -------------------------------------------------------------------------- */
.navbar-premium {
    background: var(--gradient-navbar) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(201, 166, 107, 0.15);
    box-shadow: 0 2px 20px rgba(42, 64, 25, 0.2);
}

.navbar-premium.scrolled {
    background: linear-gradient(180deg, rgba(42, 64, 25, 0.99) 0%, rgba(61, 92, 42, 0.99) 100%) !important;
    box-shadow: 0 4px 30px rgba(42, 64, 25, 0.35);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 166, 107, 0.2);
}

.navbar-brand img {
    transition: var(--transition-normal);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.navbar-premium .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem !important;
    position: relative;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.navbar-premium .nav-link:hover {
    color: var(--color-accent) !important;
}

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

.navbar-premium .nav-link i {
    margin-right: 6px;
    transition: var(--transition-normal);
}

.navbar-premium .nav-link:hover i {
    transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   Hero Section - Cinematic Style
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    padding-top: 160px;
    /* Account for fixed navbar - increased for more spacing */
    padding-bottom: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top,
            var(--color-cream) 0%,
            transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 1.5rem;
    max-width: 900px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 165, 116, 0.2);
    border: 1px solid rgba(212, 165, 116, 0.4);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--color-accent);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    font-size: 1.1rem;
}

.hero-title {
    color: white;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span {
    display: block;
    background: linear-gradient(90deg, var(--color-accent-light), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-normal);
}

.scroll-indicator a:hover {
    color: var(--color-accent);
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

/* --------------------------------------------------------------------------
   Buttons - Clean & Elegant Style
   -------------------------------------------------------------------------- */
.btn-primary-wood {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-primary);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary-wood:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-primary-wood:active {
    transform: translateY(0);
}

.btn-primary-wood i {
    font-size: 0.85rem;
}

.btn-outline-light-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 12px 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-outline-light-premium:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light-premium:active {
    transform: translateY(0);
}

.btn-outline-light-premium i {
    font-size: 0.85rem;
}

/* Secondary Button - For forms and other areas */
.btn-secondary-wood {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-sand);
    color: var(--color-primary);
    padding: 12px 28px;
    border: 1.5px solid var(--color-primary);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-secondary-wood:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* Small Button Variant */
.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

/* Large Button Variant */
.btn-lg {
    padding: 14px 36px;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Section Styling
   -------------------------------------------------------------------------- */
.section-padding {
    padding: var(--space-xl) 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 69, 19, 0.1);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-wood);
    border-radius: 2px;
}

.section-description {
    max-width: 600px;
    margin: 1.5rem auto 0;
    color: var(--color-slate);
}

/* --------------------------------------------------------------------------
   Product Cards - Modern Glassmorphism
   -------------------------------------------------------------------------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.product-card {
    position: relative;
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 1px solid rgba(201, 166, 107, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-premium);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover), var(--shadow-glow);
    border-color: rgba(201, 166, 107, 0.3);
}

.product-card:hover::before {
    opacity: 0.92;
}

.product-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition-normal);
}

.product-card:hover .product-content {
    position: relative;
    z-index: 3;
}

.product-card:hover .product-title,
.product-card:hover .product-description {
    color: white;
}

.product-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
    transition: var(--transition-normal);
}

.product-description {
    font-size: 0.95rem;
    color: var(--color-slate);
    line-height: 1.6;
    transition: var(--transition-normal);
}

.product-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 3;
    transition: var(--transition-bounce);
}

.product-icon i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.product-card:hover .product-icon {
    background: var(--color-accent);
    transform: rotate(45deg) scale(1.1);
}

.product-card:hover .product-icon i {
    color: white;
}

/* --------------------------------------------------------------------------
   Why Us Section - Feature Showcase
   -------------------------------------------------------------------------- */
.why-us-section {
    background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-cream) 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.feature-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 166, 107, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-wood-soft);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(201, 166, 107, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(123, 63, 0, 0.08), rgba(201, 166, 107, 0.12));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-normal);
    border: 1px solid rgba(201, 166, 107, 0.15);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-wood);
    transform: scale(1.1);
}

.feature-icon i,
.feature-icon svg {
    font-size: 2rem;
    color: var(--color-primary);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon i,
.feature-card:hover .feature-icon svg {
    color: white;
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--color-slate);
    line-height: 1.6;
}

/* Center Logo for Why Us Section */
.center-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.center-logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(139, 69, 19, 0.3));
    animation: float 4s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Gallery Section - Modern Masonry
   -------------------------------------------------------------------------- */
.gallery-section {
    background: var(--color-charcoal);
    overflow: hidden;
}

.gallery-section .section-badge {
    background: rgba(212, 165, 116, 0.2);
    color: var(--color-accent);
}

.gallery-section .section-title {
    color: white;
}

.gallery-section .section-title::after {
    background: var(--color-accent);
}

.gallery-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/12;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7) 0%,
            transparent 50%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 1;
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: white;
    z-index: 2;
    transition: var(--transition-bounce);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Gallery Overlay - Title & Description */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.85) 60%,
            transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 3;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h2 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Contact Section - Premium Design
   -------------------------------------------------------------------------- */
.contact-section {
    background: linear-gradient(135deg, var(--color-forest-dark) 0%, var(--color-forest) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    background-size: 100px;
}

.contact-section .section-badge {
    background: rgba(212, 165, 116, 0.2);
    color: var(--color-accent);
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-title::after {
    background: var(--color-accent);
}

.contact-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

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

.contact-info-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(201, 166, 107, 0.08) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 166, 107, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-company-name {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-company-name i {
    color: var(--color-accent);
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.contact-item:hover .contact-item-icon {
    background: var(--color-accent);
}

.contact-item-icon i,
.contact-item-icon svg {
    color: var(--color-accent);
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.contact-item:hover .contact-item-icon i,
.contact-item:hover .contact-item-icon svg {
    color: white;
}

.contact-item-content {
    flex: 1;
}

.contact-item-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item-value {
    color: white;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-item-value a {
    color: white;
    text-decoration: none;
    transition: var(--transition-normal);
}

.contact-item-value a:hover {
    color: var(--color-accent);
}

/* Bot Protection - Prevent Text Selection and Copying */
.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.contact-item-value.no-select {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* WhatsApp Link Button */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #25D366;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-normal);
    margin-left: 8px;
}

.whatsapp-link i {
    color: white !important;
    font-size: 1.1rem;
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: scale(1.1);
}


.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--color-accent);
    color: var(--color-charcoal);
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 1.5rem;
}

.contact-cta-btn:hover {
    background: white;
    transform: translateY(-2px);
    color: var(--color-charcoal);
}

.contact-cta-btn i {
    font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Footer - Modern Dark
   -------------------------------------------------------------------------- */
.footer-premium {
    background: linear-gradient(180deg, var(--color-charcoal) 0%, #1a1a1a 100%);
    padding: 3rem 0 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
}

.footer-logo span {
    color: white;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links-title {
    color: white;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.footer-links a:hover i {
    opacity: 1;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--color-accent);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-copyright a {
    color: var(--color-accent);
    text-decoration: none;
}

/* Footer Responsive - Tablet */
@media (max-width: 991px) {
    .footer-premium {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-description {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links-title {
        text-align: center;
        margin-top: 1rem;
    }

    .footer-links-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-links a i {
        display: none;
    }
}

/* Footer Responsive - Mobile */
@media (max-width: 767px) {
    .footer-premium {
        padding: 2rem 0 1rem;
    }

    .footer-premium .row {
        text-align: center;
    }

    .footer-logo {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 1rem;
    }

    .footer-logo img {
        width: 70px;
        height: 70px;
    }

    .footer-logo span {
        font-size: 1.4rem;
    }

    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .footer-social {
        margin-bottom: 1.5rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-links-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        padding-bottom: 8px;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}

/* Footer Responsive - Small Mobile */
@media (max-width: 575px) {
    .footer-premium {
        padding: 1.5rem 0 1rem;
    }

    .footer-premium .col-lg-2,
    .footer-premium .col-lg-3 {
        margin-bottom: 0.5rem;
    }

    .footer-logo img {
        width: 60px;
        height: 60px;
    }

    .footer-logo span {
        font-size: 1.2rem;
    }

    .footer-description {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .footer-links-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-links li {
        margin-bottom: 0.4rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }
}

/* --------------------------------------------------------------------------
   Floating Action Buttons
   -------------------------------------------------------------------------- */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.fab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.fab-btn:hover {
    transform: scale(1.1);
}

.fab-btn:hover::before {
    transform: translateY(0);
}

.fab-btn i {
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.fab-phone {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.fab-top {
    background: linear-gradient(135deg, var(--color-forest), var(--color-forest-dark));
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.fab-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Tooltip for FAB */
.fab-btn .fab-tooltip {
    position: absolute;
    right: 70px;
    background: var(--color-charcoal);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    pointer-events: none;
}

.fab-btn .fab-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--color-charcoal);
}

.fab-btn:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
}

/* --------------------------------------------------------------------------
   Modal Styling
   -------------------------------------------------------------------------- */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.modal-header {
    background: var(--gradient-forest);
    color: white;
    padding: 1.5rem;
    border: none;
}

.modal-title {
    font-family: var(--font-display);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
}

/* Enhanced Location Modal */
.location-modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.location-modal-header {
    background: linear-gradient(135deg, var(--color-forest-dark) 0%, var(--color-forest) 100%);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
}

.location-modal-header .modal-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-modal-header .modal-title i {
    color: var(--color-accent);
    font-size: 1.4rem;
}

.location-modal-body {
    padding: 2rem;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.location-modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.modal-footer-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-slate);
    font-size: 0.9rem;
}

.modal-footer-info i {
    color: var(--color-accent);
}

/* Modal Location Cards */
.location-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 0;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition-normal);
}

.location-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.location-card:last-child {
    margin-bottom: 0;
}

.location-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap: 1.5rem;
}

.location-info {
    flex: 1;
}

.location-title {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-title i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.location-address {
    font-size: 0.95rem;
    color: var(--color-slate);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
}

.location-address i {
    color: var(--color-accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.location-contact-quick {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-quick-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    color: var(--color-charcoal);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-normal);
}

.contact-quick-item i {
    color: var(--color-accent);
    font-size: 0.9rem;
}

.contact-quick-item:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}

.contact-quick-item:hover i {
    color: white;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-accent);
    color: var(--color-charcoal);
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.btn-directions i {
    font-size: 1rem;
}

.btn-directions:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.location-map-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.location-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
    .location-card-header {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-directions {
        width: 100%;
    }

    .location-map-wrapper {
        height: 250px;
    }

    .modal-footer-info {
        font-size: 0.8rem;
    }
}


/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 165, 116, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 165, 116, 0);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */

/* Large tablets and small desktops */
@media (max-width: 1199px) {
    .hero-section {
        padding-top: 160px;
    }

    .hero-content {
        padding: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .center-logo {
        order: -1;
        margin-bottom: 2rem;
    }

    .fab-container {
        bottom: 20px;
        right: 20px;
    }

    .fab-btn {
        width: 55px;
        height: 55px;
    }

    .navbar-brand img {
        width: 80px !important;
        height: 80px !important;
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 767px) {
    :root {
        --space-xl: 4rem;
        --space-lg: 2.5rem;
    }

    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
        /* Dynamic viewport height for mobile */
        background-attachment: scroll;
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 14px;
        gap: 6px;
        margin-bottom: 1rem;
    }

    .hero-badge i {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-title span {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-item {
        flex: 1 1 30%;
        min-width: 80px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .hero-buttons .btn-primary-wood,
    .hero-buttons .btn-outline-light-premium {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        margin: 0 0.5rem;
    }

    .navbar-premium {
        padding: 0.5rem 0;
    }

    .navbar-brand img {
        width: 60px !important;
        height: 60px !important;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .fab-btn .fab-tooltip {
        display: none;
    }

    .contact-info-card {
        margin-top: 2rem;
    }

    .footer-bottom {
        text-align: center;
        flex-direction: column;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator span {
        font-size: 0.65rem;
    }

    .scroll-indicator i {
        font-size: 1.2rem;
    }
}

/* Mobile portrait */
@media (max-width: 575px) {
    .navbar-collapse {
        background: rgba(45, 80, 22, 0.98);
        margin: 0 -12px;
        padding: 1rem;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 70px;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 12px;
        gap: 5px;
    }

    .hero-badge i {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-title span {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .fab-container {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .fab-btn {
        width: 50px;
        height: 50px;
    }

    .fab-btn i {
        font-size: 1.3rem;
    }

    .btn-primary-wood,
    .btn-outline-light-premium {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Very small devices */
@media (max-width: 375px) {
    .hero-section {
        padding-top: 110px;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 5px 10px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-title span {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .navbar-brand img {
        width: 50px !important;
        height: 50px !important;
    }
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-gradient {
    background: var(--gradient-wood);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-wood {
    background: var(--gradient-wood);
}

.bg-forest {
    background: var(--gradient-forest);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.text-accent {
    color: var(--color-accent);
}

.text-primary-wood {
    color: var(--color-primary);
}

/* Print Styles */
@media print {

    .fab-container,
    .navbar-premium,
    .scroll-indicator {
        display: none !important;
    }

    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-section::before,
    .hero-section::after {
        display: none;
    }
}

/* Hero Slider Update */
/* Hero Slider Update */
.hero-with-slider {
    background:
        radial-gradient(circle at top right, rgba(61, 92, 42, 0.85), rgba(42, 64, 25, 0.9)),
        linear-gradient(to bottom, rgba(45, 41, 38, 0.9), rgba(26, 26, 26, 0.95)),
        url('../img/can-agac-kereste.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding-top: 180px;
    padding-bottom: 100px;
}

.hero-with-slider .hero-content {
    text-align: left;
    align-items: flex-start;
    padding: 0;
    max-width: 100%;
}

.hero-with-slider .hero-buttons,
.hero-with-slider .hero-stats {
    justify-content: flex-start;
}

.hero-carousel-square {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1/1;
    /* Removed overflow: hidden to allow indicators to show outside */
    position: relative;
    z-index: 30;
    /* Create stacking context above hero overlays */
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-carousel-square .carousel-inner {
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-carousel-square:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-carousel-square .carousel-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-carousel-square .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle overlay using brand colors (Primary Brown to Forest Green) */
    background: linear-gradient(135deg, rgba(123, 63, 0, 0.2) 0%, rgba(61, 92, 42, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-carousel-square img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: brightness(1.15);
}

@media (max-width: 991px) {
    .hero-with-slider {
        padding-top: 120px;
        text-align: center;
    }

    .hero-with-slider .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero-with-slider .hero-buttons,
    .hero-with-slider .hero-stats {
        justify-content: center;
    }

    .hero-carousel-square {
        transform: none;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-carousel-square:hover {
        transform: scale(1.02);
    }
}

/* Carousel Indicators Styling */
.hero-carousel-square .carousel-indicators {
    bottom: -40px;
    margin-bottom: 0;
}

.hero-carousel-square .carousel-indicators [data-bs-target] {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    margin: 0 4px;
    opacity: 0.6;
    border: none;
    transition: all 0.3s ease;
}

.hero-carousel-square .carousel-indicators .active {
    background-color: var(--color-accent);
    opacity: 1;
    transform: scaleY(1.2);
}

/* Centered Logo Styling */
@media (min-width: 992px) {
    .brand-center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0 !important;
        z-index: 1000;
    }

    .brand-center img {
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .brand-center:hover img {
        transform: scale(1.1);
    }

    /* Adjust navbar padding to accommodate larger logo */
    .navbar-premium {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        min-height: 110px;
        /* Ensure bar is tall enough for the 120px logo */
    }
}

/* Systematic Section Backgrounds */
.section-bg-light {
    background-color: var(--color-cream);
}

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

/* Override existing specific backgrounds */
#urunler {
    background-color: var(--color-cream);
}

.why-us-section {
    background: var(--color-sand);
    /* Simplified from gradient */
}

.gallery-section {
    background: var(--color-cream);
    /* Changed from charcoal to system light */
}

/* Adjust gallery text colors for light background */
.gallery-section .section-title {
    color: var(--color-charcoal);
}

.gallery-section .section-description {
    color: var(--color-slate);
}

.gallery-section .section-badge {
    background: rgba(139, 69, 19, 0.1);
    color: var(--color-primary);
}

/* Contact Section & Consistent Icon Styling */
.contact-section {
    background: var(--color-sand);
}

/* Update "Why Us" icons for better contrast on sand background */
.feature-icon {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(123, 63, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Style Contact Section icons to match */
.contact-item-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    /* Circle shape - same as radius-lg approx or fully round */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(123, 63, 0, 0.05);
    color: var(--color-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.contact-item:hover .contact-item-icon {
    background: var(--color-primary);
    color: #ffffff;
    transform: scale(1.1);
}

/* Ensure contact info card background is distinct if needed, or transparent */
.contact-info-card {
    background: var(--color-cream);
    /* Card background on sand */
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

/* Updated Contact Card Text Colors to Dark for Light Background */
.contact-item-label {
    color: var(--color-slate) !important;
}

.contact-item-value {
    color: var(--color-charcoal) !important;
}

.contact-item-value a {
    color: var(--color-charcoal) !important;
}

.contact-item-value a:hover {
    color: var(--color-primary) !important;
}

.contact-company-name {
    color: var(--color-primary-dark) !important;
    font-weight: 700;
}

.contact-company-name i {
    color: var(--color-primary) !important;
}

.contact-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* Ensure map container shadow is visible on light background */
.map-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
}

/* Contact Section Header Updates for Light Background */
.contact-section .section-title {
    color: var(--color-charcoal) !important;
}

.contact-section .section-description {
    color: var(--color-slate) !important;
}

.contact-section .section-badge {
    background: rgba(139, 69, 19, 0.1) !important;
    color: var(--color-primary) !important;
}

/* Make carousel controls visible and clickable */
.hero-carousel-square .carousel-control-prev,
.hero-carousel-square .carousel-control-next {
    opacity: 0;
    width: 15%;
    transition: opacity 0.3s ease;
    z-index: 20;
    /* Ensure they are above images */
}

/* Show arrows on hover */
.hero-carousel-square:hover .carousel-control-prev,
.hero-carousel-square:hover .carousel-control-next {
    opacity: 0.8;
}

.hero-carousel-square .carousel-control-prev:hover,
.hero-carousel-square .carousel-control-next:hover {
    opacity: 1;
}

/* Ensure arrows are inside the curved border */
.hero-carousel-square .carousel-control-prev {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.hero-carousel-square .carousel-control-next {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

/* Force Carousel Controls Visibility */
.hero-carousel-square .carousel-control-prev,
.hero-carousel-square .carousel-control-next {
    opacity: 1 !important;
    /* Force visible */
    background-color: rgba(0, 0, 0, 0.2);
    /* Slight background to see click area */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 10px;
}

.hero-carousel-square .carousel-control-prev:hover,
.hero-carousel-square .carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
    background-image: none;
}