/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    display: block;
    unicode-bidi: isolate;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

:host, :root {
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
}

/* Grundlegende Einstellungen */
:root {
    --primary-color: #2e7d32;
    --secondary-color: #4caf50;
    --accent-color: #8bc34a;
    --light-green: #e8f5e9;
    --dark-green: #1b5e20;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}

*::selection{
    background-color: #1b5e20;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-green);
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 28px;
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-gray);
    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after,
nav ul li a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

/* Hero Section */
.hero {
    background: var(--dark-green);
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--light-green);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content h3 {
    font-size: 32px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rounded-image {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background-color: var(--white);
}

.experience-section h3 {
    font-size: 32px;
    text-align: center;
}

.experience-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

/* Why Choose Us Section Improvements */
.why-us-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background-color: #d7eeda;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.2);
}

.feature-icon i {
    font-size: 32px;
    color: #4CAF50;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: rotate(10deg);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 22px;
    color: #2e7d32;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.more-link-container {
    text-align: center;
    margin-top: 40px;
}

.btn-secondary {
    background-color: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background-color: #4CAF50;
    color: white;
}

.btn-secondary i {
    transition: transform 0.3s ease;
}

.btn-secondary:hover i {
    transform: translateX(5px);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.team-section h3 {
    font-size: 32px;
}

.team-section p {
    max-width: 800px;
    margin: 0 auto 40px;
}

.team-image {
    max-width: 600px;
    margin: 0 auto;
}

.team-image img {
    width: 100%;
    height: auto;
}

/* Footer */
footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-green);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Bottom Link Styles */
.footer-bottom a {
    color: var(--light-green);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-left: 5px;
}

.footer-bottom a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Social Links in Footer */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 30px;
    }
    
    .about-section,
    .experience-section,
    .why-us-section,
    .team-section {
        padding: 50px 0;
    }
}

/* Logo Styles */
.logo-image {
    max-height: 60px;
    width: auto;
}

.footer-logo-image {
    max-height: 80px;
    width: auto;
    margin-bottom: 15px;
}

/* Dropdown Menu Styles */
.main-menu .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 100;
    border-radius: 5px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--dark-gray);
    font-weight: 400;
}

.dropdown-menu li a:hover {
    background-color: var(--light-green);
    color: var(--primary-color);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-menu-close:before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    z-index: -1;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
    display: flex;
}

/* Mobil Menü Başlık */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
}

.mobile-logo-image {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Mobil Menü İçerik */
.mobile-menu-content {
    flex: 1;
    padding: 20px 0;
}

.mobile-menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-content ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-content ul li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-menu-content ul li a i:first-child {
    margin-right: 15px;
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

.dropdown-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.mobile-menu-content ul li a:hover {
    background-color: var(--light-green);
    color: var(--primary-color);
}

.mobile-dropdown-menu {
    display: none;
    background-color: rgba(0, 0, 0, 0.02);
    padding: 5px 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li {
    border-bottom: none !important;
}

.mobile-dropdown-menu li a {
    padding: 12px 20px 12px 55px;
    font-weight: 400;
    font-size: 0.95em;
}

/* Mobil Menü Alt Kısım */
.mobile-menu-footer {
    padding: 20px;
    background-color: var(--light-gray);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 14px;
}

.mobile-contact-info a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Unified Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

.btn-primary, .btn-whatsapp {
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-primary:hover, .btn-whatsapp:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--dark-green);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn i {
    margin-right: 10px;
    font-size: 18px;
}

/* Improved Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 12px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

.service-card .btn {
    margin-top: auto;
    align-self: center;
}

/* Sub-service cards improvements */
.sub-services {
    margin-top: 50px;
}

.sub-service-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.sub-service-image {
    height: 100%;
    min-height: 250px;
    max-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sub-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.sub-service-content {
    padding: 30px;
}

.sub-service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 12px;
}

.sub-service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.sub-service-content p {
    margin-bottom: 20px;
}

.sub-service-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.sub-service-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
}

.sub-service-content .btn {
    display: inline-flex;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .sub-service-card {
        grid-template-columns: 1fr;
    }
    
    .sub-service-image {
        min-height: 200px;
        max-height: 250px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .sub-service-image {
        min-height: 180px;
        max-height: 220px;
    }
}

/* CTA Section */
.cta-section {
    background-color: var(--light-green);
    padding: 60px 0;
    text-align: center;
}

.cta-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Responsive Adjustments for Mobile Menu */
@media (max-width: 768px) {
    .main-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .sub-service-card {
        grid-template-columns: 1fr;
    }
    
    .sub-service-image {
        order: -1;
    }
}

/* Contact Page Styles - Improved Design */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-green);
    background-image: linear-gradient(135deg, rgba(232, 245, 233, 0.8) 0%, rgba(232, 245, 233, 0.4) 100%), url('image/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
}

.contact-info h3,
.contact-form-container h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after,
.contact-form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.15);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.contact-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-green);
}

