/* Modern Çit Sistemleri - Main Stylesheet */
/* Referans: https://www.istanbulcit.com.tr/ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary-color: #196164;
    --primary-dark: #19352d;
    --secondary-color: #19352d;
    --accent-color: #003399;
    --text-dark: #32373c;
    --text-light: #555555;
    --text-muted: #8a8a8a;
    --bg-light: #f4f6f8;
    --bg-white: #ffffff;
    --bg-dark: #19352d;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar-wrapper {
    display: flex;
    font-size: 0.85rem;
    height: 40px;
    background-color: #b5cc18; /* Lime Green right side */
    position: relative;
    overflow: hidden;
}

.top-bar-left {
    background-color: #155A59; /* Dark Teal */
    width: 65%; /* Biraz daha daraltıp sosyal medyayı genişletebiliriz */
    display: flex;
    justify-content: center; /* Merkeze aldık */
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
    padding-right: 2%;
}

.top-bar-content {
    display: flex;
    gap: 1.5rem;
    color: white;
}

.top-bar-content span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-right {
    width: 35%;
    display: flex;
    align-items: center;
    padding-left: 1rem;
}

.social-links-top {
    display: flex;
    gap: 0.5rem;
}

.social-links-top a {
    color: #19352d;
    border: 1px solid #19352d;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links-top a:hover {
    background-color: #19352d;
    color: #b5cc18;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-dark);
    display: block;
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0;
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Dropdown Styles */
.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #19352d; /* Koyu yeşil dropdown */
    list-style: none;
    min-width: 260px;
    padding: 0;
    margin: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 100;
}

/* Seçili olan dropdown menünün daima açık kalması (örnekteki "Çit Ürünleri" için geçici) 
 * Not: Sitede sanırım hover durumunda açılıyor, ancak örnekte hep açık gibi gösterilmişse:
 */
.dropdown.active {
    display: block;
}

.dropdown li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    display: block;
}

.dropdown a:hover {
    background-color: #155A59;
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-icon-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--primary-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.search-icon-btn:hover {
    background: rgba(181, 204, 24, 0.2); /* Lime tint */
    color: var(--primary-color);
    transform: scale(1.1);
}

.btn-header-cta {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #155A59;
    color: white !important;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-header-cta:hover {
    background: #19352d;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.slider-wrapper {
    position: relative;
    height: 100%;
}

.swiper-slide.hero-slide {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 100%;
    opacity: 1; /* Swiper handles visibility */
    transition: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Swiper handles active state */

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8) 0%, rgba(30, 58, 95, 0.7) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease-out;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.6;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.8rem;
    background-color: #ffffff;
    color: #155A59 !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background-color: #b5cc18; /* Hover: Accent Lime */
    transition: all 0.4s ease;
    z-index: -1;
}

.hero-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    background-color: #b5cc18; /* Hover: Accent Lime */
    transition: all 0.4s ease;
    z-index: -1;
}

.hero-btn:hover {
    color: #19352d !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(181, 204, 24, 0.4);
}

.hero-btn:hover::before,
.hero-btn:hover::after {
    width: 100%;
    height: 100%;
}

/* Swiper Navigation Custom Styles */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #b5cc18;
    color: #19352d !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #b5cc18 !important;
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MODERN ABOUT US SECTION
   ============================================ */
.about-us-modern {
    background-color: #f9f9f9;
    padding: 0;
    overflow: hidden;
}

