:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #2c3e50; /* Dark Blue/Grey */
    --text-color: #333;
    --light-text: #fff;
    --background-dark: #1a1a1a;
    --background-light: #f4f4f4;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #111; /* Very dark background */
    color: #ccc;
    /* padding-bottom: 60px; Removed bottom padding */
}

/* Top Bar */
.top-bar {
    background-color: #000; /* Tam siyah */
    color: #bbb;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #222;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.welcome-text {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: #888;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

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

.contact-item a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #fff;
}

.top-bar .social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid #333;
    padding-left: 20px;
}

.top-bar .social-icons a {
    color: #bbb;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-left: 0; /* Reset margin */
}

.top-bar .social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Mobile responsive for topbar */
@media (max-width: 768px) {
    .top-bar {
        display: none; /* Mobilde topbar'ı gizle veya basitleştir */
    }
    
    .hidden-mobile {
        display: none;
    }
}

/* Navigation */
.navbar {
    background-color: #111; /* Dark background like in image */
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.logo h1 {
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.logo span {
    color: var(--primary-color);
    font-weight: 300;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links.active {
    display: flex;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--primary-color);
}

.lang-selector img {
    vertical-align: middle;
    margin-right: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh; /* Adjust as needed */
    overflow: hidden;
}

.slider {
    height: 100%;
}

.slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

.slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-container {
    position: absolute;
    bottom: 20%; /* Positioned above the bottom boxes */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: red; /* Red button as in image */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 1.1rem;
}

.cta-btn:hover {
    background-color: #cc0000;
}



/* Feature Boxes */
.features {
    position: relative;
    margin-top: -50px; /* Overlap with hero */
    z-index: 10;
    padding-bottom: 50px;
}

.features .container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 0; /* No gap between boxes */
}

.feature-box {
    flex: 1;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s;
    cursor: pointer;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-box.purple {
    background-color: var(--primary-color); /* Purple */
}

/* Language Splash Screen */
#language-splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s ease;
}

.language-modal {
    text-align: center;
    color: #fff;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    animation: fadeIn 0.5s ease-out;
}

.language-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.language-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.language-welcome {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ccc;
}

.language-instruction {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
    font-style: italic;
}

.gtranslate_wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gtranslate_wrapper a {
    transition: transform 0.3s;
}

.gtranslate_wrapper a:hover {
    transform: scale(1.2);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* GTranslate in Navbar */
.navbar .gtranslate_wrapper {
    display: flex !important;
    gap: 5px !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

.navbar .gtranslate_wrapper a {
    width: 24px !important;
    height: 24px !important;
    transition: transform 0.2s !important;
}

.navbar .gtranslate_wrapper a:hover {
    transform: scale(1.1) !important;
}

.navbar .gtranslate_wrapper img {
    width: 24px !important;
    height: 24px !important;
    object-fit: cover !important;
    border-radius: 50% !important; /* Circular flags in navbar */
}

/* Skip Button */
#close-splash {
    margin-top: 20px;
    background: transparent;
    border: 1px solid #444;
    color: #888;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

#close-splash:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20b858;
    color: #fff;
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.4);
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.85); /* Dark overlay */
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

/* Ensure Flatpickr is above modal */
.flatpickr-calendar {
    z-index: 10000 !important;
}

.modal-content {
    background-color: #1a1a1a; /* Dark theme background */
    color: #fff; /* Light text */
    margin: auto;
    padding: 40px;
    border: 1px solid #333;
    width: 90%; 
    max-width: 450px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    animation: modalFadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-30px) scale(0.95);}
    to {opacity: 1; transform: translateY(0) scale(1);}
}

.close-modal {
    color: #666;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-header p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ccc;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    background-color: #222;
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    border-color: var(--primary-color);
    background-color: #2a2a2a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder {
    color: #555;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Success Screen Specifics */
.success-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); }
}

#successScreen h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

#successScreen p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.feature-box.dark {
    background-color: #222; /* Dark Grey */
}

/* About Section */
.about {
    background-color: transparent; /* Match body background */
    padding: 80px 0;
    color: #ccc;
}

.about .container {
    display: flex;
    align-items: center; /* Center vertically */
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 5px solid #222; /* Slight border frame */
}

.about-content {
    flex: 1;
}

.about-content .section-header {
    border-left: 5px solid var(--primary-color); /* Purple line */
    padding-left: 15px;
    margin-bottom: 30px;
}

.about-content .sub-title {
    display: block;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.about-content .text-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
    color: #bbb;
}