.contact-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.contact-text a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-color);
    font-weight: 500;
}

.whatsapp-contact {
    margin-top: 30px;
    text-align: center;
}

.contact-form button[type="submit"] {
    display: block;
    margin: 25px auto 0;
    min-width: 200px;
}

/* Responsive button adjustments */
@media (max-width: 576px) {
    .btn-primary, 
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    .whatsapp-contact .btn-whatsapp,
    .contact-form button[type="submit"] {
        min-width: 100%;
    }
}

/* Form Styles - Improved */
.contact-form-container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background-color: var(--accent-color);
}

.contact-form {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark-green);
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
    background-color: white;
}

.form-group input[type="file"] {
    padding: 12px;
    border: 2px dashed #e0e0e0;
    background-color: #f9f9f9;
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: var(--accent-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: -1;
    }
    
    .contact-section {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .contact-info, 
    .contact-form-container {
        padding: 30px;
    }
    
    .contact-info h3,
    .contact-form-container h3 {
        font-size: 24px;
    }
    
    .map-section h3 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-info::before,
    .contact-form-container::before {
        width: 100%;
        height: 5px;
        top: 0;
        left: 0;
    }
    
    .contact-info h3::after,
    .contact-form-container h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .btn-primary, 
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* Custom File Upload Button */
.custom-file-upload {
    position: relative;
    overflow: hidden;
    display: block;
    background-color: #f9f9f9;
    border: 2px dashed #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-file-upload:hover {
    border-color: var(--accent-color);
    background-color: #f5f9f5;
}

.custom-file-upload i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.custom-file-upload span {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.custom-file-upload .file-info {
    font-size: 14px;
    color: #777;
}

.custom-file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-name {
    margin-top: 10px;
    font-size: 14px;
    color: var(--primary-color);
    display: none;
}

/* Gallery Styles */
.gallery-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    margin: 0 10px 10px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
    transition: all 0.3s ease;
}

.gallery-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.gallery-category {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.btn-view-details {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background-color: var(--dark-green);
}

/* Modal Styles - Improved */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    margin: 3% auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 85%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    transform: translateY(-30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-green) 100%);
    color: white;
    padding: 20px 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 26px;
    font-weight: 600;
}

.modal-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 140px);
}

.modal-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.modal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.modal-intro {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-weight: 500;
}

.modal-section h3 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.modal-section h3 i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 18px;
}

.modal-text {
    line-height: 1.7;
    color: var(--dark-gray);
}

.modal-text p {
    margin-bottom: 15px;
}

.modal-text strong {
    color: var(--dark-green);
    font-weight: 600;
}

.modal-footer {
    padding: 15px 30px;
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: right;
}

