/* ==========================================================================
   DEBAOĞLU NAKLİYAT - MAIN STYLESHEET
   Brand Colors: Black, Orange (#FF6B00), Anthracite (#1A1D20), Light Gray (#F8F9FA)
   ========================================================================== */

:root {
    --primary-orange: #FF6B00;
    --primary-orange-hover: #E05E00;
    --dark-black: #0F1113;
    --anthracite: #1E2227;
    --anthracite-light: #2A2F35;
    --light-bg: #F4F6F8;
    --white: #FFFFFF;
    --text-dark: #212529;
    --text-muted: #6C757D;
    --border-color: #E9ECEF;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 35px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 90px 0;
}

.dark-bg {
    background-color: var(--anthracite);
    color: var(--white);
}

/* Typography & Section Titles */
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.w-100 { width: 100%; }

.section-tag {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.section-tag.highlight {
    background: rgba(255, 107, 0, 0.15);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--dark-black);
}

.dark-bg .section-title {
    color: var(--white);
}

.section-desc, .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dark-bg .section-desc {
    color: #A0AEC0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-black);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Top Info Bar
   -------------------------------------------------------------------------- */
.top-bar {
    background-color: var(--dark-black);
    color: #A0AEC0;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span, .top-contact a {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-info i, .top-contact i {
    color: var(--primary-orange);
}

.top-contact a:hover {
    color: var(--white);
}

/* --------------------------------------------------------------------------
   Header & Sticky Navigation
   -------------------------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-black);
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-orange);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-orange);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-black);
    border-radius: 2px;
    transition: var(--transition);
}

/* --------------------------------------------------------------------------
   1. Hero Slider
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    min-height: 550px;
}

.hero-slider, .swiper-slide {
    height: 100%;
    width: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.swiper-slide .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(15,17,19,0.85) 0%, rgba(15,17,19,0.4) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 750px;
}

.slide-content .badge {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-bottom: 15px;
}

.slide-content h1, .slide-content h2 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #E2E8F0;
}

.slide-btns {
    display: flex;
    gap: 15px;
}

/* Swiper Custom Navigation Controls */
.swiper-button-next, .swiper-button-prev {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary-orange);
}

.swiper-pagination-bullet-active {
    background: var(--primary-orange) !important;
    width: 24px;
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   2. Fast Trust Bar
   -------------------------------------------------------------------------- */
.trust-bar {
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding-bottom: 30px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--primary-orange);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.trust-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-black);
}

.trust-info p {
    font-size: 0.825rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   3. Kurumsal Section
   -------------------------------------------------------------------------- */
.kurumsal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.kurumsal-img-box {
    position: relative;
}

.kurumsal-img-box .main-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    object-fit: cover;
    height: 450px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
}

.kurumsal-content .description {
    font-size: 1.05rem;
    margin: 20px 0;
    color: var(--text-dark);
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}

.adv-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.adv-item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   4. Hizmetlerimiz Section
   -------------------------------------------------------------------------- */
.hizmetler-section {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(0,0,0,0.06);
    transition: var(--transition);
}