.about-us-container {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.about-us-content {
    flex: 1.1;
    background-color: #ffffff;
    padding: 7rem 6rem 7rem 15%;
    position: relative;
    z-index: 2;
    border-top-right-radius: 80px;
    margin-right: -40px; /* Sürüklenip içeri girme efekti */
    box-shadow: 20px 0 50px rgba(0,0,0,0.08);
    /* Sol kenar arka plan dalgaları */
    background-image: url('data:image/svg+xml,<svg width="200" height="800" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 Q100,200 0,400 T0,800" fill="none" stroke="%23e8e8e8" stroke-width="1.5"/><path d="M20,0 Q120,200 20,400 T20,800" fill="none" stroke="%23ebebeb" stroke-width="1.5"/><path d="M40,0 Q140,200 40,400 T40,800" fill="none" stroke="%23eeeeee" stroke-width="1.5"/><path d="M60,0 Q160,200 60,400 T60,800" fill="none" stroke="%23f4f4f4" stroke-width="1.5"/></svg>');
    background-repeat: no-repeat;
    background-position: left center;
}

.section-label-modern {
    color: #155A59; /* Teal */
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.about-us-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #19352d; /* Koyu yeşil */
    line-height: 1.15;
    margin-bottom: 2rem;
}

.about-us-desc {
    font-size: 1.05rem;
    color: #7b8a82;
    line-height: 1.7;
    margin-bottom: 3.5rem;
    max-width: 500px;
}

.feature-list-modern {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature-item-modern {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.icon-check {
    color: #19352d;
    font-size: 1.2rem;
    margin-top: 2px;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #19352d;
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: #88958e;
    line-height: 1.6;
    margin: 0;
    max-width: 450px;
}

.about-us-image-wrapper {
    flex: 1;
    position: relative;
    z-index: 1;
    min-height: 700px;
}

.about-us-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* YENİ BUTON - Çift Yönlü Animasyon (İçi Dolu, Hover'ı Koyu) */
.btn-solid-sweep {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background-color: #155A59; /* Varsayılan Açık Teal */
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.btn-solid-sweep::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background-color: #19352d; /* Hover Zemin - Daha Koyu Çam */
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-solid-sweep::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    background-color: #19352d; /* Hover Zemin - Daha Koyu Çam */
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-solid-sweep:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(25, 53, 45, 0.4);
}

.btn-solid-sweep:hover::before,
.btn-solid-sweep:hover::after {
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .about-us-container {
        flex-direction: column;
    }
    .about-us-content {
        padding: 4rem 2rem;
        border-top-right-radius: 0;
        margin-right: 0;
        box-shadow: none;
    }
    .about-us-image-wrapper {
        min-height: 400px;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 90, 160, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-link-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.service-link-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* ============================================
   WHY CHOOSE US SECTION (Custom Layout)
   ============================================ */
.why-choose-layout {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-content: center;
}

@media (max-width: 992px) {
    .why-choose-layout {
        flex-direction: column;
    }
    .why-choose-image-container {
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .why-choose-cards {
        grid-template-columns: 1fr;
    }
}

/* Feature Box Enhancements */
.feature-box {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #19352d;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(181, 204, 24, 0.2); /* #b5cc18 opacity */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #155A59;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.hover-lift:hover .icon-blob {
    background: #155A59 !important;
    transition: background 0.3s;
}
.hover-lift:hover .feature-icon-minimal i {
    color: white !important;
    transition: color 0.3s;
}

.hover-zoom:hover {
    transform: scale(1.03);
}

/* Floating Animations for Decorators */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-slow {
    0% { transform: translateY(0px) rotate(-30deg); }
    50% { transform: translateY(-10px) rotate(-28deg); }
    100% { transform: translateY(0px) rotate(-30deg); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-slow {
    animation: float-slow 8s ease-in-out infinite;
}

/* ============================================
   MODERN CTA & AVATAR BANNER SECTION
   ============================================ */
.modern-cta-wrapper {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.cta-left {
    flex: 1.3;
    background-color: #19352d; /* Koyu Çam Yeşili */
    padding: 3.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h2 {
    color: #b5cc18; /* Parlak Limon Yeşili */
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.cta-left p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.cta-right {
    flex: 1;
    background-color: #b5cc18; /* Limon Yeşili */
    padding: 3.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cta-stats {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #b5cc18;
    object-fit: cover;
    margin-left: -20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.avatar-group img:first-child {
    margin-left: 0;
    z-index: 3;
}
.avatar-group img:nth-child(2) {
    z-index: 2;
}

.avatar-plus {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: -20px;
    border: 3px solid #b5cc18;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #7c2d12;
}

.avatar-plus img {
    margin-left: 0 !important;
    border: none !important;
    box-shadow: none !important;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    filter: sepia(100%) hue-rotate(250deg) saturate(300%);
}

.plus-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b5cc18;
    font-size: 1.5rem;
    font-weight: 900;
}

.stat-text {
    color: #19352d;
    font-weight: 600;
    line-height: 1.2;
    font-size: 0.95rem;
}

.stat-number-modern {
    font-size: 1.6rem;
    font-weight: 800;
    display: block;
    margin-bottom: 2px;
}

.btn-outline-dark {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: transparent;
    border: 1.5px solid #19352d; /* Koyu yeşil çerçeve */
    color: #19352d;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    transition: color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    line-height: 1.4;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Sol üstten büyüyen parça */
.btn-outline-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background-color: #196164; /* Parlak Teal */
    transition: all 0.4s ease;
    z-index: -1;
}

/* Sağ alttan büyüyen parça */
.btn-outline-dark::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    background-color: #196164; /* Parlak Teal */
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-outline-dark:hover {
    color: white !important;
    border-color: #196164;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 97, 100, 0.3);
}

.btn-outline-dark:hover::before,
.btn-outline-dark:hover::after {
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .modern-cta-wrapper {
        flex-direction: column;
    }
    .cta-left {
        padding: 3rem 2rem;
        text-align: center;
    }
    .cta-right {
        padding: 3rem 2rem;
        flex-direction: column;
        gap: 2rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: white;
}

.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.7);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: white;
}

.working-hours {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex !important;
    }
    
    .header-actions {
        display: flex !important;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .about-grid {
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #19352d; /* Koyu tema */
        flex-direction: column;
        padding: 80px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        display: flex;
        z-index: 1001;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    }
    
    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        color: white !important;
        font-size: 1.1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        justify-content: space-between;
    }

    .nav-menu a:hover {
        color: #b5cc18 !important;
    }

    .has-dropdown .dropdown {
        position: static;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        min-width: 100%;
        display: none; /* Changed from !important to allow JS control */
        padding-left: 1rem;
    }

    .has-dropdown.dropdown-open .dropdown {
        display: block !important;
    }

    /* Disable hover open on mobile */
    .has-dropdown:hover .dropdown {
        display: none;
    }
    .has-dropdown.dropdown-open:hover .dropdown {
        display: block !important;
    }

    .dropdown a {
        padding: 0.8rem 1rem;
        border-bottom: none;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .dropdown a:hover {
        color: #b5cc18 !important;
        background: none;
    }

    .top-bar-left {
        width: 100%;
        clip-path: none;
        padding: 0 10px;
        justify-content: center;
    }

    .top-bar-right {
        display: none;
    }

    .top-bar-content {
        gap: 0.8rem;
        font-size: 0.75rem;
    }

    .top-location {
        display: none;
    }

    .header-actions .btn-header-cta {
        display: none;
    }

    .header-actions {
        display: flex !important;
        gap: 1rem;
    }

    /* .search-icon-btn moved to global */
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        padding: 0.75rem 0;
    }
    
    .btn-header-cta {
        display: none;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-badge {
        bottom: 10px;
        right: 10px;
        padding: 1.5rem;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   MOBILE MENU ANIMATION
   ============================================ */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(10deg);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 53, 45, 0.98);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-search {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 50px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s;
}

.close-search:hover {
    transform: rotate(90deg);
    color: #b5cc18;
}

.search-overlay-content {
    width: 90%;
    max-width: 800px;
}

.search-form-wrapper {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.search-form-icon-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #b5cc18;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    margin-right: 15px;
}

.search-form-icon-btn:hover {
    transform: scale(1.2);
    color: white;
}

.search-overlay .search-input {
    width: 100%;
    background: none !important;
    border: none !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    font-size: 2.5rem !important;
    font-weight: 300 !important;
    padding: 20px 0 20px 60px !important;
    outline: none !important;
}

.search-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #b5cc18;
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-input:focus + .search-underline {
    width: 100%;
}

.search-hints {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.search-overlay .search-autocomplete-results {
    position: static !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    max-height: 50vh !important;
    margin-top: 20px !important;
    padding: 0 !important;
    display: block !important;
}

.search-overlay .search-autocomplete-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 20px 0 !important;
    color: white !important;
    background: none !important;
}

.search-overlay .search-autocomplete-item:hover {
    color: #b5cc18 !important;
}

.search-overlay .search-item-title {
    font-size: 1.2rem !important;
}

.search-overlay .search-item-type {
    background: #b5cc18 !important;
    color: #19352d !important;
}

@media (max-width: 768px) {
    .search-overlay .search-input {
        font-size: 1.5rem !important;
        padding-left: 45px !important;
    }
    .search-form-icon {
        font-size: 1.5rem;
    }
    .close-search {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
}
