/* English version specific styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;900&display=swap');

:root {
    --gold-primary: #d4af37;
    --gold-secondary: #ffd700;
    --gold-light: #fff6d6;
    --dark-primary: #1a1a1a;
    --dark-secondary: #333333;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-primary);
    background-color: var(--white);
    line-height: 1.6;
    direction: ltr;
    text-align: left;
}

/* Adjust margins for LTR layout */
.brand i {
    margin-right: 10px;
    margin-left: 0;
}

.contact-buttons {
    margin-right: 20px;
    margin-left: 0;
}

.selected-language i:first-child {
    margin-right: 5px;
    margin-left: 0;
}

/* Language selector - Override for English version */
.language-selector {
    margin-left: 10px;
    margin-right: 0;
}

.language-dropdown {
    left: auto;
    right: 0;
}

/* Mobile navbar adjustments for English version */
@media (max-width: 768px) {
    .menu-toggle {
        display: none;
    }
    
    .brand {
        text-align: left;
    }
    
    /* Dil seçici için LTR ayarları */
    .language-selector {
        margin: 0 0 0 15px;
    }
    
    .selected-language i {
        margin: 0 5px;
    }
    
    .language-dropdown {
        left: 0;
        right: auto;
        transform: none;
    }
}

/* Fix text alignment for sections */
.section-title::after {
    left: 20%;
}

.about-content, .services-content, .contact-content {
    text-align: center;
}

.feature, .service-item, .contact-item {
    text-align: center;
}

/* Fix for service items */
.service-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    margin-top: 30px;
}

.service-item {
    flex: 1 1 300px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
    font-size: 3rem;
    color: var(--gold-primary);
}

/* Ensure map container works properly */
.map-container {
    width: 100%;
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
} 