.service-card:hover .card-number {
    color: rgba(255, 107, 0, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    color: var(--primary-orange);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .card-icon {
    background: var(--primary-orange);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-black);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card:hover .card-link {
    color: var(--primary-orange);
}

/* --------------------------------------------------------------------------
   5. Neden Debaoğlu Nakliyat?
   -------------------------------------------------------------------------- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.why-card {
    background: var(--anthracite-light);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.why-card:hover {
    border-bottom-color: var(--primary-orange);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.2rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.875rem;
    color: #A0AEC0;
}

/* --------------------------------------------------------------------------
   6. Statistics / Counter
   -------------------------------------------------------------------------- */
.counter-section {
    background: var(--primary-orange);
    color: var(--white);
    padding: 50px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.counter-number, .counter-static {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* --------------------------------------------------------------------------
   7. Gallery Section (Masonry Grid)
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
}

.item-tall {
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 17, 19, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.8rem;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   8. Call To Action (CTA) Section
   -------------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(rgba(15, 17, 19, 0.9), rgba(15, 17, 19, 0.9)), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1920&q=80') center/cover;
    color: var(--white);
    padding: 70px 0;
}

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 30px;
    color: #CBD5E0;
}

/* --------------------------------------------------------------------------
   9. Contact Section & Form
   -------------------------------------------------------------------------- */
.contact-section {
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 40px;
}

.info-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-details a, .info-details p {
    font-weight: 700;
    color: var(--dark-black);
    font-size: 1rem;
}

.info-details a:hover {
    color: var(--primary-orange);
}

.map-container {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-black);
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: #FAFAFA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.form-alert {
    margin-top: 15px;
    padding: 12px;
    border-radius: var(--radius-sm);
    display: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.form-alert.success {
    display: block;
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

/* --------------------------------------------------------------------------
   Floating WhatsApp Button
   -------------------------------------------------------------------------- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
}

.whatsapp-btn .tooltip-text {
    position: absolute;
    right: 70px;
    background: var(--dark-black);
    color: var(--white);
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-btn:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* --------------------------------------------------------------------------
   Footer Section
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--dark-black);
    color: #A0AEC0;
    padding: 70px 0 20px;
    border-top: 3px solid var(--primary-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.brand-col p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: var(--anthracite);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--primary-orange);
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--primary-orange);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary-orange);
    margin-top: 3px;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
}

/* ==========================================================================
   Responsive Design / Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    .services-grid, .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .slide-content h1, .slide-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active { left: 0; }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .header-btn { display: none; }

    .kurumsal-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .item-tall, .item-wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .hero-section { height: 75vh; }
    
    .slide-content h1, .slide-content h2 { font-size: 2rem; }

    .slide-btns { flex-direction: column; }
    
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
    .services-grid, .why-us-grid { grid-template-columns: 1fr; }
    .counter-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   DEBAOĞLU NAKLİYAT - MAIN STYLESHEET
   ========================================================================== */

:root {
    --primary-orange: #FF6B00;
    --primary-orange-hover: #E05E00;
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #1EBE5A;
    --dark-black: #0F1113;
    --anthracite: #1E2227;
    --anthracite-light: #2A2F35;
    --light-bg: #F4F6F8;
    --white: #FFFFFF;
    --text-dark: #212529;
    --text-muted: #6C757D;
    --border-color: #E9ECEF;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 35px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-dark); background-color: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; }
.dark-bg { background-color: var(--anthracite); color: var(--white); }

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.w-100 { width: 100%; }

.section-tag {
    display: inline-block; color: var(--primary-orange); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.section-tag.highlight { background: rgba(255, 107, 0, 0.15); padding: 4px 12px; border-radius: var(--radius-sm); }
.section-title { font-size: 2.25rem; font-weight: 800; line-height: 1.2; margin-bottom: 12px; color: var(--dark-black); }
.dark-bg .section-title { color: var(--white); }
.section-desc, .section-subtitle { font-size: 1.1rem; color: var(--text-muted); font-weight: 500; }
.dark-bg .section-desc { color: #A0AEC0; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; font-weight: 700; font-size: 0.95rem; border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent; transition: var(--transition);
}
.btn-primary { background-color: var(--primary-orange); color: var(--white); }
.btn-primary:hover { background-color: var(--primary-orange-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3); }

.btn-whatsapp { background-color: var(--whatsapp-green); color: var(--white); }
.btn-whatsapp:hover { background-color: var(--whatsapp-green-hover); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); }

.btn-outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background-color: var(--white); color: var(--dark-black); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* Top Info Bar */
.top-bar { background-color: var(--dark-black); color: #A0AEC0; font-size: 0.85rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-info span, .top-contact a { margin-right: 20px; display: inline-flex; align-items: center; gap: 6px; }
.top-info i, .top-contact i { color: var(--primary-orange); }
.top-contact a:hover { color: var(--white); }

/* Header & Navigation */
.header { position: sticky; top: 0; left: 0; width: 100%; background-color: var(--white); z-index: 1000; box-shadow: var(--shadow-sm); transition: var(--transition); }
.header.scrolled { padding: 5px 0; box-shadow: var(--shadow-md); background-color: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); }
.header-container { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; padding-bottom: 12px; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.nav-list { display: flex; gap: 30px; }
.nav-link { font-weight: 600; color: var(--dark-black); font-size: 0.95rem; position: relative; padding: 5px 0; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2px; background-color: var(--primary-orange); transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary-orange); }

/* Animated Hamburger to X Button */
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 5px; z-index: 1001; }
.hamburger .bar { width: 26px; height: 3px; background-color: var(--dark-black); border-radius: 2px; transition: all 0.3s ease-in-out; }

.hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Hero Slider */
.hero-section { position: relative; width: 100%; height: calc(100vh - 100px); min-height: 550px; }
.hero-slider, .swiper-slide { height: 100%; width: 100%; }
.swiper-slide { background-size: cover; background-position: center; position: relative; display: flex; align-items: center; }
.swiper-slide .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(15,17,19,0.85) 0%, rgba(15,17,19,0.4) 100%); z-index: 1; }
.slide-content { position: relative; z-index: 2; color: var(--white); max-width: 750px; }
.slide-content .badge { background-color: var(--primary-orange); color: var(--white); padding: 6px 14px; font-size: 0.85rem; font-weight: 700; border-radius: var(--radius-sm); display: inline-block; margin-bottom: 15px; }
.slide-content h1, .slide-content h2 { font-size: 3.25rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.slide-content p { font-size: 1.25rem; margin-bottom: 30px; color: #E2E8F0; }
.slide-btns { display: flex; gap: 15px; }

.swiper-button-next, .swiper-button-prev { color: var(--white); background: rgba(255, 255, 255, 0.1); width: 50px; height: 50px; border-radius: 50%; backdrop-filter: blur(5px); transition: var(--transition); }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 18px; font-weight: bold; }
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--primary-orange); }
.swiper-pagination-bullet-active { background: var(--primary-orange) !important; width: 24px; border-radius: 4px; }

