/* ===================================
   Tellidere Nakliyat - Ana Stil Dosyası
   Lacivert & Turuncu Kurumsal Tema
   =================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

/* CSS Değişkenleri */
:root {
    --lacivert: #0d2137;
    --lacivert-acik: #1a3a5c;
    --lacivert-koyu: #091625;
    --turuncu: #ff6b00;
    --turuncu-koyu: #e65c00;
    --turuncu-acik: #ff8533;
    --beyaz: #ffffff;
    --gri-acik: #f8f9fa;
    --gri: #6c757d;
    --gri-koyu: #343a40;
    --yesil: #28a745;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow: 0 10px 40px rgba(13, 33, 55, 0.15);
    --shadow-hover: 0 15px 50px rgba(13, 33, 55, 0.25);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gri-koyu);
    background-color: var(--beyaz);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--lacivert);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Top Bar
   =================================== */
.top-bar {
    background: linear-gradient(135deg, var(--lacivert-koyu) 0%, var(--lacivert) 100%);
    padding: 10px 0;
    font-size: 14px;
    color: var(--beyaz);
}

.top-bar a {
    color: var(--beyaz);
}

.top-bar a:hover {
    color: var(--turuncu);
}

.top-bar i {
    color: var(--turuncu);
    margin-right: 8px;
}

.top-bar .social-links a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-left: 8px;
    transition: var(--transition);
}

.top-bar .social-links a:hover {
    background: var(--turuncu);
    transform: translateY(-2px);
}

/* MOBİLDE GİZLEME KODU (992px altı cihazlar için) */
@media (max-width: 991px) {
    .top-bar {
        display: none !important;
    }
}

/* ===================================
   Navbar
   =================================== */
.navbar {
    background: var(--beyaz);
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand .logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--turuncu) 0%, var(--turuncu-koyu) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beyaz);
    font-size: 24px;
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand .brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--lacivert);
}

.navbar-brand .brand-slogan {
    font-size: 12px;
    color: var(--turuncu);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--lacivert);
    padding: 10px 18px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    width: 0;
    height: 3px;
    background: var(--turuncu);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 36px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--turuncu);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 12px;
    padding: 15px 0;
    margin-top: 10px;
}

.dropdown-item {
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 10px 25px;
    color: var(--lacivert);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--gri-acik);
    color: var(--turuncu);
    padding-left: 30px;
}

.dropdown-item i {
    color: var(--turuncu);
    margin-right: 10px;
    width: 20px;
}

.btn-teklif {
    background: linear-gradient(135deg, var(--turuncu) 0%, var(--turuncu-koyu) 100%);
    color: var(--beyaz) !important;
    padding: 12px 28px !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
    transition: var(--transition);
}

.btn-teklif:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
}

.btn-teklif::after {
    display: none !important;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    background: linear-gradient(135deg, var(--lacivert-koyu) 0%, var(--lacivert) 50%, var(--lacivert-acik) 100%);
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--turuncu);
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--turuncu);
    bottom: -50px;
    left: -50px;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--beyaz);
    top: 50%;
    left: 30%;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--beyaz);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.2);
    border: 1px solid var(--turuncu);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease;
}

.hero-badge i {
    color: var(--turuncu);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--beyaz);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-title span {
    color: var(--turuncu);
}

.hero-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 500px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--turuncu) 0%, var(--turuncu-koyu) 100%);
    color: var(--beyaz);
    padding: 16px 35px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
    color: var(--beyaz);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--beyaz);
    padding: 14px 35px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: var(--beyaz);
    border-color: var(--beyaz);
    color: var(--lacivert);
}

.hero-phone {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-phone-icon {
    width: 60px;
    height: 60px;
    background: var(--turuncu);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: pulse 2s ease infinite;
}

.hero-phone-text {
    font-size: 14px;
    opacity: 0.8;
}

.hero-phone-number {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--turuncu);
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.hero-truck-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--beyaz);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.hero-truck-badge i {
    font-size: 40px;
    color: var(--turuncu);
}

