    /* Your existing CSS here (kısaltıldı) */
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: #FFF;
            color: #2A1B1A;
            margin: 0;
        }
/* WhatsApp Teklif Kartı Stilleri */

   
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;  
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;  
}

.header-content {
    display: flex;
    justify-content: space-between;  
    align-items: center; 
    padding: 1rem 2rem;
}

.logo img {
    height: 80px;  
    max-width: 200px;  
    width: 80px;  
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;  
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;  
}

.nav-links li {
    position: relative;
    overflow: hidden;  
    line-height: 1.2;  
 
}

.nav-links .nav-item {
    text-decoration: none;
    color: #2A1B1A;
    
    padding: 0.5rem 0;  
    display: block;  
    transition: transform 0.3s ease-out;  
     
    transform: translateY(0);  
}

.nav-links li:hover .nav-item {
    
    transform: translateY(-80%);
}
.nav-links .nav-item::before {
    top: 70%;
    transform: translateY(100%);
}
.nav-links li:hover .nav-item::before {
    transform: translateY(0);
}

 
.nav-links .nav-item::before {
    content: attr(data-hover);  
    position: absolute;
    top: 80%;  
    left: 0;
     
    color: #19793d; 
    transition: transform 0.3s ease-out;  
    text-align: center;  
    white-space: nowrap;
    display: block;
    padding: 0.5rem 0;  
    line-height: 1.2;  
    transform: translateY(100%);  
}

 

 
.social-icons {
    display: flex;
    gap: 1rem;
    margin-left: 1.5rem;  
}

.social-icons a {
    color: #2A1B1A;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #19793d;
}

 
.mobile-menu-toggle {
    display: none;  
    font-size: 1.8rem;
    color: #2A1B1A;
    cursor: pointer;
}

 
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);  
    z-index: 1001;  
    display: flex;
    justify-content: flex-end;  
    opacity: 0;
    visibility: hidden;  
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    background-color: #fff;
    width: 70%;  
    max-width: 300px;  
    height: 100%;
    transform: translateX(100%);  
    transition: transform 0.3s ease;  
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;  
}

.mobile-nav-overlay.active .mobile-nav {
    transform: translateX(0);  
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
}

.mobile-logo img {
    height: 35px;  
    max-width: 120px;  
}

.close-btn {
    font-size: 1.8rem;
    color: #2A1B1A;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    padding: 1.5rem 1.5rem;
    margin: 0;
    flex-grow: 1;  
}

