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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 0; /* Header fixed olduğu için padding */
}

.container {
    max-width: 1200px;
}

/* Başlık Stilleri */
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

/* Header Stilleri */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.top-header {
    background-color: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-buttons .btn {
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.header-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-info span {
    margin-right: 20px;
}

/* Mobil için header contact info düzeni */
@media (max-width: 767px) {
    .top-header .contact-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .top-header .contact-info span {
        flex: 1;
        margin-right: 0;
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .top-header .contact-info i {
        margin-right: 5px;
        font-size: 0.8rem;
    }
    
    .top-header {
        padding: 8px 0;
    }
    
    /* Footer contact info - kompakt ve şık */
    .contact-section .contact-info {
        display: block;
        text-align: left;
    }
    
    .contact-section .contact-info p {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        font-size: 0.95rem;
        text-align: left;
        line-height: 1.5;
        padding: 0;
        transition: all 0.3s ease;
    }
    
    .contact-section .contact-info p:hover {
        transform: translateX(2px);
    }
    
    .contact-section .contact-info i {
        margin-right: 15px;
        margin-top: 3px;
        color: #3498db;
        width: 20px;
        height: auto;
        font-size: 1.1rem;
        flex-shrink: 0;
        display: block;
        text-align: center;
        background: none;
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .contact-section .contact-info p span {
        flex: 1;
        display: block;
        text-align: left;
        color: #bdc3c7;
        line-height: 1.5;
    }
    
    .contact-section .contact-info p:hover i {
        color: white;
        transform: scale(1.1);
    }
    
    .contact-section .contact-info p:hover i {
        background: #3498db;
        color: white;
        transform: scale(1.1);
    }
}

.contact-info i {
    margin-right: 8px;
    color: #3498db;
}

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
}

.main-header {
    background-color: transparent;
    box-shadow: none;
    padding: 15px 0;
}

.logo {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #2c3e50 !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #3498db !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #3498db;
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 120px; /* Header yüksekliği için margin */
}

.hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #3498db, #2980b9);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Özellikler Bölümü */
.features-section {
    background-color: #f8f9fa;
}

.feature-card {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Hakkımızda Bölümü */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.about-title {
    font-size: 2.8rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 1.0rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.about-subtitle {
    font-size: 0.90rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 400;
}

.about-image {
    position: relative;
    transform: scale(1.1);
    margin: 20px;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-description,
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-image img {
        border-radius: 15px;
    }
}

/* Prensiplerimiz Bölümü */
.principles-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.principles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
}

.principles-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.principles-title {
    font-size: 2.8rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.principles-description {
    font-size: 1.15rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.principles-subtitle {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 400;
}

.principles-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.principles-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.principles-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.principle-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 10px;
    border-radius: 12px;
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.principle-card:hover::before {
    transform: scaleX(1);
}

.principle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.12);
    border-color: rgba(52, 152, 219, 0.2);
}

.principle-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.principle-icon i {
    font-size: 1.2rem;
    color: white;
}

.principle-card:hover .principle-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);
}

.principle-card h6 {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.1px;
}

.principles-image {
    margin-top: 0;
    margin-bottom: 30px;
    position: relative;
}

.principles-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.principles-image:hover img {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .principles-section {
        padding: 80px 0;
    }
    
    .principles-title {
        font-size: 2.2rem;
    }
    
    .principles-description,
    .principles-subtitle {
        font-size: 1rem;
    }
    
    .principle-card {
        padding: 15px 8px;
        margin-bottom: 15px;
        border-radius: 10px;
    }
    
    .principle-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 8px;
    }
    
    .principle-icon i {
        font-size: 1rem;
    }
    
    .principle-card h6 {
        font-size: 0.75rem;
    }
    
    .principles-image {
        margin-bottom: 20px;
    }
    
    .principles-image img {
        border-radius: 15px;
    }
}

/* Hizmetler Bölümü */
.services-section {
    padding: 80px 0;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Projeler Bölümü */
.projects-section {
    padding: 80px 0;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 152, 219, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    text-align: center;
    color: white;
}

.project-info h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 1rem;
}

.expand-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.project-card:hover .expand-icon {
    opacity: 1;
    transform: scale(1.2);
}

.project-image {
    cursor: pointer;
}

/* İletişim Bölümü */
.contact-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 80px 0 40px;
}

.footer-logo {
    text-align: left;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.contact-section h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 15px;
    color: #3498db;
    width: 20px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: white;
    color: #3498db;
    transform: translateY(-3px);
}