.hero-truck-badge span {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--lacivert);
    font-size: 14px;
    line-height: 1.4;
}

/* ===================================
   Features Strip
   =================================== */
.features-strip {
    background: var(--beyaz);
    padding: 30px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    border-right: 1px solid #eee;
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--turuncu);
}

.feature-text h5 {
    font-size: 16px;
    margin-bottom: 3px;
}

.feature-text p {
    font-size: 13px;
    color: var(--gri);
    margin: 0;
}

/* ===================================
   Section Styles
   =================================== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--turuncu);
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--turuncu);
}

.section-desc {
    font-size: 17px;
    color: var(--gri);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background: var(--gri-acik);
}

.service-card {
    background: var(--beyaz);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--turuncu) 0%, var(--turuncu-acik) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--lacivert) 0%, var(--lacivert-acik) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--beyaz);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--turuncu) 0%, var(--turuncu-koyu) 100%);
    transform: rotateY(180deg);
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gri);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--turuncu);
    font-weight: 600;
    font-family: var(--font-heading);
}

.service-link:hover {
    gap: 12px;
    color: var(--lacivert);
}

/* ===================================
   About Section
   =================================== */
.about-section {
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--turuncu) 0%, var(--turuncu-koyu) 100%);
    color: var(--beyaz);
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.4);
}

.about-experience .number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.about-experience span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--turuncu);
}

.about-content p {
    color: var(--gri);
    margin-bottom: 25px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

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

.about-list i {
    width: 30px;
    height: 30px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yesil);
    font-size: 14px;
}

.about-list span {
    font-weight: 500;
}

/* ===================================
   Why Us Section
   =================================== */
.why-us-section {
    background: linear-gradient(135deg, var(--lacivert-koyu) 0%, var(--lacivert) 100%);
    color: var(--beyaz);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.why-us-section .section-title {
    color: var(--beyaz);
}

.why-us-section .section-desc {
    color: rgba(255,255,255,0.8);
}

.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--turuncu) 0%, var(--turuncu-koyu) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
}

.why-card h4 {
    color: var(--beyaz);
    font-size: 20px;
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin: 0;
}

/* ===================================
   Tab Articles Section
   =================================== */
.tab-articles-section {
    background: var(--gri-acik);
}

.nav-tabs-custom {
    border: none;
    background: var(--beyaz);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    display: inline-flex;
    gap: 10px;
}

.nav-tabs-custom .nav-link {
    border: none;
    background: transparent;
    color: var(--gri);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 10px;
    transition: var(--transition);
}

.nav-tabs-custom .nav-link:hover {
    color: var(--lacivert);
    background: var(--gri-acik);
}

.nav-tabs-custom .nav-link.active {
    background: linear-gradient(135deg, var(--turuncu) 0%, var(--turuncu-koyu) 100%);
    color: var(--beyaz);
}

.article-card {
    background: var(--beyaz);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
}

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

.article-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--turuncu);
    color: var(--beyaz);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.article-content {
    padding: 25px;
}

.article-content h4 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-content h4 a:hover {
    color: var(--turuncu);
}

.article-content p {
    color: var(--gri);
    font-size: 14px;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: var(--gri);
}

.article-meta i {
    color: var(--turuncu);
    margin-right: 5px;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--turuncu) 0%, var(--turuncu-koyu) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: rotate 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: var(--beyaz);
}

.cta-content h2 {
    color: var(--beyaz);
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-cta {
    background: var(--beyaz);
    color: var(--turuncu);
    padding: 18px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: var(--lacivert);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    background: var(--beyaz);
}

.testimonial-card {
    background: var(--gri-acik);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
    color: var(--turuncu);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: var(--gri-koyu);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--turuncu) 0%, var(--turuncu-koyu) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beyaz);
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.testimonial-info h5 {
    font-size: 18px;
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--gri);
}

