/* Global Styles */
:root {
    --primary-color: #283048;
    --secondary-color: #859398;
    --accent-color: #ffc107;
    --text-color: #333;
    --light-text: #fff;
    --background-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    transition: all 0.3s ease;
}

/* RTL Support for Persian */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .navbar-nav {
    padding-right: 0;
}

body.rtl .footer-contact i,
body.rtl .contact-info i {
    margin-right: 0;
    margin-left: 10px;
}

body.rtl .hero-buttons .btn {
    margin-right: 0;
    margin-left: 1rem;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
}

.brand-text {
    color: var(--light-text);
}

.brand-highlight {
    color: var(--accent-color);
}

.nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.nav-link.active {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-color);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* İLK PARAGRAF - İlk satır kalın */
.hero-first-paragraph::first-line {
    font-weight: bold;
    font-size: 1.3rem;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-color);
    padding: 0.8rem 2rem;
    font-weight: 500;
    margin-right: 1rem;
}

.btn-outline {
    border: 2px solid var(--accent-color);
    color: var(--text-color);
    padding: 0.8rem 2rem;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--light-text);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--background-color);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Location Section */
.location {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.location-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--light-text);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--light-text);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

/* RTL için WhatsApp konumu */
body.rtl .whatsapp-float {
    right: auto;
    left: 30px;
}

/* Map Container */
.map-container iframe {
    border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero-first-paragraph::first-line {
        font-size: 1.2rem;
    }
    
    /* RTL mobile */
    body.rtl .whatsapp-float {
        left: 20px;
    }
}

@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}