/* General Style Resets and Base Settings */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #1B5E20; /* Deep green background */
    color: #E0E0E0; /* Light gray text */
    line-height: 1.7;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

/* Agriculture Theme Color Palette */
.primary-black { color: #000000; } /* Pure Black */
.primary-black-bg { background-color: #000000; }
.secondary-gold { color: #F4A261; } /* Hay yellow */
.secondary-gold-bg { background-color: #F4A261; }
.tertiary-steel-blue { color: #8D6E63; } /* Earth brown */
.tertiary-steel-blue-bg { background-color: #8D6E63; }
.light-gray-text { color: #B0B0B0; } /* Light gray text */
.dark-gray-bg { background-color: #2D5016; } /* Dark green background */
.medium-gray-bg { background-color: #4A7043; } /* Medium green background */
.white-text { color: #FFFFFF; } /* White text */

/* Heading Font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF; /* White headings */
}

/* General Button Styles */
.btn-construction {
    @apply inline-flex items-center justify-center px-10 py-4 font-semibold rounded-md shadow-lg transition duration-300 ease-in-out transform hover:scale-105;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid transparent;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    font-size: 1.1rem;
}
.btn-primary-construction {
    @apply bg-secondary-gold text-primary-black hover:bg-tertiary-steel-blue hover:text-white-text;
}
.btn-outline-construction {
    @apply border-2 border-secondary-gold text-secondary-gold bg-transparent hover:bg-secondary-gold hover:text-primary-black;
}
.btn-dark-outline-construction {
    @apply border-2 border-white-text text-white-text bg-transparent hover:bg-white-text hover:text-primary-black;
}
.btn-contact-construction {
    @apply bg-tertiary-steel-blue text-white-text hover:bg-secondary-gold hover:text-primary-black;
}

/* Header Styles */
#main-header {
    background-color: #1A1A1A; /* Dark gray background */
    box-shadow: 0 4px 35px rgba(0,0,0,0.6);
    padding: 1rem 0;
    position: fixed; /* Fixed header for better UX */
    top: 0;
    width: 100%;
    z-index: 1000;
}
#main-header.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(45, 80, 22, 0.98); /* More opaque transparent */
    backdrop-filter: blur(10px);
}
.header-link-effect {
    color: #E0E0E0; /* Light gray links */
    font-weight: 500;
    padding: 0.75rem 0;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
}
.intro-content {
    font-size: 1.2rem;
    color: #B0B0B0;
    line-height: 1.8;
    padding: 0 20px; /* Adds 20px padding on left and right */
}
.header-link-effect::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #F4A261; /* Secondary hay yellow */
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.3s ease-out;
}
.header-link-effect:hover::before {
    width: 100%;
    transform: translateX(-50%) scaleX(1);
}
.header-link-effect:hover {
    color: #F4A261; /* Secondary hay yellow on hover */
}
.vertical-divider {
    background-color: #ffff;
    width: 2px;
    height: 30px;
}
#header-logo {
    filter: brightness(0) invert(1); /* Makes the logo white */
}

/* Mobile Menu Styles */
#mobile-menu {
    background-color: #2D5016; /* Dark green background */
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    max-height: calc(100vh - 60px); /* Prevent overflow on mobile */
    overflow-y: auto; /* Allow scrolling if content is too long */
}
.mobile-menu-link {
    @apply text-white-text hover:text-secondary-gold transition duration-300 font-medium py-3 px-6 rounded-md;
    border-left: 4px solid transparent;
    font-size: 1rem; /* Smaller font for mobile */
}
.mobile-menu-link:hover {
    border-left-color: #F4A261;
}
.mobile-submenu-container {
    border-left: 2px solid rgba(255,255,255,0.2);
    padding-left: 1.5rem;
    display: none; /* Hidden by default */
}
.mobile-submenu-container.open {
    display: block; /* Show when toggled */
}
.mobile-menu-chevron {
    transition: transform 0.3s ease;
}
.mobile-menu-chevron.rotate {
    transform: rotate(180deg);
}

/* Ensure mobile menu button and language switcher colors stay consistent */
.header-scrolled #mobile-menu-button .fa-bars {
    color: #FFFFFF !important; /* Keep mobile menu icon white */
}
.header-scrolled .group .text-white,
.header-scrolled .group .fa-globe,
.header-scrolled .group .fa-chevron-down {
    color: #FFFFFF !important; /* Keep language switcher white */
}
.header-scrolled #mobile-menu .mobile-menu-link {
    color: #FFFFFF !important; /* Keep mobile menu links white */
}

/* Slider Section (Hero Banner) */
.slider-container {
    height: 90vh; /* 90% of viewport height */
    min-height: 400px; /* Adjusted for mobile */
    margin-bottom: 7rem;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px; /* Header yüksekliği kadar boşluk */
}
.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}
.slider-item.active {
    opacity: 1;
}
.slider-overlay {
    background: linear-gradient(to right, rgba(27, 94, 32, 0.95), rgba(27, 94, 32, 0.75));
}
.slider-content {
    max-width: 1300px;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}
.slider-content h1 {
    font-size: 7.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 0 15px rgba(244, 162, 97,0.6), 0 0 25px rgba(244, 162, 97,0.4);
    animation: text-reveal 1.5s ease-out forwards;
}
@keyframes text-reveal {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
.slider-content p {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 4.5rem;
    color: #E0E0E0;
    background: linear-gradient(to right, #E0E0E0, #F4A261);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-fade-in 1.8s ease-out forwards;
    animation-delay: 0.5s;
}
@keyframes text-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
.slider-nav-arrow {
    background: rgba(0, 0, 0, 0.7);
    padding: 24px;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
    color: white;
    font-size: 2.2rem;
}
.slider-nav-arrow:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-50%) scale(1.1);
}

/* CTA Buttons */
.btn-neon {
    background-color: #F4A261;
    color: #121212;
    border: 2px solid #F4A261;
    box-shadow: 0 0 10px rgba(244,162,97,0.7), 0 0 20px rgba(244,162,97,0.5), 0 0 30px rgba(244,162,97,0.3);
    transition: all 0.4s ease-in-out;
}
.btn-neon:hover {
    background-color: #FDD835;
    box-shadow: 0 0 15px rgba(244,162,97,0.9), 0 0 30px rgba(244,162,97,0.7), 0 0 45px rgba(244,162,97,0.5);
    transform: scale(1.05);
}
.btn-glassmorphism {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: all 0.4s ease-in-out;
}
.btn-glassmorphism:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ----- RTL (Sağdan Sola) Özel Stiller ----- */
    /* Bu kurallar sadece <html> etiketinde dir="rtl" varsa çalışır. */

    html[dir="rtl"] body {
        direction: rtl; /* Metin ve blok yönünü sağdan sola ayarla */
        text-align: right; /* Varsayılan metin hizalamasını sağa yasla */
    }

    /* Menünün sağa hizalanması için */
    html[dir="rtl"] .header-nav {
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    /* Sosyal medya ikonları için boşlukları tersine çevirir ve artırır */
    html[dir="rtl"] .header-social-icons > * {
        margin-left: 0;
        margin-right: 0.75rem; /* İkonlar arasında boşluk bırakır */
    }

    /* Dikey çizginin kenar boşluklarını tersine çevirir ve artırır */
    html[dir="rtl"] .vertical-divider {
        margin-left: 1rem; /* Sağdaki içeriğe boşluk ekler */
        margin-right: 1rem; /* Soldaki içeriğe boşluk ekler */
    }

    /* Genel boşlukları (margin ve padding) tersine çevir */
    html[dir="rtl"] .space-x-6 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 1;
        margin-right: calc(1.5rem * var(--tw-space-x-reverse));
        margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
    }
    html[dir="rtl"] .ml-1 { margin-left: 0; margin-right: 0.25rem; }
    html[dir="rtl"] .mr-4 { margin-right: 0; margin-left: 1rem; }
    html[dir="rtl"] .mr-2 { margin-right: 0; margin-left: 0.5rem; }
    html[dir="rtl"] .pr-2 { padding-right: 0; padding-left: 0.5rem; }

    /* Menüdeki ok işaretinin yönünü değiştir */
    html[dir="rtl"] .fa-chevron-right {
        transform: scaleX(-1); /* Ikonu yatayda ters çevir */
    }

    html[dir="rtl"] .fa-chevron-down {
        transform: scaleX(-1); /* Menüdeki okları da yatayda ters çevirir */
    }

    /* Dropdown menülerin açılma yönünü tersine çevir */
    html[dir="rtl"] .first-level-dropdown {
        left: auto;
        right: 0;
    }

    /* İç içe menülerin (nested) açılma yönünü tersine çevir */
    html[dir="rtl"] .nested-level-dropdown {
        left: auto;
        right: 100%; /* Üst menünün soluna doğru açılmasını sağlar */
        margin-left: 0;
        margin-right: 0.5rem; /* ml-2'yi mr-2 olarak değiştirir */
    }

    /* Slider oklarının konumunu tersine çevir */
    html[dir="rtl"] .slider-nav-arrow.left {
        left: auto;
        right: 20px;
    }
    html[dir="rtl"] .slider-nav-arrow.right {
        right: auto;
        left: 20px;
    }

    /* Carousel oklarının konumunu tersine çevir */
    html[dir="rtl"] .carousel-arrow.left {
        left: auto;
        right: 10px;
    }
    html[dir="rtl"] .carousel-arrow.right {
        right: auto;
        left: 10px;
    }

    /* Service card boşluklarını tersine çevir */
    html[dir="rtl"] .services-carousel {
        direction: rtl;
    }
    html[dir="rtl"] .service-card {
        margin-right: 10px;
        margin-left: 10px;
    }

/* Yeni Ek: Slider Altı Tanıtım Bölümü (Şık Görünüm) */
.intro-section {
    background: linear-gradient(to bottom, #2D5016, #4A7043); /* Yumuşak gradient geçiş */
    padding: 4rem 0; /* Masaüstünde geniş padding */
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Hafif gölge */
    margin-top: -5rem; /* Slider'a yakın konumlandır */
    position: relative;
    z-index: 5; /* About section üstünde */
}
.intro-section h2 {
    font-size: 4rem; /* Masaüstünde büyük font */
    font-weight: 700;
    color: #F4A261; /* Hay yellow */
    text-shadow: 0 0 10px rgba(244,162,97,0.5); /* Hafif gölge efekti */
    background: linear-gradient(to right, #F4A261, #8D6E63); /* Gradient metin */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-reveal 1.5s ease-out forwards; /* Animasyonlu giriş */
}

/* About Agriculture Section */
.construction-about-section {
    background-color: #2D5016;
    border-radius: 0.75rem;
    box-shadow: 0 30px 100px rgba(0,0,0,0.4);
    padding: 9rem;
    margin-top: -220px;
    position: relative;
    z-index: 10;
    border-top: 8px solid #F4A261;
}
.construction-about-section h2 {
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 5rem;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
    padding-bottom: 1.8rem;
}
.construction-about-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 150px;
    height: 10px;
    background-color: #8D6E63;
    border-radius: 5px;
}
.construction-about-content {
    font-size: 1.2rem;
    color: #B0B0B0;
    line-height: 1.8;
}
.construction-about-image-container {
    border-radius: 0.75rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 5px solid #F4A261;
}

/* Agriculture Services Section */
.construction-services-section {
    background: linear-gradient(to bottom, #1B5E20, #2D5016);
    padding: 11rem 0;
}
.construction-services-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 9rem;
    position: relative;
    display: inline-block;
    padding-bottom: 2.5rem;
    background: linear-gradient(to right, #F4A261, #8D6E63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.construction-services-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 180px;
    height: 12px;
    background-color: #F4A261;
    border-radius: 6px;
}
.services-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1300px; /* Maksimum genişlik, taşmayı önler */
    margin: 0 auto;
}
.construction-services-carousel {
    display: flex !important; /* Görünürlüğü garantile */
    gap: 3.5rem;
    transition: transform 0.5s ease;
    flex-wrap: nowrap; /* Kartların aşağı kaymasını önler */
    width: max-content; /* Tüm kartları tek sıraya sığdırır */
}
.construction-service-card {
    display: flex !important; /* Görünürlüğü garantile */
    background-color: rgba(74, 112, 67, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    box-shadow: 0 18px 50px rgba(0,0,0,0.3);
    border-top: 12px solid transparent;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
    flex-direction: column;
    flex: 0 0 auto; /* Kartların sıkışmasını önler */
    width: calc((1280px - 7rem) / 3); /* 3 kart için genişlik, gap hesaba katılarak */
    max-width: 100%; /* Maksimum kart genişliği */
}
.construction-service-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    border-color: #8D6E63;
}
.construction-service-card img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem 1rem 0 0;
}
.construction-service-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.construction-service-card-content h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.8rem;
}
.construction-service-card-content p {
    font-size: 1.15rem;
    color: #B0B0B0;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 2rem;
}
.construction-service-card-link {
    @apply text-tertiary-steel-blue font-semibold hover:text-secondary-gold;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}