/* ===================================
   Blog Section
   =================================== */
.blog-section {
    background: var(--gri-acik);
}

.blog-card {
    background: var(--beyaz);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--turuncu);
    color: var(--beyaz);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.2;
}

.blog-date .day {
    font-size: 24px;
    font-weight: 700;
    display: block;
}

.blog-date .month {
    font-size: 12px;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content h4 a:hover {
    color: var(--turuncu);
}

.blog-content p {
    color: var(--gri);
    font-size: 15px;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--turuncu);
    font-weight: 600;
    font-family: var(--font-heading);
}

.blog-link:hover {
    gap: 12px;
    color: var(--lacivert);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--lacivert-koyu) 0%, var(--lacivert) 100%);
    color: var(--beyaz);
    padding-top: 80px;
}

.footer-widget h4 {
    color: var(--beyaz);
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--turuncu);
    border-radius: 2px;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.footer-contact i {
    color: var(--turuncu);
    font-size: 18px;
    margin-top: 3px;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a::before {
    content: '→';
    color: var(--turuncu);
}

.footer-links a:hover {
    color: var(--turuncu);
    padding-left: 5px;
}

.footer-services li {
    margin-bottom: 12px;
}

.footer-services a {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-services a i {
    color: var(--turuncu);
}

.footer-services a:hover {
    color: var(--turuncu);
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.working-hours li:last-child {
    border-bottom: none;
}

.working-hours li span:last-child {
    color: var(--turuncu);
    font-weight: 600;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    margin-top: 50px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--beyaz);
    margin-left: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--turuncu);
    transform: translateY(-3px);
}

/* ===================================
   WhatsApp Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beyaz);
    font-size: 32px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s ease infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--beyaz);
}

/* ===================================
   Back to Top
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--lacivert);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beyaz);
    font-size: 20px;
    box-shadow: var(--shadow);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.back-to-top:hover {
    background: var(--turuncu);
    transform: translateY(-5px);
    color: var(--beyaz);
}

/* ===================================
   Page Header / Breadcrumb
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--lacivert-koyu) 0%, var(--lacivert) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--turuncu);
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    right: -100px;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--beyaz);
}

.page-header h1 {
    color: var(--beyaz);
    font-size: 46px;
    margin-bottom: 20px;
}

.page-header h1 span {
    color: var(--turuncu);
}

.breadcrumb-nav {
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    padding: 12px 25px;
    border-radius: 50px;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb-item {
    font-size: 14px;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item a:hover {
    color: var(--turuncu);
}

.breadcrumb-item.active {
    color: var(--turuncu);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
    content: "›";
}

/* ===================================
   Sidebar
   =================================== */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--beyaz);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sidebar-widget h4 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gri-acik);
    position: relative;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--turuncu);
}

.sidebar-services li {
    margin-bottom: 10px;
}

.sidebar-services a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--gri-acik);
    border-radius: 12px;
    color: var(--lacivert);
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-services a i {
    color: var(--turuncu);
    font-size: 18px;
}

.sidebar-services a:hover,
.sidebar-services a.active {
    background: linear-gradient(135deg, var(--turuncu) 0%, var(--turuncu-koyu) 100%);
    color: var(--beyaz);
    transform: translateX(5px);
}

.sidebar-services a:hover i,
.sidebar-services a.active i {
    color: var(--beyaz);
}

.sidebar-contact {
    background: linear-gradient(135deg, var(--lacivert) 0%, var(--lacivert-acik) 100%);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    color: var(--beyaz);
}

.sidebar-contact i {
    font-size: 50px;
    color: var(--turuncu);
    margin-bottom: 20px;
}

.sidebar-contact h4 {
    color: var(--beyaz);
    font-size: 22px;
    margin-bottom: 10px;
    border: none;
    padding: 0;
}

