/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #06b6d4;
    --accent-color: #f97316;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

html {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

@media (max-width: 1400px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* Force all elements to take full width */
* {
    box-sizing: border-box;
}

html, body {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

section, .hero, .hero-slider, .hero-slide, .slide-bg {
    width: 100% !important;
    max-width: 100% !important;
}

.container {
    width: 100% !important;
    max-width: 100% !important;
}

.header, .navbar {
    width: 100% !important;
    max-width: 100% !important;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1002;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.logo-link:hover {
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-image {
    width: 180px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0.5rem;
}

    .logo-slogan {
        font-size: 0.85rem;
        color: var(--text-light);
        font-weight: 500;
        white-space: nowrap;
        line-height: 1.2;
    }


.slogan {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
    margin-left: -1.2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    padding: 0.5rem 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Preserve line breaks for translations */
.preserve-breaks {
    white-space: pre-line;
}

/* Language Switcher - Dropdown Style */
.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 10001;
}

.lang-current {
    padding: 0.15rem 0.35rem;
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.current-flag-img {
    width: 28px;
    height: 21px;
    border-radius: 2px;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.lang-current:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.15);
}

.lang-arrow {
    font-size: 0.45rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.language-switcher.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.2rem);
    right: 0;
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.15rem;
    display: none;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 50px;
    width: auto;
    z-index: 10000;
    pointer-events: auto;
}

.language-switcher.active .lang-dropdown {
    display: flex;
}

.lang-btn {
    padding: 0.1rem 0.15rem;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 3px;
    font-size: 0.65rem;
    transition: background-color 0.2s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: auto;
    position: relative;
    z-index: 10002;
    min-height: 28px;
    min-width: 28px;
}

.lang-flag-img {
    width: 28px;
    height: 21px;
    border-radius: 2px;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.lang-btn:hover {
    background: rgba(30, 58, 138, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hamburger Animasyonu */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    z-index: 4;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 4;
}

/* Header Nav CTA Button */
.nav-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.nav-cta .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-cta .btn i {
    font-size: 0.9rem;
}

/* Teklif Al butonunu ortala */
.btn-quote,
.btn-quote * {
    justify-content: center !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
}

.btn-quote i {
    margin-right: 0.5rem;
}

.btn-quote span {
    flex: 1;
    text-align: center;
}

/* Teklif sayfası submit butonu ortala */
.simple-quote-form .btn {
    justify-content: center !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
}

.simple-quote-form .btn i {
    margin-right: 0.5rem;
}

/* Footer'daki partner item'ları düzelt */
.footer-partners-section .partner-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.footer-partners-section .partner-item a:hover {
    color: var(--primary-color);
}

.footer-partners-section .partner-item small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.partner-visual {
    width: 40px;
    height: 30px;
    object-fit: contain;
    border-radius: 4px;
    margin-right: 0.5rem;
}

.nav-quote-btn {
    margin-left: 1rem;
}

.nav-quote-btn .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-service {
    background: var(--white);
    color: #f97316;
    border: 2px solid #f97316;
}

.btn-service:hover {
    background: #f97316;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    width: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(6, 182, 212, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    color: var(--white);
    max-width: 800px;
    padding-top: 100px;
    padding-bottom: 2rem;
}

.hero-spacer {
    height: 4rem;
}

.btn-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-actions {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

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

.highlight {
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 1;
    color: white;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}


/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

@media (max-width: 768px) {
    .slider-dots {
        bottom: 4rem;
        gap: 0.5rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}



/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2rem;
}

.about-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}


.stat-card {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.6rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* About Slider */
.about-slider {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
}

.about-slide.active {
    opacity: 1;
    visibility: visible;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.about-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-dot.active,
.about-dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Vision Values Section */
.vision-values {
    padding: 4rem 0;
    background: var(--bg-light);
}

.vision-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.vision-card {
    background: var(--white);
    padding: 1.5rem 1.2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.vision-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
}

.vision-card p {
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.vision-card ul {
    list-style: none;
    text-align: left;
}

.vision-card li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.vision-card li i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Mission Section */
.mission-section {
    padding: 4rem 0;
    background: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

/* Mission Slider */
.mission-slider {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mission-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
}

.mission-slide.active {
    opacity: 1;
    visibility: visible;
}

.mission-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission slider ikinci fotoğraf için özel ayar - daha uzaktan görünsün */
.mission-slide:nth-child(2) img {
    object-fit: contain;
    object-position: center;
    background: #f8fafc;
}

.mission-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.mission-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mission-dot.active,
.mission-dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Services Preview Section */
.services-preview {
    padding: 6rem 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-image img[src*="minivan"] {
    object-position: center 30%;
}

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

.service-content {
    padding: 1.5rem;
}

.gumruk-content .service-content {
    padding: 1.2rem;
}

.service-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.gumruk-content .service-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.gumruk-content .service-content p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-content ul {
    list-style: none;
}

.service-content li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.service-content li i {
    color: var(--secondary-color);
    font-size: 0.7rem;
}

/* SSS Page Styles */
.sss-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.sss-hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.sss-hero-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.sss-content {
    padding: 4rem 0;
    background: var(--white);
}

.sss-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.sss-intro h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.sss-intro p {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    transition: var(--transition);
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer {
    padding: 0 1.5rem;
}

.faq-answer p {
    padding: 1.2rem 0;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

.faq-answer ul {
    padding: 0 0 1.2rem 0;
    margin: 0;
}

.faq-answer li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    line-height: 1.5;
    font-size: 0.9rem;
}

.faq-answer li i {
    color: var(--secondary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.sss-cta {
    padding: 3rem 0;
    background: var(--bg-light);
    text-align: center;
}

.sss-cta .cta-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.sss-cta .cta-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
}

.cta-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sss-cta .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
}

.sss-cta .btn-secondary {
    background: white;
    color: #f97316 !important;
    border: 2px solid #f97316;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
}

.sss-cta .btn-secondary span {
    color: #f97316 !important;
}

.sss-cta .btn-secondary i {
    color: #f97316 !important;
}

.sss-cta .btn-secondary:hover {
    background: #f97316;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.sss-cta .btn-secondary:hover span,
.sss-cta .btn-secondary:hover i {
    color: white !important;
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: var(--transition);
    margin-left: 0.3rem;
    opacity: 0.9;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid #f1f5f9;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Page Styles */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

/* Gümrük Hizmetleri özel background */
.gumruk-hero .hero-bg {
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Gümrük sayfası hero section yüksekliği - Taşıma sayfasıyla aynı */
.customs-hero {
    height: 60vh;
    min-height: 500px;
}

.customs-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(6, 182, 212, 0.6));
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 3;
}

.page-hero .hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero .hero-content p {
    font-size: 1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-content {
    padding: 4rem 0;
    background: var(--white);
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
}

.gumruk-content {
    padding: 4rem 0;
    background: var(--white);
}

.gumruk-content .services-grid {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 25%, #2563eb 75%, #3b82f6 100%);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    margin: 2.5rem 0;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.3);
}

.gumruk-content .service-card {
    border-top: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    background: var(--white);
    margin-bottom: 1.5rem;
}

.content-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-intro h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.content-intro p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-section {
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.services-section h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    text-align: center;
}

.services-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-highlight {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-top: 4rem;
    text-align: center;
}

.transparent-service {
    padding: 2rem;
    margin-top: 2.5rem;
}

.transparent-service .highlight-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.transparent-service .highlight-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

.highlight-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.highlight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.delivery-guarantee {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    text-align: center;
}

.guarantee-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.page-cta {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.gumruk-cta {
    padding: 2.5rem 0;
    background: var(--primary-color);
}

.gumruk-cta .cta-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white !important;
    margin-bottom: 0.6rem;
    text-shadow: none;
}

.gumruk-cta .cta-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gumruk-cta .cta-buttons .btn {
    color: var(--primary-color);
    background: white;
    border: 2px solid white;
}

.gumruk-cta .cta-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.page-cta .cta-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
}

.page-cta .cta-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-cta .btn-secondary {
    background: white;
    color: #f97316 !important;
    border: 2px solid #f97316;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
}

.page-cta .btn-secondary span,
.page-cta .btn-secondary i {
    color: #f97316 !important;
}

.page-cta .btn-secondary:hover {
    background: #f97316;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.page-cta .btn-secondary:hover span,
.page-cta .btn-secondary:hover i {
    color: white !important;
}

/* Solutions Timeline */
.solutions-timeline {
    max-width: 1000px;
    margin: 0 auto 3rem;
    position: relative;
}

.solutions-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

/* Featured Minivan Item */
.timeline-item.minivan-featured {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    color: #1e40af;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.timeline-item.minivan-featured .timeline-image {
    flex: 0 0 300px;
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.timeline-item.minivan-featured .timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-item.minivan-featured .timeline-content {
    flex: 1;
}

.timeline-item.minivan-featured h3 {
    color: #1e40af !important;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.timeline-item.minivan-featured p {
    color: #1e40af !important;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

/* Mobile Responsive for Featured Minivan */
@media (max-width: 768px) {
    .timeline-item.minivan-featured {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .timeline-item.minivan-featured .timeline-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        height: 180px;
        margin: 0 auto;
    }
    
    .timeline-item.minivan-featured h3 {
        font-size: 1.1rem;
    }
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 3px solid var(--secondary-color);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.solution-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--secondary-color);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* Kamu Aydınlatma Page Styles */
.document-info {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.disclosure-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclosure-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border-left: 3px solid var(--primary-color);
}

.disclosure-section:last-child {
    margin-bottom: 0;
}

.disclosure-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclosure-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.disclosure-section h3::before {
    content: '';
    width: 3px;
    height: 18px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.disclosure-section p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.company-details {
    background: var(--bg-light);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    margin-top: 1.2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.9rem;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.disclosure-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 2.5rem;
}

.footer-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.signature {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.signature p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
}

/* Sade Kamu Aydınlatma Styles */
.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.detail-item:last-child {
    border-bottom: none;
}

/* Kariyer Bölümü */
.career-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1565C0 100%);
    position: relative;
    overflow: hidden;
}

.career-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.career-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.career-text h2 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.career-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.career-text p:first-of-type {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.career-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.career-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.career-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.career-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Career Slider */
.career-slider {
    position: relative;
    width: 100%;
}

.career-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.career-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.career-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.career-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.career-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.career-dot.active {
    background: white;
    transform: scale(1.2);
}

.career-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.career-badge-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    transition: transform 0.3s ease;
    z-index: 10;
}

.career-badge-link:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.career-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.5);
    animation: pulse 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.career-badge:hover {
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.7);
    background: #ff9800;
}

.career-badge i {
    font-size: 1.5rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn-accent {
    background: var(--accent-color);
    color: var(--white);
    border: none;
}

.btn-accent:hover {
    background: #ff9800;
    transform: translateY(-2px);
}

.career-cta-btn {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.career-cta-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.6);
}

.career-cta-btn i {
    font-size: 1.1rem;
}

/* İletişim Bölümü */
.contact-section {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 50%, #d1d5db 100%);
    padding: 1.8rem 0;
}

.contact-section .section-header h2 {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.contact-section .section-header p {
    color: #4b5563;
    margin-bottom: 0.6rem;
    font-size: 0.8rem;
}

/* Sosyal Medya İkonları - Header'da */
.social-icons-header {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
}

.social-icon-small {
    width: 35px;
    height: 35px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-small:hover {
    transform: translateY(-3px);
}

.social-icon-small i {
    color: white;
}

/* LinkedIn Markası */
.social-icon-small:nth-child(1) {
    background: #0077b5;
}

.social-icon-small:nth-child(1):hover {
    background: #005885;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

/* Instagram Markası */
.social-icon-small:nth-child(2) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-small:nth-child(2):hover {
    background: linear-gradient(45deg, #d67d2b 0%, #c85a32 25%, #b91f39 50%, #ab1c5a 75%, #a0157a 100%);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

/* Facebook Markası */
.social-icon-small:nth-child(3) {
    background: #1877F2;
}

.social-icon-small:nth-child(3):hover {
    background: #0d65d9;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.contact-row {
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    flex: 1;
    min-width: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.contact-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.contact-box p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.social-media {
    text-align: center;
}

.social-media h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
    background: var(--white);
    box-shadow: var(--shadow);
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.linkedin {
    color: #0077b5;
    border: 2px solid #0077b5;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: var(--white);
}

.social-link.instagram {
    color: #E4405F;
    border: 2px solid #E4405F;
}

.social-link.instagram:hover {
    background: #E4405F;
    color: var(--white);
}

.social-link i {
    font-size: 1.5rem;
}

/* Responsive Design */

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .btn-small {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    
    .navbar .container {
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-content {
        padding-top: 60px;
        padding-bottom: 2rem;
        justify-content: flex-start;
    }
    
    .hero-actions {
        position: absolute;
        bottom: 5rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-content .btn-group {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        position: relative;
        z-index: 10;
        margin-top: 1rem;
    }
    
    .hero-content .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .nav-brand {
        gap: 1rem;
        flex: 1;
        max-width: calc(100% - 40px);
    }
    
    .logo-link {
        gap: 0.4rem;
    }
    
    .logo-image {
        width: 120px;
    }
    
    .logo-slogan {
        font-size: 0.6rem;
        line-height: 1.1;
        display: none;
    }
    
    
    .nav-cta {
        width: 100%;
        padding: 1rem 1.5rem;
        border-top: 2px solid #e5e7eb;
        margin-top: 1rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex !important;
        position: relative;
        z-index: 1001;
        margin-left: 0;
        order: 2;
        padding: 4px;
        gap: 3px;
        flex-shrink: 0;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    
    .language-switcher {
        order: 3;
        width: 100%;
        justify-content: flex-end;
        padding: 1rem 1.5rem;
        border-top: 2px solid #e5e7eb;
        border-bottom: 2px solid #e5e7eb;
        margin: 0.5rem 0;
    }
    
    .lang-current {
        padding: 0.6rem 1rem;
    }
    
    .current-flag-img {
        width: 24px;
        height: 18px;
    }
    
    .lang-dropdown {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
        flex-direction: row;
        justify-content: center;
        gap: 0.6rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .lang-flag-img {
        width: 24px;
        height: 18px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: var(--primary-color);
        color: white;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    /* Dropdown mobilde */
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        background: #f8f9fa;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid #e5e7eb;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    /* Nav Quote Button mobilde */
    .nav-quote-btn {
        width: 100%;
        margin: 0;
        padding: 1rem 1.5rem;
        border-top: 2px solid #e5e7eb;
        margin-top: 1rem;
    }
    
    .nav-quote-btn .btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-brand {
        flex-direction: row;
        gap: 0.8rem;
        align-items: center;
        max-width: calc(100% - 60px);
    }
    
    .logo {
        gap: 0.4rem;
        flex-shrink: 0;
    }
    
    .logo-link {
        gap: 0.4rem;
    }
    
    .logo-image {
        width: 160px;
    }
    
    .logo-slogan {
        font-size: 0.8rem;
    }
    
    
    .slogan {
        display: none;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-title .highlight {
        color: var(--accent-color);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .about-slider {
        height: 300px;
    }
    
    /* Vision Values Mobile */
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-card {
        padding: 1.2rem 1rem;
    }
    
    /* Mission Mobile */
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Career Mobile */
    .career-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .career-text h2 {
        font-size: 1.3rem;
    }
    
    .career-text p {
        font-size: 0.9rem;
    }
    
    .career-text p:first-of-type {
        font-size: 1rem;
    }
    
    .career-image {
        transform: none;
    }
    
    .career-badge {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .career-badge i {
        font-size: 1.3rem;
    }
    
    .mission-slider {
        height: 300px;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* SSS Mobile */
    .sss-hero-content h1 {
        font-size: 2rem;
    }
    
    .sss-hero-content p {
        font-size: 1rem;
    }
    
    .sss-intro h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Page Mobile */
    .page-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero .hero-content p {
        font-size: 1rem;
    }
    
    .content-intro h2 {
        font-size: 1.3rem;
    }
    
    .services-section h3 {
        font-size: 1.5rem;
    }
    
    .service-highlight {
        padding: 2rem;
    }
    
    .transparent-service {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .transparent-service .highlight-content h3 {
        font-size: 1.2rem;
    }
    
    .transparent-service .highlight-content p {
        font-size: 0.85rem;
    }
    
    .highlight-content h3 {
        font-size: 1.5rem;
    }
    
    .delivery-guarantee {
        padding: 2rem;
    }
    
    .guarantee-content h3 {
        font-size: 1.5rem;
    }
    
    .page-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .page-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Timeline Mobile */
    .solutions-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        align-self: flex-start;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content:hover {
        transform: none;
    }
    
    .solution-features {
        gap: 0.3rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .guarantee-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Kamu Aydınlatma Mobile */
    .disclosure-section {
        padding: 2rem;
    }
    
    .disclosure-section h3 {
        font-size: 1.3rem;
    }
    
    .company-details {
        padding: 1rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .disclosure-footer {
        padding: 2rem;
    }
    
    /* Sade Kamu Aydınlatma Mobile */
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* İletişim Mobile */
    .contact-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-box {
        width: 100%;
        max-width: 380px;
        padding: 1.2rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .social-icon-small {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-link {
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}


/* URGENT FIX - İletişim Kartları Yan Yana */
.contact-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 1.2rem !important;
    flex-wrap: wrap !important;
}

.contact-box {
    flex: 1 1 260px !important;
    display: block !important;
    text-align: center !important;
    background: white !important;
    padding: 1.5rem !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .contact-row {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .contact-box {
        flex: none !important;
        width: 100% !important;
        max-width: 380px !important;
        margin: 0 auto !important;
        padding: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .quote-card {
        padding: 1.5rem;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.4s;
}

/* Teklif Sayfası */
.teklif-hero .hero-bg {
    background: url('./assets/teklif/teklif.jpg') center/cover no-repeat;
}

.teklif-hero .hero-content {
    text-align: center;
}

.teklif-hero .hero-content h1 {
    text-align: center;
}

.teklif-hero .hero-content p {
    text-align: center;
}

.teklif-section {
    padding: 4rem 0;
    background: #f8f9fa;
    min-height: 70vh;
}

/* Simple Teklif Form */
.teklif-form-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.simple-form-container {
    max-width: 1400px;
    margin: 0 auto;
}

.simple-quote-form {
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Customer Type Selection */
.customer-type {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.type-option {
    cursor: pointer;
}

.type-option input[type="radio"] {
    display: none;
}

.type-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.2rem 2.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.type-label i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.type-option input[type="radio"]:checked + .type-label {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(14, 165, 233, 0.05));
    color: var(--primary-color);
}

.type-option:hover .type-label {
    border-color: var(--accent-color);
}

/* Yük Türü Grid */
.yuk-turu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.yuk-turu-grid .type-option {
    cursor: pointer;
}

.yuk-turu-grid .type-option input[type="radio"] {
    display: none;
}

.yuk-turu-grid .type-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.2rem 0.6rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    min-height: 110px;
    font-size: 0.85rem;
    line-height: 1.3;
}

.yuk-turu-grid .type-label i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.yuk-turu-grid .type-option input[type="radio"]:checked + .type-label {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(14, 165, 233, 0.05));
    color: var(--primary-color);
}

.yuk-turu-grid .type-option:hover .type-label {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Grid */
@media (max-width: 640px) {
    .yuk-turu-grid {
        grid-template-columns: 1fr;
    }
    
    .simple-quote-form {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .yuk-turu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .yuk-turu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Wrapper - Two Column Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    margin-top: 1rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

/* Contact Info Side */
.contact-info-side {
    background: white;
    padding: 1.2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info-header h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.contact-info-header p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.contact-detail-item {
    display: flex;
    gap: 0.6rem;
    padding: 0.6rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.detail-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.2rem;
}

.detail-content a:hover {
    color: var(--secondary-color);
}

.detail-content span,
.detail-content p {
    color: var(--text-light);
    font-size: 0.75rem;
    line-height: 1.4;
}

/* Schedule alignment */
.schedule-day {
    display: inline-block;
    min-width: 90px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.75rem;
}

.schedule-time {
    display: inline-block;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.75rem;
}

/* Phone number flags */
.phone-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    object-position: center;
    vertical-align: middle;
    margin-right: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Phone Numbers Container */
.phone-numbers-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    max-width: 350px;
}

/* Compact Phone Schedule Styles */
.phone-schedule-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem;
    margin-top: 0;
    margin-left: 2rem;
    padding: 0.4rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    flex: 1;
    max-width: 400px;
    min-height: 90px;
    width: 100%;
}

.schedule-compact-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    text-align: left;
    padding: 0.3rem 0.4rem;
    margin: 0.1rem 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    min-height: 45px;
    width: 100%;
    flex: 1;
}

.schedule-compact-dept {
    font-size: 0.65rem !important;
    color: var(--text-dark) !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
    line-height: 1.3 !important;
    flex: 1 !important;
    text-align: left !important;
    padding-right: 0.3rem !important;
    float: left !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
}

/* BR etiketlerini tamamen gizle */
.schedule-compact-dept br,
.phone-schedule-compact br,
.schedule-compact-item br,
.phone-schedule-compact * br,
.contact-info-side br,
.contact-details br {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    content: "" !important;
    opacity: 0 !important;
    text-indent: -9999px !important;
    white-space: nowrap !important;
    transform: scale(0) !important;
    clip: rect(0,0,0,0) !important;
    z-index: -9999 !important;
}



/* Çalışma saatleri tablosundaki BR etiketlerini koru */
.contact-detail-item p br,
.contactInfo.schedule br,
.schedule-day + br,
.schedule-time + br {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    width: auto !important;
    line-height: normal !important;
    font-size: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Sadece Türkçe departman isimlerindeki BR etiketlerini göster */
.schedule-compact-dept br,
.schedule-compact-dept * br,
.phone-schedule-compact .schedule-compact-dept br {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    width: auto !important;
    line-height: normal !important;
    font-size: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    content: "" !important;
    white-space: normal !important;
    overflow: visible !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    opacity: 1 !important;
    text-indent: 0 !important;
    transform: none !important;
    clip: auto !important;
    z-index: auto !important;
}

/* BR etiketlerini zorla satır sonu yap */
.schedule-compact-dept br:after {
    content: "\A";
    white-space: pre !important;
}

/* Sürücü & Lojistik için özel düzenleme - JavaScript ile sınıf eklenecek */
.schedule-compact-dept.fahrer-logistik {
    display: block !important;
    line-height: 1.2 !important;
    font-size: 0.65rem !important;
    color: var(--text-dark) !important;
    font-weight: 700 !important;
    width: 70px !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}

/* Fahrer logistik BR etiketlerini düzgün göster */
.schedule-compact-dept.fahrer-logistik br {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    width: auto !important;
    line-height: normal !important;
    font-size: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Emre Yıldırım ismini vurgula */
.disclosure-content p:contains("Emre Yıldırım"),
.disclosure-content span:contains("Emre Yıldırım") {
    font-weight: bold !important;
    color: #2563eb !important;
    background-color: #fef3c7 !important;
    padding: 2px 4px !important;
    border-radius: 3px !important;
}

/* Departman bilgileri için yeni stiller */
.dept-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    flex: 1 !important;
}

.dept-phone {
    font-size: 0.75rem !important;
    color: var(--text-dark) !important;
    font-weight: 700 !important;
    margin-top: 0.1rem !important;
    line-height: 1.2 !important;
    text-align: right !important;
    align-self: center !important;
    white-space: nowrap !important;
}

/* Çalışma saatlerini küçük ve gri yap */
.dept-info .schedule-compact-time {
    font-size: 0.55rem !important;
    color: var(--text-light) !important;
    font-weight: 500 !important;
    margin-top: 0.1rem !important;
    line-height: 1.2 !important;
}

/* Nöbetçi servis ikonunu kırmızı yap */
.emergency-service .detail-icon i {
    color: white !important;
    font-size: 1.2rem !important;
}

/* Nöbetçi servis için mobil benzeri stil - webde de görünsün */
.contact-detail-item.emergency-service {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%) !important;
    border-left: 4px solid #dc2626 !important;
    margin-top: 1rem !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1) !important;
    border-radius: 8px !important;
}

.contact-detail-item.emergency-service .detail-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3) !important;
    border-radius: 50% !important;
}

.contact-detail-item.emergency-service h4 {
    color: #dc2626 !important;
    font-weight: 700 !important;
}

.contact-detail-item.emergency-service p {
    color: #991b1b !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-detail-split {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-split-left,
.contact-split-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-split-left .detail-icon,
.contact-split-right .detail-icon {
    margin-top: 0.25rem;
}

.contact-split-left .detail-content,
.contact-split-right .detail-content {
    flex: 1;
}

@media (max-width: 768px) {
    .contact-detail-split {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-split-left,
    .contact-split-right {
        width: 100%;
    }
}

.schedule-compact-time {
    font-size: 0.7rem !important;
    color: #374151 !important;
    font-weight: 600 !important;
    background: transparent !important;
    padding: 0.2rem 0.4rem !important;
    border-radius: 0 !important;
    min-width: 75px !important;
    border: none !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-shadow: none !important;
    flex-shrink: 0 !important;
    float: right !important;
    margin-left: auto !important;
    align-self: flex-start !important;
    margin-top: 0 !important;
}

/* Old Phone Schedule Styles (for other pages) */
.phone-schedule {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.schedule-department {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
}

.schedule-item .schedule-time {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(59, 131, 246, 0.26);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    min-width: 80px;
    text-align: center;
}

/* Working Hours Table Styles */
.working-hours-table {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.working-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition);
}

.working-hours-row:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.schedule-dept {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
    flex: 1;
}

.working-hours-row .schedule-time {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    background: rgba(59, 130, 246, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    min-width: 90px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.map-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem !important;
    color: var(--secondary-color) !important;
}

.map-link:hover {
    color: var(--accent-color) !important;
}

/* Contact Form Side */
.contact-form-side {
    background: white;
    padding: 1.2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-header h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.contact-form-header p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
}

/* Contact Form */
.index-contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.index-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.index-contact-form .form-group {
    margin-bottom: 1rem;
}

.index-contact-form label {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.75rem;
}

.index-contact-form input,
.index-contact-form select,
.index-contact-form textarea {
    width: 100%;
    padding: 0.5rem 0.6rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.index-contact-form input:focus,
.index-contact-form select:focus,
.index-contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.index-contact-form textarea {
    resize: vertical;
    min-height: 120px;
    flex: 1;
}

.index-contact-form button {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .index-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .contact-info-side,
    .contact-form-side {
        padding: 1.2rem 1rem;
    }
    
    /* Çalışma saatleri mobil düzenleme */
    .schedule-day {
        min-width: 100px;
        font-size: 0.9rem;
        margin-right: 0.5rem;
    }
    
    .schedule-time {
        font-size: 0.9rem;
    }
    
    /* Working Hours Table Mobile */
    .working-hours-table {
        gap: 0.5rem;
    }
    
    .working-hours-row {
        padding: 0.6rem 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
    
    .schedule-dept {
        font-size: 0.8rem;
        width: 100%;
    }
    
    .working-hours-row .schedule-time {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
        min-width: 80px;
        align-self: flex-end;
    }
    
    /* Phone Schedule Mobile */
    .phone-schedule {
        margin-top: 0.8rem;
        padding-top: 0.8rem;
    }
    
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0.8rem;
    }
    
    .schedule-department {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .schedule-item .schedule-time {
        font-size: 0.85rem;
        min-width: auto;
        width: 100%;
        text-align: left;
    }
    
    /* Mobile Phone Numbers Container */
    .phone-numbers-container {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .phone-numbers {
        max-width: none;
    }
    
    .phone-schedule-compact {
        grid-template-columns: 1fr;
        gap: 0.2rem;
        padding: 0.3rem;
        margin-left: 1rem;
        max-width: none;
        min-height: auto;
    }
    
    .schedule-compact-item {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        padding: 0.25rem 0.4rem;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 4px;
        border: 1px solid rgba(59, 130, 246, 0.1);
        min-height: 40px;
    }
    
    .schedule-compact-dept {
        font-size: 0.65rem !important;
        margin-bottom: 0 !important;
        flex: 1 !important;
    }
    
    .schedule-compact-time {
        font-size: 0.65rem !important;
        color: #374151 !important;
        font-weight: 600 !important;
        background: transparent !important;
        min-width: 70px !important;
        padding: 0.15rem 0.4rem !important;
        border: none !important;
        box-shadow: none !important;
        flex-shrink: 0 !important;
    }

/* Emergency Service Styling */
.contact-detail-item.emergency-service {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left-color: #dc2626;
    border-left-width: 4px;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.contact-detail-item.emergency-service .detail-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.contact-detail-item.emergency-service h4 {
    color: #dc2626;
    font-weight: 700;
}

.contact-detail-item.emergency-service p {
    color: #991b1b;
    font-weight: 500;
    line-height: 1.5;
}
    
    .contact-detail-item p {
        line-height: 1.8;
    }
}

/* Success Message Simple */
.success-message-simple {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.success-message-simple .success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-message-simple .success-icon i {
    font-size: 3rem;
    color: white;
}

.success-message-simple h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-message-simple p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-step {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.form-step.active {
    display: block;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

/* Transport Tabs (Sertrans Style) */
.transport-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.transport-tab {
    background: transparent;
    border: none;
    padding: 1.2rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.transport-tab i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.transport-tab:hover {
    background: #f8f9fa;
}

.transport-tab.active {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
}

.transport-tab.active i {
    color: white;
}

/* Transport Content */
.transport-content {
    display: none;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.transport-content.active {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

.content-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* Service Grid (Sertrans Style) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.service-option {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.service-option:hover {
    background: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-option i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-option span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
}

/* Back Button */
.btn-back {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--primary-color);
    color: white;
}

/* Quote Form */
.quote-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--accent-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-input {
    padding: 0.7rem 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* Cargo Types */
.cargo-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.cargo-type-card {
    position: relative;
    cursor: pointer;
}

.cargo-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.cargo-content {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cargo-content i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.cargo-content span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.cargo-type-card input[type="radio"]:checked + .cargo-content {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(14, 165, 233, 0.05));
}

/* Checkboxes */
.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkbox-group label {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: block;
}

.radio-options {
    display: flex;
    gap: 2rem;
}

.radio-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-dark);
}

.radio-options input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Form Submit */
.form-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.form-submit .btn {
    min-width: 300px;
    text-align: center;
}

.form-submit .btn i {
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon i {
    font-size: 3rem;
    color: white;
}

.success-message h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .quote-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .transport-options,
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .cargo-types {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-content > *:nth-child(4) {
    animation-delay: 0.6s;
}


/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #0d2847 0%, #05152b 100%);
    color: white;
    padding: 4rem 0 1rem;
    margin-top: 4rem;
}

.site-footer > .container {
    display: flex;
    flex-direction: column;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    order: 2;
}

.footer-column h4 {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.footer-column ul li strong {
    color: white;
    font-weight: 600;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    order: 4;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-color);
}

.footer-legal-links span {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
    order: 5;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-bottom-right {
    text-align: right;
    margin-left: auto;
    flex-shrink: 0;
    margin-right: -200px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0.2rem 0;
}

.footer-company-info {
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.2rem;
}

.ihk-membership {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ihk-membership a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.ihk-membership a:hover {
    opacity: 0.8;
}

.ihk-logo {
    width: 200px;
    height: 140px;
    object-fit: contain;
    border-radius: 4px;
}

.ihk-membership span {
    font-size: 0.8rem;
    font-weight: 500;
}

.ihk-membership-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    vertical-align: middle;
}

.ihk-membership-inline a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.ihk-membership-inline a:hover {
    opacity: 0.8;
}

.ihk-logo-inline {
    width: 40px;
    height: 28px;
    object-fit: contain;
    border-radius: 3px;
    vertical-align: middle;
}

.ihk-membership-inline span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

.footer-legal-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-right: 700px;
}

.ihk-membership-separate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    right: 10px;
    bottom: 10;
}

.ihk-membership-separate a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.ihk-membership-separate a:hover {
    opacity: 0.8;
}

.ihk-logo-separate {
    width: 160px;
    height: 115px;
    object-fit: contain;
    border-radius: 4px;
    vertical-align: middle;
}

.ihk-membership-separate span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-left,
    .footer-bottom-right {
        text-align: center;
        position: static !important;
        margin: 0 !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .footer-bottom-right-official {
        position: static !important;
        right: auto !important;
        bottom: auto !important;
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .ihk-logo {
        width: 150px;
        height: 105px;
    }
    
    .ihk-membership span {
        font-size: 0.75rem;
    }
    
    .footer-legal-content {
        flex-direction: column;
        text-align: center;
    }
    
    .ihk-membership-separate {
        position: static !important;
        margin-left: 0;
        margin-top: 0.5rem;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        text-align: center;
    }
    
    .ihk-logo-separate {
        width: 100px;
        height: 70px;
    }
    
    .ihk-membership-separate span {
        font-size: 0.8rem;
    }
}

.official-website-info {
    background-color: #f8f9fa;
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
    margin-top: 1rem;
}

.official-info-text {
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.copyright-year,
.address,
.website-label {
    color: #d4a574;
    font-weight: 500;
}

.company-name,
.city,
.website-url {
    color: #2c5f6b;
    font-weight: 600;
}

.website-url {
    text-decoration: none;
    transition: color 0.3s ease;
}

.website-url:hover {
    color: #1a4a54;
}

.official-website-info-inline {
    margin-top: 1rem;
    text-align: right;
}

.official-info-text-inline {
    font-size: 0.8rem;
    line-height: 1.3;
    margin: 0;
}

.footer-bottom-right-official {
    position: absolute;
    right: 50px;
    bottom: 10;
    text-align: right;
}

.official-info-text-footer {
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
    text-align: right;
}

@media (max-width: 768px) {
    .official-website-info {
        padding: 0.8rem 0;
        text-align: center;
    }
    
    .official-info-text {
        text-align: center;
        font-size: 0.85rem;
    }
}

.footer-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-partner a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-partner a:hover {
    transform: scale(1.05);
}

.partner-name {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-partner a:hover .partner-name {
    color: var(--accent-color);
}

.partner-logo {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: all 0.3s ease;
    display: block;
}

.footer-partner a:hover .partner-logo {
    opacity: 1;
}

/* Footer Partners Section */
.footer-partners-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 0;
    margin-bottom: 1rem;
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    order: 1;
}

.partners-title {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.partner-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.partner-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(42, 160, 219, 0.2);
}

.partner-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.partner-item a:hover {
    color: var(--accent-color);
}

.partner-item i {
    font-size: 1rem;
    color: var(--accent-color);
    min-width: 20px;
}

.partner-item small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    line-height: 1.2;
    padding-left: 1.5rem;
}

.partners-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .partner-item {
        padding: 1rem;
    }
}

/* Disclosure Cards Styles */
.disclosure-cards {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.disclosure-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.disclosure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(42, 160, 219, 0.2);
}

.disclosure-card.highlighted {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left-color: #0d2847;
}

.disclosure-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #1a8ccc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.disclosure-card .card-icon i {
    font-size: 1.8rem;
    color: white;
}

.disclosure-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.disclosure-card .card-content p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.info-box {
    background: rgba(42, 160, 219, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: var(--primary-color);
    min-width: 150px;
}

.info-item span {
    text-align: right;
    color: #555;
}

.management-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d7a 100%);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.management-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.management-info i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.management-info strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.management-info p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.disclosure-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d7a 100%);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.closing-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.signature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.signature strong {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.signature span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.content-intro .subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .disclosure-card {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .info-item span {
        text-align: left;
    }
    
    .management-info {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column ul li a:hover {
        transform: none;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-legal-links span {
        display: none;
    }
}

/* Cookie Banner Styles */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0d2847 0%, #1a4d7a 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#cookieBanner.show {
    display: block;
    transform: translateY(0);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.cookie-banner-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner-text a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: #4db8ff;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: var(--accent-color);
    color: white;
}

.cookie-btn-primary:hover {
    background: #1a8ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 160, 219, 0.4);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.cookie-btn-settings:hover {
    background: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-banner-text {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .cookie-banner-text h4 {
        font-size: 1rem;
    }
    
    .cookie-banner-text p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .navbar .container {
        padding: 0 0.5rem;
    }
    
    .logo-image {
        width: 120px;
    }
    
    .logo-slogan {
        font-size: 0.6rem;
    }
    
    .cookie-banner {
        padding: 0.8rem;
    }
    
    .cookie-banner-text h4 {
        font-size: 0.9rem;
    }
    
    .cookie-banner-text p {
        font-size: 0.75rem;
    }
    
    .cookie-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        min-width: 80px;
    }
    
    .footer-bottom-content {
        padding: 0 0.5rem;
    }
    
    .btn-small {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        min-width: 100px;
    }
    
    .hero-content {
        padding-top: 50px;
        padding-bottom: 1.5rem;
    }
    
    .hero-actions {
        bottom: 4rem;
        max-width: 250px;
    }
    
    .hero-content .btn {
        max-width: 250px;
    }
}

/* Kariyer Sayfası Stiller */
.career-hero .hero-bg {
    filter: brightness(0.7);
}

.career-hero .hero-content h1 {
    font-size: 2rem;
}

.career-hero .hero-content p {
    font-size: 1.1rem;
}

.career-page-content {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.career-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.career-intro p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.career-highlight {
    font-size: 1.1rem !important;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem !important;
}

.job-position-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.job-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--accent-color);
}

.job-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #1976D2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 112, 224, 0.3);
}

.job-header h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.job-section {
    margin-bottom: 2.5rem;
}

.job-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-list {
    list-style: none;
    padding: 0;
}

.job-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.95rem;
}

.job-list li:last-child {
    border-bottom: none;
}

.job-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.job-list.requirements li::before {
    content: '●';
    color: var(--primary-color);
}

.benefits-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    min-width: 25px;
}

.benefit-item p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.application-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1565C0 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    color: var(--white);
    margin-bottom: 3rem;
}

.application-header {
    text-align: center;
    margin-bottom: 2rem;
}

.application-header i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.application-header h2 {
    color: var(--white);
    font-size: 1.4rem;
    margin: 0;
}

.application-methods {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.apply-email, .apply-form {
    text-align: center;
}

.apply-email h3, .apply-form h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.email-link {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.email-link:hover {
    background: #f5f5f5;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

.apply-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-divider span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

.form-coming-soon {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.form-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.form-toggle-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.form-toggle-btn:hover {
    background: #f5f5f5;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

.application-form-container {
    margin-top: 2rem;
    animation: slideDown 0.3s ease;
}

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

.application-form {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.65rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.file-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.form-group input[type="file"] {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-input-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.2rem;
    background: var(--primary-color);
    color: white !important;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.file-input-label span {
    color: white !important;
}

.file-input-label:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.file-input-label i {
    font-size: 1rem;
    color: white !important;
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    color: #666;
    font-size: 0.7rem;
}

.file-name-display {
    display: block;
    color: #4CAF50 !important;
    font-weight: 600;
    font-size: 1rem !important;
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-top: 0.4rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 400 !important;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 6px;
    transition: background 0.2s ease;
    font-size: 0.85rem;
}

.checkbox-label:hover {
    background: rgba(25, 118, 210, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.btn-secondary {
    background: #e0e0e0;
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #bdbdbd;
}

.career-cta {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.career-cta p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .career-hero .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .career-hero .hero-content p {
        font-size: 1rem;
    }
    
    .job-position-card {
        padding: 2rem;
    }
    
    .job-header {
        flex-direction: column;
        text-align: center;
    }
    
    .job-header h2 {
        font-size: 1.3rem;
    }
    
    .job-section h3 {
        font-size: 1.1rem;
    }
    
    .job-list li {
        font-size: 0.9rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .application-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .apply-divider {
        display: none;
    }
    
    .application-header h2 {
        font-size: 1.2rem;
    }
    
    .application-section {
        padding: 1.5rem;
    }
    
    .application-form {
        padding: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .career-section {
        padding: 3rem 0;
    }
    
    .career-text h2 {
        font-size: 1.3rem;
    }
    
    .career-text p {
        font-size: 0.9rem;
    }
    
    .career-text p:first-of-type {
        font-size: 1rem;
    }
    
    .career-badge {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .career-badge i {
        font-size: 1.2rem;
    }
    
    .career-cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.7rem 1.3rem;
    }
    
    .career-cta-btn i {
        font-size: 1.05rem;
    }
    
    .career-page-content {
        padding: 2rem 0;
    }
    
    .job-position-card {
        padding: 1.5rem;
    }
    
    .application-section {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   Footer Styles
   ============================================ */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-col h3 {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 0.9rem;
    min-width: 18px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-company-info {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-company-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-company-info strong {
    color: var(--white);
}

.footer-partner-section {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.footer-disclaimer {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    text-align: center;
    order: 3;
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.disclaimer-text strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.disclaimer-text-tr {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-text-en {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-bank {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.partner-bank span {
    color: rgba(255, 255, 255, 0.7);
}

.partner-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.partner-link:hover {
    transform: translateX(5px);
}

.partner-logo {
    height: 24px;
    width: auto;
}

.partner-name {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* ===== CUSTOMS SERVICES PAGE STYLES ===== */

/* Customs Hero Section */
.customs-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customs-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.customs-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.customs-hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.customs-hero p {
    font-size: 1.15rem;
    color: white !important;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Customs Main Content */
.customs-main {
    padding: 6rem 0;
    background: #f8f9fa;
}

.customs-content {
    max-width: 900px;
    margin: 0 auto;
}

.customs-content h2 {
    font-size: 1.8rem;
    color: #1e40af;
    margin-bottom: 2rem;
    text-align: center;
}

.customs-content h3 {
    font-size: 1.5rem;
    color: #1e40af;
    margin: 3rem 0 1.5rem;
    text-align: center;
}

.customs-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Customs Services Grid */
.customs-services {
    padding: 3rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-card {
    background: white;
    padding: 1.5rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 0.95rem;
    color: #1e40af;
    margin-bottom: 0.8rem;
    text-align: center;
}

.service-card p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #666;
    text-align: center;
}

/* Customs CTA Section */
.customs-cta {
    background: white;
    color: #1e40af;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.customs-cta .cta-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1e40af;
}

.customs-cta .cta-content p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn-primary {
    background: white;
    color: #1e40af;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #1e40af;
    transform: translateY(-2px);
}

/* Customs CTA specific button styles */
.customs-cta .cta-buttons .btn-secondary {
    background: transparent;
    color: #f97316;
    border: 2px solid #f97316;
}

.customs-cta .cta-buttons .btn-secondary:hover {
    background: #f97316;
    color: white;
    transform: translateY(-2px);
}

.customs-cta .cta-buttons .btn-secondary span,
.customs-cta .cta-buttons .btn-secondary i {
    color: #f97316 !important;
}

.customs-cta .cta-buttons .btn-secondary:hover span,
.customs-cta .cta-buttons .btn-secondary:hover i {
    color: white !important;
}

/* Customs Page Responsive */
@media (max-width: 768px) {
    .customs-hero h1 {
        font-size: 1.8rem;
    }
    
    .customs-hero p {
        font-size: 1rem;
    }
    
    .customs-content h2 {
        font-size: 1.5rem;
    }
    
    .customs-content h3 {
        font-size: 1.3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Highlight Text Styling */
.highlight-text {
    background: linear-gradient(120deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.1);
    position: relative;
}

.highlight-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #d97706, #f59e0b);
    border-radius: 8px 8px 0 0;
}

.highlight-text strong {
    color: #92400e;
    font-weight: 600;
}

/* Timeline Slider Styles */
.timeline-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.timeline-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.timeline-slide.active {
    opacity: 1;
}

.timeline-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.timeline-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.timeline-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Partner Link Styles */
.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.partner-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.partner-link i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Announcement Box Styling */
.announcement-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
    border-top: 3px solid #f59e0b;
    padding: 1.5rem 0;
    margin-top: 0;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.announcement-content i {
    font-size: 1.5rem;
    color: #d97706;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.8rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.announcement-content p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #92400e;
    margin: 0;
    line-height: 1.4;
}

.announcement-content strong {
    color: #b45309;
    font-weight: 700;
}

/* Mobile Responsive for Announcement */
@media (max-width: 768px) {
    .announcement-content {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .announcement-content i {
        font-size: 1.3rem;
        padding: 0.6rem;
    }
    
    .announcement-content p {
        font-size: 1rem;
    }
}