/* Fast Trust Bar */
.trust-bar { background: var(--white); margin-top: -50px; position: relative; z-index: 10; padding-bottom: 30px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; background: var(--white); padding: 25px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 1px solid var(--border-color); }
.trust-item { display: flex; align-items: center; gap: 15px; }
.trust-icon { width: 50px; height: 50px; background-color: rgba(255, 107, 0, 0.1); color: var(--primary-orange); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.trust-info h3 { font-size: 1rem; font-weight: 700; color: var(--dark-black); }
.trust-info p { font-size: 0.825rem; color: var(--text-muted); }

/* Kurumsal */
.kurumsal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.kurumsal-img-box { position: relative; }
.kurumsal-img-box .main-img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; height: 450px; }
.experience-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary-orange); color: var(--white); padding: 20px; border-radius: var(--radius-md); display: flex; flex-direction: column; align-items: center; box-shadow: var(--shadow-md); }
.experience-badge .number { font-size: 2rem; font-weight: 800; line-height: 1; }
.experience-badge .text { font-size: 0.85rem; font-weight: 600; }
.kurumsal-content .description { font-size: 1.05rem; margin: 20px 0; color: var(--text-dark); }
.advantages-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 10px; }
.adv-item { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.adv-item i { color: var(--primary-orange); font-size: 1.1rem; }

/* Hizmetlerimiz */
.hizmetler-section { background-color: var(--light-bg); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 40px; }
.service-card { background: var(--white); padding: 35px 25px; border-radius: var(--radius-md); border: 1px solid var(--border-color); position: relative; transition: var(--transition); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--primary-orange); }
.card-number { position: absolute; top: 20px; right: 25px; font-size: 1.8rem; font-weight: 800; color: rgba(0,0,0,0.06); transition: var(--transition); }
.service-card:hover .card-number { color: rgba(255, 107, 0, 0.2); }
.card-icon { width: 60px; height: 60px; background: var(--light-bg); color: var(--primary-orange); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; transition: var(--transition); }
.service-card:hover .card-icon { background: var(--primary-orange); color: var(--white); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; flex-grow: 1; }
.card-link { font-size: 0.9rem; font-weight: 700; color: var(--dark-black); display: inline-flex; align-items: center; gap: 8px; }
.service-card:hover .card-link { color: var(--primary-orange); }