.service-icon {
    font-size: 4rem;
    color: #F4A261;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(244,162,97,0.5);
    transition: transform 0.3s ease;
}
.construction-service-card:hover .service-icon {
    transform: scale(1.1);
}
.carousel-arrow {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 20px;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 1.8rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.carousel-arrow.left {
    left: 10px;
}
.carousel-arrow.right {
    right: 10px;
}
.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

/* Project Gallery */
.project-gallery-section {
    background-color: #1B5E20;
    padding: 10rem 0;
}
.project-gallery-section h2 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 2.5rem;
    background: linear-gradient(to right, #F4A261, #8D6E63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.project-gallery-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 180px;
    height: 12px;
    background-color: #F4A261;
    border-radius: 6px;
}
.masonry-grid {
    column-count: 3;
    column-gap: 2rem;
}
.masonry-item {
    margin-bottom: 2rem;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}
.masonry-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.75rem;
}
.holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(141,110,99,0.6), rgba(244,162,97,0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 1rem;
}
.masonry-item:hover .holographic-overlay {
    opacity: 1;
}
.holographic-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(255,255,255,0.7);
}
.holographic-overlay p {
    font-size: 1rem;
    color: #E0E0E0;
}
.featured-project-card {
    grid-column: span 2;
    background-color: #2D5016;
    border: 2px solid #F4A261;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 1rem;
    margin-bottom: 2rem;
}
.featured-project-card h3 {
    font-size: 3rem;
    color: #F4A261;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(244,162,97,0.7);
}
.featured-project-card p {
    font-size: 1.2rem;
    color: #B0B0B0;
    max-width: 800px;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(to right, #2D5016, #4A7043, #6B8E23);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://placehold.co/1920x500/000000/000000?text=');
    opacity: 0.2;
    z-index: 0;
}
.cta-section-content {
    position: relative;
    z-index: 1;
}
.cta-section h2 {
    font-size: 3rem;
    font-weight: 500;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.9);
    color: white;
    line-height: 1.1;
}
.btn-cta-construction {
    background-color: #F4A261;
    color: #121212;
    border: none;
    padding: 2rem 6rem;
    font-size: 1.6rem;
    border-radius: 9999px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.08em;
}
.btn-cta-construction:hover {
    background-color: #FFFFFF;
    color: #121212;
    transform: translateY(-12px) scale(1.06);
    box-shadow: 0 35px 70px rgba(0,0,0,0.7);
}