.sidebar-contact h4::after {
    display: none;
}

.sidebar-contact p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.sidebar-contact .phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--turuncu);
    color: var(--beyaz);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.sidebar-contact .phone:hover {
    transform: scale(1.05);
    color: var(--beyaz);
}

/* ===================================
   Service Detail Page
   =================================== */
.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
}

.service-detail-content p {
    color: var(--gri-koyu);
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.service-detail-content ul li i {
    color: var(--yesil);
    font-size: 14px;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.service-gallery img {
    border-radius: 15px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.service-gallery img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

/* ===================================
   Contact Page
   =================================== */
.contact-info-card {
    background: var(--beyaz);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: var(--transition);
}

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

.contact-info-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--turuncu) 0%, var(--turuncu-koyu) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--beyaz);
    margin: 0 auto 25px;
}

.contact-info-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-info-card p {
    color: var(--gri);
    margin: 0;
}

.contact-info-card a {
    color: var(--lacivert);
    font-weight: 600;
}

.contact-info-card a:hover {
    color: var(--turuncu);
}

.contact-form {
    background: var(--beyaz);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--turuncu);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-control::placeholder {
    color: #aaa;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, var(--turuncu) 0%, var(--turuncu-koyu) 100%);
    color: var(--beyaz);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ===================================
   FAQ Page
   =================================== */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.accordion-button {
    background: var(--beyaz);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    color: var(--lacivert);
    padding: 20px 25px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--turuncu) 0%, var(--turuncu-koyu) 100%);
    color: var(--beyaz);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-size: 16px;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: var(--beyaz);
    padding: 25px;
    color: var(--gri-koyu);
    line-height: 1.8;
}

/* ===================================
   Blog Page
   =================================== */
.blog-detail-content {
    background: var(--beyaz);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.blog-detail-content h1 {
    font-size: 34px;
    margin-bottom: 20px;
}

.blog-detail-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gri);
    font-size: 14px;
}

.blog-detail-meta i {
    color: var(--turuncu);
}

.blog-detail-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-detail-content h2 {
    font-size: 26px;
    margin: 30px 0 15px;
}

.blog-detail-content h3 {
    font-size: 22px;
    margin: 25px 0 15px;
}

.blog-detail-content p {
    margin-bottom: 20px;
    color: var(--gri-koyu);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.blog-tags a {
    background: var(--gri-acik);
    color: var(--gri-koyu);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.blog-tags a:hover {
    background: var(--turuncu);
    color: var(--beyaz);
}

/* ===================================
   Teklif Al Page
   =================================== */
.quote-form {
    background: var(--beyaz);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
}

.quote-form h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.quote-form .subtitle {
    color: var(--gri);
    margin-bottom: 35px;
}

.form-label {
    font-weight: 600;
    color: var(--lacivert);
    margin-bottom: 8px;
}

.form-select {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 15px;
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--turuncu);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.quote-info {
    background: linear-gradient(135deg, var(--lacivert) 0%, var(--lacivert-acik) 100%);
    border-radius: 20px;
    padding: 40px;
    color: var(--beyaz);
    height: 100%;
}

.quote-info h4 {
    color: var(--beyaz);
    font-size: 24px;
    margin-bottom: 25px;
}

.quote-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.quote-info-list i {
    color: var(--turuncu);
    font-size: 20px;
    margin-top: 3px;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .feature-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 20px;
    }
    
    .feature-item:last-child {
        border-bottom: none;
    }
    
    .about-experience {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        display: inline-block;
    }
    
    .navbar-collapse {
        background: var(--beyaz);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: var(--shadow);
    }
    
    .btn-teklif {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        text-align: center;
    }
    
    .top-bar .social-links {
        margin-top: 10px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-widget h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .quote-form {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .blog-detail-content {
        padding: 25px;
    }
    
    .service-gallery {
        grid-template-columns: 1fr;
    }
}