.mobile-nav-links li {
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-links li a {
    text-decoration: none;
    color: #2A1B1A;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    display: block;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
    color: #D4A373;
   
}

.mobile-nav-links li a::before {
    display: none;  
}

 
.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.mobile-social-icons a {
    color: #2A1B1A;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.mobile-social-icons a:hover {
    color: #D4A373;
}

 
@media (max-width: 991px) {  
    .main-nav {
        display: none;  
    }

    .mobile-menu-toggle {
        display: block;  
    }

    .header-content {
        padding: 0.8rem 1.5rem;  
    }

    
    .logo img {
        height: 80px;  
        width: 80px;
        max-width: 150px;
    }
}

        
        #services {
            padding: 5rem 0;
            background: #fff;
            text-align: center;
        }

        #services h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: #2A1B1A;
            margin-bottom: 3rem;
        }

        .service-content {
            display: none;
            align-items: center;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
            padding: 0 1rem;
        }

        .service-content.active {
            display: flex;
        }

        .service-image {
            flex: 1;
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .service-image.active {
            opacity: 1;
            transform: translateX(0);
        }

        .service-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .service-text {
            flex: 1;
            text-align: left;
            opacity: 0;
            transform: translateX(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .service-text.active {
            opacity: 1;
            transform: translateX(0);
        }

        .service-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #D4A373;
            margin-bottom: 1rem;
        }

        .service-text p {
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            color: #2A1B1A;
            line-height: 1.6;
        }

        .service-tabs {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-tab {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 400;
            color: #2A1B1A;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .service-tab.active {
            color: #D4A373;
            transform: scale(1.1);
        }

        .service-tab:hover {
            color: #D4A373;
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .service-content {
                flex-direction: column;
                text-align: center;
            }

            .service-text {
                text-align: center;
            }

            .service-image img {
                height: 300px;
            }

            .service-tabs {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 0.5rem;
            }

            .service-tab {
                padding: 0.25rem 0.75rem;
                font-size: 0.875rem;
                min-width: 80px;
                flex: 0 0 auto;
                text-align: center;
            }
        }

     
        #about {
            padding: 5rem 0;
            background: #FFF0F5;
            text-align: center;
            position: relative;
            min-height: 600px;
            overflow: hidden;
        }

        .about-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('cikolata.jpg') center center / cover no-repeat;
            z-index: 1;
        }

        @media (min-width: 769px) {
            .about-background {
                background-attachment: fixed;
            }
        }

        .about-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 2rem;
            height: 100%;
        }

        .about-text {
           background: rgba(16, 52, 30, 0.9);
            padding: 2rem;
            border-radius: 12px;
            max-width: 600px;
            text-align: left;
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .about-text.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1rem;
        }
               .about-text h4 {
                color: #fff;
               }

        .about-text p {
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            color: #fff;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .about-text a {
            display: inline-block;
            background: #D4A373;
            color: #FFF;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 0.5rem 1.2rem;
            border-radius: 8px;
            text-decoration: none;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .about-text a:hover {
            background: #8B5E34;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .about-background {
                background-attachment: scroll;
            }

            .about-content {
                justify-content: center;
                padding: 0 1rem;
            }

            .about-text {
                max-width: 100%;
                text-align: center;
            }
        }

       
        footer {
            background: #10341E;
            color: #FFF;
            padding: 3rem 0 1rem;
            position: relative;
            z-index: 10;
            border-top: 1px solid #D4A373;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            padding: 0 2rem;
        }

        .footer-section {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .footer-section:nth-child(1) { transition-delay: 0.1s; }
        .footer-section:nth-child(2) { transition-delay: 0.2s; }
        .footer-section:nth-child(3) { transition-delay: 0.3s; }
        .footer-section:nth-child(4) { transition-delay: 0.4s; }

        .footer-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .footer-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: #FFF;
            margin-bottom: 1rem;
        }

        .footer-section p {
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            font-weight: 400;
            color: #FFF;
            line-height: 1.6;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            font-weight: 400;
            color: #FFF;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .footer-section a:hover {
            color: #D4A373;
            transform: translateX(5px);
        }

        .footer-logo {
            width: 200px;
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 600;
            color: #D4A373;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 2px solid rgba(212, 163, 115, 0.2);
            margin-top: 20px;
        }

        .footer-bottom p {
            font-family: 'Poppins', sans-serif;
            font-size: 0.8rem;
            color: #FFF0F5;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .footer-social a {
            color: #D4A373;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid #D4A373;
            transition: color 0.3s ease, transform 0.3s ease, border 0.3s ease;
        }

        .footer-social a:hover {
            color: #FFF;
            border-color: #FFF;
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-section {
                max-width: 100%;
                margin-bottom: 1.5rem;
            }

            .footer-logo {
                margin: 1rem auto;
            }

            .footer-social a {
                font-size: 1.5rem;
                width: 50px;
                height: 50px;
            }
        }

       
        #testimonials {
            padding: 4rem 0;
            background: #fff;
            text-align: center;
            position: relative;
        }

        #testimonials h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: #2A1B1A;
            margin-bottom: 3rem;
            opacity: 0;
        }

        .animate-fade-in-up {
            animation: fadeInUp 1s ease-out forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

         
        .swiper-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;  
        }

        
        .swiper-slide {
            padding: 0;  
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: stretch;  
        }

        .testimonial-card-inner {
            background-color: #fff;
            border-radius: 0.75rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease;
            flex-grow: 1;
            text-align: center;
            height: 350px;  
            width: 100%;
            box-sizing: border-box;
        }

        .testimonial-card-inner:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

       

        .testimonial-card-inner p.text-lg {
            font-size: 1.125rem;
            font-weight: 600;
            color: #374151;
            margin-bottom: 0.5rem;
            flex-grow: 1;  
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .testimonial-card-inner .stars {
            display: flex;
            color: #FBBF24;
            margin-bottom: 1rem;
            justify-content: center;
        }

        .testimonial-card-inner h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #2A1B1A;
        }

        .testimonial-card-inner p.text-sm {
            font-size: 0.875rem;
            color: #4B5563;
        }

     
        @media (max-width: 767px) {
            .swiper-container {
                padding: 0;  
            }

            .swiper-slide {
                padding: 0;
            }

            .testimonial-card-inner {
                padding: 1rem;
                height: 320px;  
                width: 100%;  
                margin: 0;
            }

            .testimonial-card-inner img {
                width: 4rem;
                height: 4rem;
            }

            .testimonial-card-inner p.text-lg {
                font-size: 1rem;
            }

            .testimonial-card-inner h4 {
                font-size: 0.9rem;
            }

            .testimonial-card-inner p.text-sm {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .swiper-container {
                padding: 0;
            }

            .testimonial-card-inner {
                width: 100%;  
            }
        }
               
#gallery {
    padding: 5rem 0;
    background: #fff;  
    text-align: center;
}