/* Contact Form */
.contact-section {
    background-color: #1B5E20;
    padding: 7rem 0;
}
.contact-section h2 {
    font-size: 5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
}
.contact-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background-color: #F4A261;
    border-radius: 4px;
}
.contact-form-container {
    background-color: rgba(74, 112, 67, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}
.contact-info-card {
    background-color: rgba(74, 112, 67, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    padding: 2.8rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-left: 8px solid #8D6E63;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.contact-info-card i {
    color: #F4A261;
    font-size: 2.5rem;
    margin-right: 1.2rem;
}
.contact-info-card span {
    color: #E0E0E0;
    font-size: 1.2rem;
}
.contact-form-input, .contact-form-textarea {
    border: 2px solid #555555;
    background-color: rgba(74, 112, 67, 0.4);
    color: #E0E0E0;
    @apply rounded-lg py-3.5 px-5 w-full;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.4);
}
.contact-form-input::placeholder, .contact-form-textarea::placeholder {
    color: #909090;
}
.contact-form-input:focus, .contact-form-textarea:focus {
    border-color: #F4A261;
    box-shadow: 0 0 0 5px rgba(244, 162, 97, 0.4);
    outline: none;
    background-color: rgba(74, 112, 67, 0.7);
}
.btn-submit-form {
    @apply bg-secondary-gold text-primary-black px-12 py-4 rounded-md font-bold hover:bg-tertiary-steel-blue hover:text-white-text transition duration-300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #1B5E20;
    color: #B0B0B0;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.footer-logo-container .footer-logo {
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: filter 0.3s ease;
    width: 50%;
    height: auto;
}

.footer-menu-grid {
    gap: 1.2rem 3rem;
}

.footer-menu-grid li {
    padding-bottom: 10px;
}
    

.footer-link-effect {
    font-weight: 400;
    color: #909090;
    position: relative;
    overflow: hidden;
}
.footer-link-effect::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #F4A261;
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 0.3s ease-out;
}
.footer-link-effect:hover::before {
    transform: scaleX(1);
    transform-origin: bottom right;
}
footer .text-copyright {
    color: #707070;
}
.footer-social-widget {
    background-color: #2D5016;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 1px solid #333333;
}
.footer-social-widget h4 {
    color: #F4A261;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.footer-social-widget img {
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
}