/* Modern Mobile Menu Icon */
.navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    background: rgba(52, 152, 219, 0.1);
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Animated hamburger to X */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero-section {
        margin-top: 100px; /* Mobilde daha az margin */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .feature-card,
    .service-card {
        margin-bottom: 30px;
    }
    
    .hero-buttons .btn {
        display: inline-block;
        margin-bottom: 10px;
        margin-right: 10px;
        width: auto;
        min-width: 140px;
        padding: 10px 20px;
    }
    
    .hero-buttons .btn:last-child {
        margin-right: 0;
    }
    
    .contact-info p {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-info i {
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .project-image {
        height: 200px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.btn, .feature-card, .service-card, .project-card {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Partners Logo Band */
.partners-section {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
}

.partners-track {
    display: inline-flex;
    animation: scroll 30s linear infinite;
    gap: 40px;
    align-items: center;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}

.partner-logo img {
    max-height: 60px;
    max-width: 120px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Floating Buttons */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-call {
    position: fixed;
    bottom: 20px;
    right: 90px;
    z-index: 1000;
}

.whatsapp-btn, .call-btn {
    display: flex;
    align-items: center;
    background: #25d366;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.call-btn {
    background: #007bff;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.3);
}

.whatsapp-btn:hover, .call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.call-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.whatsapp-btn i, .call-btn i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.whatsapp-text, .call-text {
    display: none;
}

/* Modal Özel Stilleri */
.modal-header.custom-header {
    background: linear-gradient(135deg, #2980b9, #1e6091) !important;
    border-bottom: none;
}

.modal .text-primary-custom {
    color: #2980b9 !important;
}

.modal .btn-primary-custom {
    background: linear-gradient(135deg, #2980b9, #1e6091);
    border: none;
    color: white;
}

.modal .btn-primary-custom:hover {
    background: linear-gradient(135deg, #1e6091, #1a5276);
    transform: translateY(-1px);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    color: white;
    text-decoration: none;
}

.scroll-top-btn i {
    font-size: 1.2rem;
}

/* Floating buttons responsive */
@media (min-width: 768px) {
    .whatsapp-text, .call-text {
        display: inline;
    }
    
    .floating-whatsapp {
        bottom: 30px;
        right: 200px;
    }
    
    .floating-call {
        bottom: 30px;
        right: 360px;
    }
}

@media (max-width: 767px) {
    /* Mobilde butonları footera yapışık yap */
    .floating-whatsapp {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 50%;
        width: 50%;
        z-index: 1000;
    }
    
    .floating-call {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 50%;
        width: 50%;
        z-index: 1000;
    }
    
    .whatsapp-btn, .call-btn {
        width: 100%;
        height: 60px;
        padding: 15px;
        border-radius: 0;
        justify-content: center;
        font-size: 1rem;
        font-weight: 600;
        border: none;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    
    .whatsapp-btn {
        border-radius: 0;
    }
    
    .call-btn {
        border-radius: 0;
        border-left: 1px solid rgba(255,255,255,0.2);
    }
    
    .whatsapp-btn i, .call-btn i {
        margin-right: 8px;
        font-size: 1.2rem;
    }
    
    .whatsapp-text, .call-text {
        display: inline;
        font-size: 0.9rem;
    }
    
    .header-buttons {
        display: none !important;
    }
    
    /* Scroll to top mobilde */
    .scroll-to-top {
        bottom: 80px;
        right: 15px;
    }
    
    .scroll-top-btn {
        width: 45px;
        height: 45px;
    }
    
    .scroll-top-btn i {
        font-size: 1.1rem;
    }
    
    /* Footer için padding ekle */
    .contact-section {
        padding-bottom: 80px !important;
    }
}

/* Map Modal Styles */
.map-container iframe {
    border-radius: 0;
}

.contact-details {
    background-color: #f8f9fa;
    height: 400px;
    overflow-y: auto;
}

.contact-item h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 0.85rem;
    line-height: 1.4;
}

.contact-item a {
    color: #007bff;
}

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

.quick-actions .btn {
    font-size: 0.85rem;
    padding: 8px 12px;
}

.modal-xl {
    max-width: 1200px;
}

@media (max-width: 768px) {
    .modal-xl {
        max-width: 95%;
        margin: 10px auto;
    }
    
    .contact-details {
        height: auto;
        max-height: 300px;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Quote Modal Styles */
.quote-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.info-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
    transition: transform 0.2s ease;
}

.info-card:hover {
    transform: translateX(5px);
}

.info-card h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.contact-card {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.contact-card h6 {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.contact-card p {
    margin: 0;
    font-size: 0.9rem;
}

.contact-card .small {
    font-size: 0.75rem !important;
    opacity: 0.8;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.form-check-input:checked {
    background-color: #3498db;
    border-color: #3498db;
}

.invalid-feedback {
    font-size: 0.8rem;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-lg {
        max-width: 95%;
        margin: 10px auto;
    }
    
    .quote-info {
        margin-top: 20px;
    }
    
    .info-card {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .contact-card {
        padding: 12px;
    }
}

/* Button Loading State */
.btn-loading {
    position: relative;
}

.btn-loading:disabled {
    opacity: 0.7;
}

.btn-loading .spinner-border {
    width: 1rem;
    height: 1rem;
    margin-right: 8px;
}

/* Map Button Styles */
.map-button .btn {
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}