#gallery .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2A1B1A;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

 
.myGallerySwiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
   
    overflow: hidden;  
}

.myGallerySwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;  
    box-sizing: border-box;
}

.gallery-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: grab;  
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);  
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);  
}

.gallery-item img {
    width: 100%;
    height: 300px;  
    object-fit: cover;  
    display: block;  
    transition: transform 0.5s ease;  
}

.gallery-item:hover img {
    transform: scale(1.05);  
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: rgba(16, 52, 30, 0.8);
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;  
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
}

.gallery-item:hover .overlay {
    opacity: 1;  
}

.gallery-item .overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.gallery-item .overlay p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
}

 
.myGallerySwiper .swiper-button-prev,
.myGallerySwiper .swiper-button-next {
    display: none;  
}

 
.myGallerySwiper .swiper-pagination-bullet {
    display: none;  
}

 
@media (max-width: 767px) {
    #gallery .section-title {
        font-size: 2rem;
    }

    .myGallerySwiper {
        padding: 0 0.5rem;  
    }

 
    .myGallerySwiper .swiper-button-prev,
    .myGallerySwiper .swiper-button-next {
        display: none;
    }

    .gallery-item img {
        height: 200px;  
    }

    .gallery-item .overlay h3 {
        font-size: 1.5rem;
    }

    .gallery-item .overlay p {
        font-size: 0.9rem;
    }
}
  :root {
            --swiper-theme-color: #A0D8B3;  
            --default-space-between: 10px;  

          
            --info-bg-color: rgba(0, 0, 0, 0.75);  
            --info-text-color: #FFFFFF;  
            --info-border-radius: 12px;  
            --info-padding-y: 35px;  
            --info-padding-x: 45px;  
            --info-bottom-offset: 35px; 
            --info-max-width: 85%;  
            --info-font-size: 2.7em;  
            --info-font-weight: 700;  
            --info-line-height: 1.2;  
            --info-text-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);  
            --info-blur-radius: 8px;  
        }

   

        .heroSlider {
            width: 100vw;
            max-width: 100vw;
            height: 500px;  
            margin: 0 auto;
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
            position: relative;
        }

        .heroSlider .swiper-wrapper {
            display: flex;
            align-items: stretch;
        }

     
        .heroSlider .swiper-slide {
            flex-shrink: 0;
            width: calc((100% - (var(--default-space-between) * 2)) / 3) !important; 
            
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            
            transition: none !important;
            transform: none !important;
            box-sizing: border-box;
            position: relative;
        }
        
        .heroSlide {
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .heroSlide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            
            filter: brightness(0.7);
        }

       

    
        .slideCaption {
            position: absolute;
            bottom: var(--info-bottom-offset);  
            bottom: 0; 
            left:50%;
            width: 100%;
            background: var(--info-bg-color);  
            color: var(--info-text-color);
            padding: var(--info-padding-y) var(--info-padding-x);
            border-radius: var(--info-border-radius);
            
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.0rem;
            font-weight: var(--info-font-weight);
            line-height: var(--info-line-height);
            text-shadow: var(--info-text-shadow);
            
            opacity: 0;
            transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);  
            max-width: var(--info-max-width);
            box-sizing: border-box;
            pointer-events: none;
            text-wrap: balance;
            backdrop-filter: blur(var(--info-blur-radius));  
            -webkit-backdrop-filter: blur(var(--info-blur-radius));  
        }

        
        .swiper-slide:hover .slideCaption {
            opacity: 1;
            transform: translateX(-50%) translateY(0);  
        }

       .swiper-button-next, .swiper-button-prev {
    color: white !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50% !important;
    width: 55px !important;
    height: 55px !important;
    margin-top: -27.5px !important;
    transition: background 0.4s ease, transform 0.2s ease !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    z-index: 10;
}

 
.swiper-button-next {
    right: 30px !important;  
}

 
.swiper-button-prev {
    left: 30px !important;  
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 26px !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--swiper-theme-color) !important;
    transform: scale(1.15);
}

       
        .swiper-pagination {
            display: none !important;
        }

      
        @media (max-width: 1200px) { 
            .heroSlider {
                height: 550px;
            }
            .slideCaption {
                font-size: 2.2em;
                padding: 30px 25px;
                bottom: 30px;
            }
        }

        @media (max-width: 992px) { 
            :root {
                --default-space-between: 10px; 
            }
            .heroSlider {
                height: 450px;
            }
            .heroSlider .swiper-slide {
                width: calc((100% - var(--default-space-between) * 1) / 2) !important;
            }
            .slideCaption {
                font-size: 1.8em;
                padding: 25px 20px;
                bottom: 25px;
            }
        }

        @media (max-width: 768px) { 
            :root {
                --default-space-between: 5px;
            }
            .heroSlider {
                height: 350px;
            }
            .heroSlider .swiper-slide {
                width: calc(100% - (var(--default-space-between) * 0)) !important;
            }
            .slideCaption {
                font-size: 1.4em;
                padding: 20px 15px;
                bottom: 20px;
            }
            .swiper-button-next, .swiper-button-prev {
                width: 45px !important;
                height: 45px !important;
                margin-top: -22.5px !important;
            }
            .swiper-button-next::after, .swiper-button-prev::after {
                font-size: 22px !important;
            }
        }

        @media (max-width: 480px) { 
            :root {
                --default-space-between: 5px;
            }
            .heroSlider {
                height: 280px;
            }
            .slideCaption {
                font-size: 1.1em;
                padding: 15px 10px;
                bottom: 15px;
            }
            .swiper-button-next, .swiper-button-prev {
                width: 35px !important;
                height: 35px !important;
                margin-top: -17.5px !important;
            }
            .swiper-button-next::after, .swiper-button-prev::after {
                font-size: 18px !important;
            }
        }
           