/* Styles for CKEditor Content */
.construction-about-content p {
    margin-bottom: 1.2em;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #B0B0B0;
}
.construction-about-content h2 {
    font-size: 2.8rem;
    border-bottom: 4px solid #F4A261;
    padding-bottom: 0.8em;
    margin-top: 2.5em;
    margin-bottom: 1.2em;
    color: #FFFFFF;
}
.construction-about-content h3 {
    font-size: 2.2rem;
    color: #8D6E63;
    margin-top: 2em;
    margin-bottom: 1em;
}
.construction-about-content h4 {
    font-size: 1.9rem;
    color: #FFFFFF;
    margin-top: 1.8em;
    margin-bottom: 0.8em;
}
.construction-about-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2.5rem auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    border: 3px solid #444444;
}
.construction-about-content ul,
.construction-about-content ol {
    margin-left: 2.5rem;
    margin-bottom: 1.5em;
    list-style-position: outside;
    color: #B0B0B0;
}
.construction-about-content ul li {
    list-style-type: disc;
    margin-bottom: 0.5em;
}
.construction-about-content ol li {
    list-style-type: decimal;
    margin-bottom: 0.5em;
}
.construction-about-content a {
    color: #8D6E63;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.construction-about-content a:hover {
    color: #F4A261;
    text-decoration: none;
}
.construction-about-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-radius: 0.75rem;
    overflow: hidden;
}
.construction-about-content th,
.construction-about-content td {
    padding: 1.2rem 1.8rem;
    border: 1px solid #444444;
    text-align: left;
    font-size: 1rem;
    color: #E0E0E0;
}
.construction-about-content th {
    background-color: #4A7043;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}
.construction-about-content tr:nth-child(even) {
    background-color: #3A5F32;
}
.construction-about-content tr:hover {
    background-color: #5A7B52;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: var(--animation-delay, 0s);
}
.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}
.animate-scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: var(--animation-delay, 0s);
}
.animate-scale-in.in-view {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .slider-container { height: 80vh; }
    .slider-content h1 { font-size: 5rem; }
    .slider-content p { font-size: 2rem; }
    .intro-section { padding: 3rem 0; } /* Mobil için küçült */
    .intro-section h2 { font-size: 3rem; }
    .construction-about-section { padding: 6rem; margin-top: -150px; }
    .construction-about-section h2 { font-size: 4rem; }
    .construction-services-section { padding: 8rem 0; }
    .construction-services-section h2 { font-size: 5rem; }
    .construction-service-card {
        width: calc((100% - 3.5rem) / 2); /* 2 kart için genişlik */
        max-width: none;
    }
    .carousel-arrow.left { left: 5px; }
    .carousel-arrow.right { right: 5px; }
    .cta-section h2 { font-size: 5rem; }
    .btn-cta-construction { padding: 1.5rem 4rem; font-size: 1.4rem; }
    .contact-section h2 { font-size: 4rem; }
    .masonry-grid { column-count: 2; }
}