.btn-close-modal {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-close-modal:hover {
    background-color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Custom scrollbar for modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

@media (max-width: 992px) {
    .modal-content {
        width: 90%;
        margin: 5% auto;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-intro {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header h2 {
        font-size: 22px;
    }
    
    .modal-section h3 {
        font-size: 18px;
    }
    
    .modal-body {
        max-height: calc(90vh - 120px);
    }
}

@media (max-width: 576px) {
    .modal-content {
        width: 98%;
        margin: 3% auto;
    }
    
    .modal-header {
        padding: 12px 15px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-section {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .modal-section h3 {
        font-size: 16px;
    }
    
    .modal-intro {
        font-size: 15px;
    }
    
    .modal-footer {
        padding: 12px 15px;
    }
    
    .btn-close-modal {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slider-item.active {
    opacity: 1;
}

.slider-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-header {
    color: white;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: white;
}

.slider-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.slider-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-header p {
    font-size: 18px;
    color: var(--dark-gray);
}

/* Gallery Preview */
.gallery-preview {
    padding: 80px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.gallery-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 1;
}

.gallery-preview .container {
    position: relative;
    z-index: 2;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-preview-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 280px;
    position: relative;
    background-color: white;
}

.gallery-preview-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-preview-item a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.08);
}

.gallery-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 25px 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-preview-item:hover .gallery-preview-overlay {
    opacity: 1;
}

.gallery-preview-overlay h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.5s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-preview-item:hover .gallery-preview-overlay h3 {
    transform: translateY(0);
}

/* Button in gallery preview overlay - Enhanced */
.btn-view-details {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-view-details::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.gallery-preview-item:hover .btn-view-details {
    opacity: 1;
    transform: translateY(0);
}

.btn-view-details:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-view-details:hover::after {
    transform: translateX(3px);
}

.gallery-link {
    text-align: center;
    margin-top: 20px;
}

/* Gallery Modal Styles - Enhanced */
.modal-image-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.modal-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.modal-image-container:hover img {
    transform: scale(1.03);
}

.modal-details {
    padding: 0 15px;
}

.gallery-modal {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.gallery-modal .modal-body {
    display: flex;
    flex-direction: column;
    padding: 25px;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
}

.gallery-modal .modal-content {
    max-width: 800px;
    width: 90%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-color: white;
    animation: modalZoomIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalZoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-modal .modal-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 25px;
    position: relative;
}

.gallery-modal .modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.gallery-modal .modal-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) rotate(90deg);
}

.gallery-modal .modal-section {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.gallery-modal .modal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.gallery-modal .modal-section h3 {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.gallery-modal .modal-section h3 i {
    margin-right: 12px;
    font-size: 20px;
    width: 24px;
    text-align: center;
    color: var(--primary-color);
}

.gallery-modal .modal-text {
    line-height: 1.7;
    color: #555;
}

.gallery-modal .modal-text p {
    margin-bottom: 12px;
}

.gallery-modal .modal-text strong {
    font-weight: 600;
    color: #333;
}

.gallery-modal .modal-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.btn-close-modal {
    background-color: #e0e0e0;
    color: #555;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    background-color: #d0d0d0;
}

/* Responsive styles for gallery preview and modal */
@media (max-width: 992px) {
    .gallery-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-preview-item {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-preview-item {
        height: 220px;
    }
    
    .gallery-preview-overlay h3 {
        font-size: 18px;
    }
    
    .modal-image-container {
        height: 250px;
    }
    
    .gallery-modal .modal-section h3 {
        font-size: 16px;
    }
    
    .gallery-modal .modal-section h3 i {
        font-size: 18px;
    }
    
    .gallery-modal .modal-header h2 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-preview-item {
        height: 240px;
    }
    
    .modal-image-container {
        height: 200px;
    }
    
    .gallery-modal .modal-body {
        padding: 15px;
    }
    
    .gallery-modal .modal-section {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .gallery-modal .modal-section h3 {
        font-size: 15px;
    }
    
    .gallery-modal .modal-section h3 i {
        font-size: 16px;
    }
    
    .gallery-modal .modal-header {
        padding: 15px 20px;
    }
    
    .gallery-modal .modal-header h2 {
        font-size: 18px;
    }
    
    .gallery-modal .modal-footer {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .gallery-modal .modal-footer .btn {
        width: 100%;
        text-align: center;
    }
    
    .btn-close-modal {
        width: 100%;
    }
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    width: 100%;
}

.testimonial-item.active {
    opacity: 1;
    position: relative;
}

.testimonial-content {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: 20px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-author p {
    font-size: 14px;
    margin: 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .slider-content h1 {
        font-size: 40px;
    }
    
    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
    }
    
    .slider-content h1 {
        font-size: 32px;
    }
    
    .slider-content p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 16px;
    }
}

/* Form mesaj stilleri */
.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid #4CAF50;
    display: block;
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border: 1px solid #F44336;
    display: block;
}

/* Why Choose Us Section - About Page */
.why-choose-us-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.why-choose-us-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.why-choose-us-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.why-choose-us-section .container {
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background-color: #d7eeda;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.2);
}

.benefit-icon i {
    font-size: 32px;
    color: #4CAF50;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    transform: rotate(10deg);
}

.benefit-card h4 {
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 22px;
    color: #2e7d32;
}

.benefit-card p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .benefit-card {
        padding: 25px;
    }
}

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-section .section-header h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 15px;
}

.pricing-section .section-header p {
    color: var(--dark-gray);
    font-size: 18px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.pricing-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border-top: 5px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card.basic {
    border-color: #2e7d32;
}

.pricing-card.premium {
    border-color: #5e35b1;
}

.pricing-card.vip {
    border-color: #b7791f;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background-color: #5e35b1;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.basic .card-header h3 {
    color: #2e7d32;
}

.premium .card-header h3 {
    color: #5e35b1;
}

.vip .card-header h3 {
    color: #b7791f;
}

.subtitle {
    color: #666;
    font-size: 16px;
    font-style: italic;
}

.price-container {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.price-container::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1px;
    height: 40px;
    background-color: #dee2e6;
    transform: translateY(-50%);
}

.monthly-price, .yearly-price {
    width: 45%;
}

.amount {
    font-size: 24px;
    font-weight: 700;
    display: block;
    color: #333;
}

.period {
    font-size: 14px;
    color: #666;
}

.features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    line-height: 1.4;
}

.features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #e8f5e9;
    transition: all 0.3s ease;
}

.features li::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #2e7d32;
}

.basic .features li::before {
    background-color: #e8f5e9;
}

.basic .features li::after {
    color: #2e7d32;
}

.premium .features li::before {
    background-color: #ede7f6;
}

.premium .features li::after {
    color: #5e35b1;
}

.vip .features li::before {
    background-color: #fef3c7;
}

.vip .features li::after {
    color: #b7791f;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.basic .btn {
    background-color: #2e7d32;
    color: white;
}

.premium .btn {
    background-color: #5e35b1;
    color: white;
}

.vip .btn {
    background-color: #b7791f;
    color: white;
}

.pricing-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    .pricing-grid {
        gap: 20px;
        padding: 0 20px;
    }
    
    .pricing-card {
        padding: 30px;
    }
}

@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.premium {
        order: -1;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 30px 20px;
    }

    .amount {
        font-size: 20px;
    }

    .features li {
        font-size: 14px;
    }
    
    .price-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .price-container::after {
        width: 80%;
        height: 1px;
        left: 10%;
        top: 50%;
    }
    
    .monthly-price, .yearly-price {
        width: 100%;
    }
}

/* Responsive Tasarım İyileştirmeleri */

/* Tablet Boyutu (992px'e kadar) */
@media (max-width: 992px) {
    .container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    /* Hero Section */
    .hero-slider {
        height: 80vh;
    }
    
    .slider-content h1 {
        font-size: 40px;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Why Us Section */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Gallery Preview */
    .gallery-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    /* Header */
    header .container {
        padding: 15px 20px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .slider-content h1 {
        font-size: 32px;
    }
    
    .slider-content p {
        font-size: 16px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 30px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        order: 1;
    }
    
    .about-image {
        order: 2;
    }
    
    /* Why Us Section */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery Preview */
    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Testimonials */
    .testimonial-content p {
        font-size: 16px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Contact Form */
    .contact-form-container, 
    .contact-info {
        padding: 25px;
    }
}

/* Küçük Mobil Boyutu (576px'e kadar) */
@media (max-width: 576px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .slider-content {
        padding: 0 15px;
    }
    
    .slider-content h1 {
        font-size: 26px;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Service Cards */
    .service-card {
        margin-bottom: 20px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    /* Feature Cards */
    .feature-card {
        padding: 25px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    /* Benefit Cards */
    .benefit-card {
        padding: 25px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon i {
        font-size: 28px;
    }
    
    .benefit-card h4 {
        font-size: 18px;
    }
    
    /* Gallery Preview */
    .gallery-preview-item {
        height: 200px;
    }
    
    /* Contact Form */
    .contact-form-container, 
    .contact-info {
        padding: 25px;
        border-radius: 10px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Map Section */
    .map-container iframe {
        height: 300px;
    }
    
    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-preview-item {
        height: 220px;
    }
}

/* Çok Küçük Ekranlar (400px'e kadar) */
@media (max-width: 400px) {
    /* Hero Section */
    .hero-slider {
        height: 50vh;
        min-height: 350px;
    }
    
    .slider-content h1 {
        font-size: 22px;
    }
    
    .slider-content p {
        font-size: 14px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 22px;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Feature Cards */
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    /* Benefit Cards */
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 20px;
    }
}

/* Mobil Menü İyileştirmeleri */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-menu {
        display: none;
    }
    
    .mobile-menu.active {
        display: block;
    }
}

/* Datenschutz Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    margin: 3% auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 85%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    transform: translateY(-30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-green) 100%);
    color: white;
    padding: 20px 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 26px;
    font-weight: 600;
}

.modal-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 140px);
}

.modal-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.modal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.modal-intro {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-weight: 500;
}

.modal-section h3 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.modal-section h3 i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 18px;
}

.modal-text {
    line-height: 1.7;
    color: var(--dark-gray);
}

.modal-text p {
    margin-bottom: 15px;
}

.modal-text strong {
    color: var(--dark-green);
    font-weight: 600;
}

.modal-footer {
    padding: 15px 30px;
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: right;
}

.btn-close-modal {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-close-modal:hover {
    background-color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Custom scrollbar for modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

@media (max-width: 992px) {
    .modal-content {
        width: 90%;
        margin: 5% auto;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-intro {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header h2 {
        font-size: 22px;
    }
    
    .modal-section h3 {
        font-size: 18px;
    }
    
    .modal-body {
        max-height: calc(90vh - 120px);
    }
}

@media (max-width: 576px) {
    .modal-content {
        width: 98%;
        margin: 3% auto;
    }
    
    .modal-header {
        padding: 12px 15px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-section {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .modal-section h3 {
        font-size: 16px;
    }
    
    .modal-intro {
        font-size: 15px;
    }
    
    .modal-footer {
        padding: 12px 15px;
    }
    
    .btn-close-modal {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* Datenschutz Trigger Link Styles */
.datenschutz-trigger {
    cursor: pointer;
    position: relative;
}

.datenschutz-trigger:hover {
    text-decoration: underline;
}

.footer-bottom .datenschutz-trigger {
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.footer-bottom .datenschutz-trigger:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-bottom .datenschutz-trigger:hover:after {
    width: 100%;
}

/* Slider Navigation Styles */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 15px;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive Slider Navigation */
@media (max-width: 768px) {
    .slider-nav {
        bottom: 20px;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        margin: 0 10px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .slider-nav {
        bottom: 15px;
    }
    
    .slider-prev,
    .slider-next {
        width: 30px;
        height: 30px;
        margin: 0 8px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