.call-to-action {
    position: relative;
    width: 100%;
    height: 500px;  
    background: url('cikolata.jpg') no-repeat center center/cover;  
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;  
    
}

.call-to-action-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);  
    z-index: 1;
}

.call-to-action-content {
    position: relative;
    z-index: 2;  
    max-width: 800px;
    padding: 20px;
}

.call-to-action-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2em;  
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);  
}

.call-to-action-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);  
}

 

 

.button-primary {
    display: inline-block;
    background-color: #19793d;  
    color: #fff;
    padding: 18px 40px;  
    border-radius: 50px;  
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;  
    font-weight: 700;  
    letter-spacing: 1px;  
    transition: all 0.4s ease;  
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);  
    border: none;  
    cursor: pointer;  
    position: relative;  
    overflow: hidden;  
    z-index: 1;
}

.button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;  
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);  
    transition: all 0.4s ease;
    z-index: -1;
    transform: skewX(-20deg);  
}

.button-primary:hover {
    background-color: #10341E;  
    transform: translateY(-3px);  
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);  
}

.button-primary:hover::before {
    left: 100%;  
}

 
@media (max-width: 768px) {
    .button-primary {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .button-primary {
        padding: 12px 25px;
        font-size: 1em;
    }
}
 
@media (max-width: 768px) {
    .call-to-action {
        height: 400px;
    }

    .call-to-action-content h2 {
        font-size: 2.5em;
    }

    .call-to-action-content p {
        font-size: 1em;
    }

 
}

@media (max-width: 480px) {
    .call-to-action {
        height: 350px;
    }

    .call-to-action-content h2 {
        font-size: 2em;
    }

    .call-to-action-content p {
        font-size: 0.9em;
    }

 
}
 .whatsapp-offer-card {
    position: fixed;
    bottom: 90px; /* WhatsApp butonunun hemen üstünde görünmesi için */
    left: 20px; /* Burayı 'right: 20px;' yerine 'left: 20px;' olarak değiştiriyoruz */
    background-color: #fff;
    color: #333;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999; /* WhatsApp butonundan biraz daha düşük */
    width: 200px;
    opacity: 0; /* Başlangıçta gizli */
    visibility: hidden; /* Başlangıçta gizli */
    transform: translateY(20px); /* Alttan yukarı doğru gelmesi için */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, visibility 0.5s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.whatsapp-offer-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-offer-card .offer-text {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
}

.whatsapp-offer-card .offer-button {
    display: block;
    background-color: #25D366; /* WhatsApp yeşili */
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    margin-top: 5px;
    transition: background-color 0.3s ease;
}

.whatsapp-offer-card .offer-button:hover {
    background-color: #1DA851; /* Hover'da daha koyu */
}

.whatsapp-offer-card .close-offer-card {
    position: absolute;
    top: 5px;
    right: 8px; /* Kapat butonu kartın sağ üst köşesinde kalmaya devam edebilir */
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.whatsapp-offer-card .close-offer-card:hover {
    color: #333;
}    
.fixed-whatsapp-button {
    position: fixed;
    bottom: 25px;
    left: 25px;  
    background-color: #25D366;  
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;  
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); 
    text-decoration: none;  
    z-index: 1000;  
     transition: background-color 0.3s ease, transform 0.3s ease;
}
.fixed-whatsapp-button:hover {
    background-color: #1DA851; /* Hover'da daha koyu yeşil */
    transform: scale(1.1) rotate(360deg); /* Büyüme ve 360 derece dönüş */
}

/* Ek olarak, ikona da hafif bir geçiş ekleyebilirsiniz */
.fixed-whatsapp-button i {
    transition: transform 0.3s ease;
}

/* Eğer isterseniz, ikonun da hafifçe büyümesini sağlayabilirsiniz */
.fixed-whatsapp-button:hover i {
    transform: scale(1.1);
}

 
.fixed-scroll-to-top-button {
    position: fixed;
    bottom: 25px;
    right: 25px;  
    background-color: #19793d;  
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border: none;  
    cursor: pointer;
     transition: all 0.5s ease-in-out, opacity 0.5s ease-in-out;  
  
    opacity: 0;  
    display: none;  
    z-index: 1000;  
}

.fixed-scroll-to-top-button:hover {
    background-color: #10341E;  
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

 
@media (max-width: 480px) {
    
    .fixed-whatsapp-button {
        width: 50px; 
        height: 50px;
        font-size: 1.8em;
        bottom: 35px;  
        left: 15px;  
        right: auto;  
    }

     
    .fixed-scroll-to-top-button {
        width: 50px;  
        height: 50px;
        font-size: 1.8em;
        bottom: 35px;  
        right: 15px;  
        left: auto;  
    }
}
  
.modal {
    display: none;  
    position: fixed;  
    z-index: 1000;  
    left: 0;
    top: 0;
    width: 100%;  
    height: 100%;  
     
    background-color: rgba(0, 0, 0, 0.75);  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    opacity: 0; 
    visibility: hidden;  
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;  
    box-sizing: border-box;  
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

 
.modal-content {
    background-color: #fff;
    padding: 45px 50px;  
    border-radius: 15px; 
    width: 90%;  
    max-width: 750px;  
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);  
    position: relative;
    transform: translateY(-50px) scale(0.95);  
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;  
 
    max-height: 90vh;  
    overflow-y: auto;  
    box-sizing: border-box;  
}

 
@keyframes fadeInModal {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal.active .modal-content {
    animation: fadeInModal 0.4s ease-out forwards;  
}


 
.close-button {
    color: #888;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 38px;
    font-weight: normal;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
}

.close-button:hover,
.close-button:focus {
    color: #D4AF37;
    transform: rotate(90deg);
}

 
.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    text-align: center;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.modal-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #D4AF37;
    border-radius: 2px;
}

 
.modal-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15em;
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

 
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

 
.contact-item {
    text-align: center;
    background-color: #fcfcfc;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background-color: #f5f5f5;
}

.contact-item i {
    font-size: 2.8em;
    color: #19793d;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(25, 121, 61, 0.3);
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05em;
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #19793d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #D4AF37;
}

 
.modal-social-icons {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.modal-social-icons a {
    color: #555;
    font-size: 2em;
    margin: 0 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.modal-social-icons a:hover {
    color: #D4AF37;
    transform: translateY(-5px) scale(1.1);
}

 
.contact-map {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 300px;
}

 
@media (max-width: 992px) {
    .modal-content {
        padding: 35px 40px;
        max-width: 650px;
    }
    .modal-title {
        font-size: 2.5em;
    }
    .modal-description {
        font-size: 1.05em;
    }
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
    .contact-item i {
        font-size: 2.2em;
    }
    .contact-item h3 {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .modal {
        padding: 15px;  
    }
    .modal-content {
        padding: 25px;  
        width: 95%;  
        border-radius: 10px;
     
    }
    .modal-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .modal-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;  
        gap: 20px;
    }
    .contact-item {
        padding: 20px;
    }
    .contact-item i {
        font-size: 2em;
        margin-bottom: 10px;
    }
    .contact-item h3 {
        font-size: 1.2em;
    }
    .contact-item p {
        font-size: 0.95em;
    }
    .close-button {
        font-size: 32px;
        top: 15px;
        right: 20px;
    }
    .modal-social-icons a {
        font-size: 1.7em;
        margin: 0 12px;
    }
    .contact-map iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 10px;  
    }
    .modal-content {
        padding: 15px;  
        
    }
    .modal-title {
        font-size: 1.8em;
    }
    .modal-description {
        font-size: 0.9em;
        margin-bottom: 25px;
    }
    .contact-item i {
        font-size: 1.8em;
    }
    .contact-item h3 {
        font-size: 1.1em;
    }
    .modal-social-icons a {
        font-size: 1.5em;
        margin: 0 8px;
    }
}