@media (max-width: 768px) {
    .slider-container {
        height: 60vh;
        min-height: 350px;
        margin-top: 60px; /* Header yüksekliği kadar boşluk */
    }
    .slider-content h1 { font-size: 3.5rem; }
    .slider-content p { font-size: 1.5rem; }
    .slider-nav-arrow { padding: 16px; font-size: 1.8rem; }
    .intro-section { padding: 2rem 0; margin-top: -3rem; } /* Mobil optimizasyon */
    .intro-section h2 { font-size: 2.5rem; }
    .construction-about-section { padding: 4rem; margin-top: -100px; }
    .construction-about-section h2 { font-size: 3rem; }
    .construction-services-section { padding: 6rem 0; }
    .construction-services-section h2 { font-size: 2.5rem; }
    .services-carousel-wrapper {
        overflow: visible; /* Mobilde taşma engellenmez, kartlar alt alta */
        padding: 0 1rem;
    }
    .construction-services-carousel {
        flex-direction: column !important; /* Alt alta kesinleştir, görünürlüğü garantile */
        width: 100% !important; /* Tam genişlik */
        gap: 2rem; /* Kartlar arasında boşluk */
    }
    .construction-service-card {
        width: 100% !important; /* Tam genişlik */
        max-width: none;
        margin-bottom: 1rem; /* Kartlar arasında ekstra boşluk */
    }
    .carousel-arrow {
        display: none; /* Mobilde okları gizle */
    }
    .cta-section h2 { font-size: 3.5rem; }
    .btn-cta-construction { padding: 1.2rem 3rem; font-size: 1.2rem; }
    .contact-section { padding: 5rem 0; }
    .contact-section h2 { font-size: 3rem; }
    .contact-form-container { padding: 2rem; }
    .contact-info-card { padding: 2rem; }
    .contact-info-card i { font-size: 2rem; }
    .contact-info-card span { font-size: 1rem; }
    .masonry-grid { column-count: 1; }
    .footer-menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .slider-container { height: 50vh; min-height: 300px; }
    .slider-content h1 { font-size: 2.5rem; }
    .slider-content p { font-size: 1.2rem; }
    .slider-nav-arrow { padding: 12px; font-size: 1.5rem; }
    .intro-section { padding: 1.5rem 0; margin-top: -2rem; } /* Daha kompakt */
    .intro-section h2 { font-size: 2rem; }
    .construction-about-section { padding: 2rem; margin-top: -80px; }
    .construction-about-section h2 { font-size: 2.5rem; }
    .construction-services-section { padding: 4rem 0; }
    .construction-services-section h2 { font-size: 2.8rem; }
    .construction-service-card { width: 100%; }
    .cta-section h2 { font-size: 2.8rem; }
    .btn-cta-construction { padding: 1rem 2rem; font-size: 1rem; }
    .contact-section h2 { font-size: 2.5rem; }
    .contact-form-input, .contact-form-textarea { font-size: 0.9rem; }
    .btn-submit-form { font-size: 1rem; }
}