/* Neden Biz */
.why-us-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 40px; }
.why-card { background: var(--anthracite-light); padding: 30px 20px; border-radius: var(--radius-md); text-align: center; border-bottom: 3px solid transparent; transition: var(--transition); }
.why-card:hover { border-bottom-color: var(--primary-orange); transform: translateY(-5px); }
.why-icon { font-size: 2.2rem; color: var(--primary-orange); margin-bottom: 15px; }
.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.why-card p { font-size: 0.875rem; color: #A0AEC0; }

/* Counter */
.counter-section { background: var(--primary-orange); color: var(--white); padding: 50px 0; }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.counter-number, .counter-static { font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 5px; }
.counter-label { font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

/* Galeri */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 20px; margin-top: 40px; }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; display: block; }
.item-tall { grid-row: span 2; }
.item-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 17, 19, 0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); color: var(--white); font-size: 1.8rem; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* CTA */
.cta-section { background: linear-gradient(rgba(15, 17, 19, 0.9), rgba(15, 17, 19, 0.9)), url('../images/debaoglu.png') center/cover; color: var(--white); padding: 70px 0; }
.cta-section h2 { font-size: 2.25rem; font-weight: 800; margin-bottom: 15px; }
.cta-section p { font-size: 1.1rem; max-width: 650px; margin: 0 auto 30px; color: #CBD5E0; }

/* Contact Section with Equal Height Map (No Form) */
.contact-section { background-color: var(--light-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; align-items: stretch; }

.contact-info-wrapper { display: flex; flex-direction: column; gap: 15px; justify-content: space-between; }
.info-card { background: var(--white); padding: 22px 25px; border-radius: var(--radius-md); display: flex; align-items: center; gap: 20px; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.info-icon { width: 50px; height: 50px; background: rgba(255, 107, 0, 0.1); color: var(--primary-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.info-details h4 { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.info-details a, .info-details p { font-weight: 700; color: var(--dark-black); font-size: 1.05rem; }
.info-details a:hover { color: var(--primary-orange); }

.contact-map-wrapper { height: 100%; min-height: 380px; }
.map-container-full { width: 100%; height: 100%; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border-color); }

/* Floating WhatsApp Button */
.whatsapp-btn { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: var(--whatsapp-green); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 999; transition: var(--transition); }
.whatsapp-btn:hover { transform: scale(1.1); background-color: var(--whatsapp-green-hover); }
.whatsapp-btn .tooltip-text { position: absolute; right: 70px; background: var(--dark-black); color: var(--white); padding: 6px 12px; font-size: 0.8rem; border-radius: 4px; white-space: nowrap; opacity: 0; visibility: hidden; transition: var(--transition); pointer-events: none; }
.whatsapp-btn:hover .tooltip-text { opacity: 1; visibility: visible; }

/* Footer */
.footer { background-color: var(--dark-black); color: #A0AEC0; padding: 70px 0 20px; border-top: 3px solid var(--primary-orange); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-logo { height: 45px; margin-bottom: 20px; }
.brand-col p { font-size: 0.9rem; margin-bottom: 20px; max-width: 320px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 38px; height: 38px; background: var(--anthracite); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.social-links a:hover { background: var(--primary-orange); }
.footer-title { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; position: relative; padding-bottom: 8px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary-orange); }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--primary-orange); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 15px; font-size: 0.9rem; }
.footer-contact i { color: var(--primary-orange); margin-top: 3px; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 25px; text-align: center; font-size: 0.85rem; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .services-grid, .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .slide-content h1, .slide-content h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .hamburger { display: flex; }
    .nav-menu { position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px); background: var(--white); flex-direction: column; padding: 40px 20px; transition: var(--transition); box-shadow: var(--shadow-md); }
    .nav-menu.active { left: 0; }
    .nav-list { flex-direction: column; align-items: center; gap: 25px; }
    .header-btn { display: none; }
    .kurumsal-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .contact-map-wrapper { height: 350px; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
    .item-tall, .item-wide { grid-row: span 1; grid-column: span 1; }
    .hero-section { height: 75vh; }
    .slide-content h1, .slide-content h2 { font-size: 2rem; }
    .slide-btns { flex-direction: column; }
}

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
    .services-grid, .why-us-grid { grid-template-columns: 1fr; }
    .counter-grid { grid-template-columns: 1fr; }
}