.about-content .divider {
    height: 1px;
    background-color: #444;
    width: 100%;
    margin-top: 30px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-card .icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-card p, .contact-card a {
    color: #bbb;
    text-decoration: none;
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.contact-form-container {
    background-color: #222;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #333;
}

.contact-form-container h3 {
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
}

.btn-submit:hover {
    background-color: #aa8c2c;
}

.map-container iframe {
    border-radius: 10px;
    filter: grayscale(100%) invert(92%) contrast(83%); /* Dark map style */
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 20px;
    }
}

/* Footer */
.footer {
    background-color: transparent; /* Same as body */
    padding: 60px 0 0; /* Remove bottom padding */
    border-top: 1px solid #222;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-color);
    padding-left: 10px;
    text-transform: capitalize;
}

.working-hours .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #222;
    color: #888;
    font-size: 0.9rem;
}

.working-hours .hours-row span:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

.phone-link {
    display: block;
    color: var(--primary-color);
    font-size: 1.4rem;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.phone-link:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-btns {
    display: flex;
    gap: 10px;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.3s;
    text-align: center;
    flex: 1;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 20px; /* Add bottom padding to footer-bottom instead */
    border-top: 1px solid #222;
}

.footer-bottom p {
    color: #fff;
    letter-spacing: 2px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 2000;
    padding: 10px 0;
    border-top: 1px solid #333;
}

.mobile-bottom-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    font-size: 0.7rem;
    gap: 5px;
    transition: color 0.3s;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
}

.mobile-bottom-nav .nav-item.active, 
.mobile-bottom-nav .nav-item:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }

    /* Adjust navbar for mobile */
    .navbar {
        padding: 15px 0;
    }

    .navbar .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    /* Show bottom nav on mobile */
    .mobile-bottom-nav {
        display: flex;
    }

    /* Adjust main content padding for bottom nav */
    body {
        padding-bottom: 0; /* Remove padding to eliminate gap */
        margin-bottom: 60px; /* Use margin instead if needed, or rely on nav z-index */
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        color: #fff;
        cursor: pointer;
        z-index: 1002; /* Ensure clickable */
        position: relative;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #111; /* Dark background */
        padding: 20px;
        gap: 15px;
        border-top: 1px solid #222;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        z-index: 1001; /* Ensure visible */
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-links li {
        text-align: center;
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 10px;
        border-bottom: 1px solid #222;
    }

    /* Adjust navbar container for absolute positioning context */
    .navbar .container {
        position: relative;
    }

    /* Slide Content Adjustments */
    .hero {
        height: 100vw; /* Make it square-ish or match width for visibility */
        max-height: 600px;
    }

    .slide {
        background-size: contain; /* Show full image without cropping */
        background-repeat: no-repeat;
        background-position: center top; /* Align to top to remove gap */
        background-color: #000; /* Fill empty space with black */
        align-items: center; /* Center content vertically */
        justify-content: center;
        padding-bottom: 0;
    }

    .slide-content {
        margin-top: -20%; /* Move content up to overlap with image */
    }

    .slide::before {
        background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)); /* Stronger gradient */
    }

    .slide-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .cta-container {
        bottom: 25%; /* Move button up */
        width: 100%;
        text-align: center;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }



    /* Features Grid for Mobile */
    .features {
        margin-top: -30px; /* Pull up slightly */
        z-index: 100;
        position: relative;
    }

    .features .container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .feature-box {
        margin-bottom: 0;
        border-radius: 15px; /* More rounded */
        padding: 25px 20px;
        display: flex;
        align-items: center;
        text-align: left;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        background-color: rgba(212, 175, 55, 0.9); /* Slight transparency on gold */
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255,255,255,0.1);
    }

    .feature-box.dark {
        background-color: rgba(34, 34, 34, 0.95);
    }

    .feature-box i {
        font-size: 2rem;
        margin-bottom: 0;
        margin-right: 20px;
        width: 40px; /* Fixed width for alignment */
        text-align: center;
    }

    .feature-box h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .feature-box p {
        font-size: 0.9rem;
        color: #ddd;
        margin: 0;
    }

    /* About Section Adjustments */
    .about {
        padding: 50px 0;
    }

    .about .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }

    .about-image img {
        border-width: 3px;
        border-radius: 10px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content .section-header {
        border-left: none;
        border-bottom: 3px solid var(--primary-color);
        padding-left: 0;
        padding-bottom: 10px;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    /* Hide desktop nav links */
    .nav-links {
        display: none;
        position: fixed;
        top: 60px; /* Height of navbar */
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid #333;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .floating-whatsapp {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}