/* ==========================================
   Pikap Taşımacılık - Ana CSS Dosyası
   Tema: Sarı - Mavi
   Site: https://adanapikapnakliye.gen.tr
========================================== */

:root {
    --primary-blue: #1a3a5c;
    --secondary-blue: #2c5282;
    --accent-yellow: #ffc107;
    --light-yellow: #fff3cd;
    --dark-text: #2d3748;
    --light-text: #718096;
    --white: #ffffff;
    --light-bg: #f7fafc;
    --border-color: #e2e8f0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ==========================================
   TOP BAR
========================================== */
.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar a {
    color: var(--white);
    margin-right: 20px;
}

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

.top-bar i {
    margin-right: 5px;
    color: var(--accent-yellow);
}

.social-links a {
    margin-left: 15px;
    font-size: 16px;
}

/* ==========================================
   HEADER
========================================== */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    position: relative; /* Logonun dışarı taşması için temel oluşturur */
    width: 220px; /* Menünün kaymaması için kutu genişliğini sabitledik */
}

.logo img {
    height: 150px !important; /* Logoyu buradan dilediğin kadar büyüt */
    width: auto;
    position: absolute; /* Header'ı büyütmesini engeller */
    left: -30px; /* Logoyu sola kaydırır, daha fazla sol için -40px yapabilirsin */
    top: 50%;
    transform: translateY(-50%); /* Dikeyde tam ortalar */
    z-index: 999; /* Logonun sliderın üstünde kalmasını sağlar */
    object-fit: contain;
}

.logo-text {
    display: none;
}
/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    position: relative;
    margin-left: 5px;
}

nav ul li a {
    display: block;
    padding: 10px 15px;
    color: var(--dark-text);
    font-weight: 500;
    border-radius: 5px;
}

nav ul li a:hover,
nav ul li a.active {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

/* Dropdown Menu */
nav ul li .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav ul li .dropdown li {
    margin: 0;
    width: 100%;
    display: block;
}

nav ul li .dropdown li a {
    padding: 10px 20px;
    border-radius: 0;
    border-bottom: 1px solid var(--border-color);
    display: block;
    white-space: nowrap;
}

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

nav ul li .dropdown li a:hover {
    background: var(--light-yellow);
    padding-left: 25px;
}

/* CTA Button - Güncellenmiş */
.cta-btn {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700; /* Biraz daha kalın yaptık daha iyi durur */
    display: inline-flex; /* İçeriği kadar yer tutmasını sağlar */
    align-items: center;
    justify-content: center; /* Yazıyı tam ortalar */
    gap: 8px;
    width: fit-content; /* KESİN ÇÖZÜM: Butonu metin kadar sınırlar */
    white-space: nowrap; /* Yazının alt satıra geçmesini engeller */
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-blue);
    cursor: pointer;
}

/* ==========================================
   HERO SLIDER
========================================== */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: transparent; /* Siyah boşluğu önlemek için şeffaf yaptık */
    line-height: 0;
}

.slider-container {
    position: relative;
    line-height: 0;
}

.slide {
    display: none;
    position: relative;
    line-height: 0;
}

.slide.active {
    display: block;
}

/* MASAÜSTÜ SLIDER YÜKSEKLİĞİ */
.slide img {
    width: 100%;
    height: 480px; /* 500px'den biraz daha azalttık, daha şık durur */
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 800px;
    z-index: 2;
    /* Üst üste binmeyi önleyen esnek yapı */
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.slide-content h1 {
    font-size: 42px;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-weight: 700;
}

.slide-content p {
    font-size: 20px;
    margin: 0;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* NAVİGASYON VE OKLAR (TAM LİSTE) */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
    line-height: normal; /* Noktaların kaymasını önler */
}

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

.slider-nav span.active {
    background: var(--accent-yellow);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 3;
}

.slider-arrows button {
    background: var(--accent-yellow);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrows button:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* MOBİL AYARLAR - SİYAH BOŞLUK VE ÜST ÜSTE BİNME ÇÖZÜMÜ */
@media (max-width: 768px) {
    .slide img {
        height: 300px !important; /* Resim yüksekliği mobilde sabit */
    }

    .hero-slider, .slider-container {
        height: 300px !important; /* Dıştaki kutu siyahlık kalmasın diye resme eşitlendi */
    }

    .slide-content {
        gap: 10px; /* Mobilde arayı biraz daha daralttık yer kazandık */
        top: 45%; /* Metni az yukarı çektik ki alt boşluk kalsın */
    }

    .slide-content h1 {
        font-size: 26px; /* Başlık mobilde sığsın */
    }

    .slide-content p {
        font-size: 15px;
        line-height: 1.3;
    }

    .slider-arrows {
        display: none; /* Mobilde ekranı kapatmasın diye okları gizledik */
    }
    
    .slider-nav {
        bottom: 10px; /* Noktaları biraz daha aşağı aldık */
    }
}

/* ==========================================
   SECTION STYLES
========================================== */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--light-text);
    font-size: 16px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-yellow);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ==========================================
   FEATURES SECTION
========================================== */
.features {
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-box {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-box i {
    font-size: 45px;
    color: var(--accent-yellow);
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: var(--light-text);
}

/* ==========================================
   ABOUT SECTION
========================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-text h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--light-text);
}

.about-list {
    list-style: none;
    margin: 20px 0;
}

.about-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-weight: bold;
}

/* ==========================================
   SERVICES SECTION
========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 14px;
}

.service-card a {
    color: var(--accent-yellow);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card a:hover {
    color: var(--primary-blue);
}

/* ==========================================
   REGIONS TABS
========================================== */
.regions-tabs {
    background: var(--light-bg);
}

.tabs-container {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.tab-buttons {
    display: flex;
    background: var(--primary-blue);
    flex-wrap: wrap;
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.tab-content p {
    color: var(--light-text);
    margin-bottom: 15px;
}

.region-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.region-links a {
    background: var(--light-yellow);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-blue);
}

.region-links a:hover {
    background: var(--accent-yellow);
}

/* ==========================================
   CTA SECTION
========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

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

.cta-buttons a {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ==========================================
   BLOG SECTION
========================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-content .date {
    font-size: 12px;
    color: var(--accent-yellow);
    margin-bottom: 10px;
}

.blog-card-content h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 14px;
    color: var(--light-text);
}

/* ==========================================
   GALLERY SECTION
========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 58, 92, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 14px;
    text-align: center;
    padding: 10px;
}

/* ==========================================
   FAQ SECTION
========================================== */
.faq-section {
    background: var(--light-bg);
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-yellow);
}

.faq-question i {
    color: var(--accent-yellow);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--light-text);
}

/* ==========================================
   FOOTER
========================================== */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

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

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: var(--accent-yellow);
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

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

/* Fixed Buttons */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.fixed-buttons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.fixed-buttons a:hover {
    transform: scale(1.1);
}

.fixed-buttons .whatsapp {
    background: #25d366;
}

.fixed-buttons .phone {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

/* ==========================================
   BREADCRUMB
========================================== */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 40px 0;
}

.breadcrumb-content {
    text-align: center;
    color: var(--white);
}

.breadcrumb-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

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

.breadcrumb-nav a {
    color: var(--accent-yellow);
}

.breadcrumb-nav span {
    margin: 0 10px;
    opacity: 0.7;
}

/* ==========================================
   SIDEBAR
========================================== */
.page-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 60px 0;
}

.main-content h2 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.main-content p {
    margin-bottom: 15px;
    color: var(--light-text);
}

.main-content img.featured-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 25px;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sidebar-widget h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-yellow);
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget ul li a:hover {
    color: var(--primary-blue);
}

.sidebar-widget ul li a i {
    color: var(--accent-yellow);
}

.contact-widget {
    background: var(--primary-blue);
    color: var(--white);
}

.contact-widget h4 {
    color: var(--white);
    border-bottom-color: var(--accent-yellow);
}

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

.contact-widget a {
    display: block;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 12px 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    margin-top: 15px;
}

.contact-widget a:hover {
    background: var(--white);
}

/* ==========================================
   CONTENT GALLERY
========================================== */
.content-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.content-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

/* ==========================================
   CONTACT PAGE
========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
}

.contact-info-box i {
    font-size: 30px;
    color: var(--accent-yellow);
}

.contact-info-box h4 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-info-box p {
    color: var(--light-text);
    font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--accent-yellow);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.contact-form button {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ==========================================
   PRICE TABLE
========================================== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.price-table th {
    background: var(--primary-blue);
    color: var(--white);
}

.price-table tr:hover {
    background: var(--light-yellow);
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }
    
    .social-links {
        display: none;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
        width: 100%;
        order: 3;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 15px 0;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
    }
    
    nav ul li a {
        padding: 12px 15px;
        border-bottom: 1px solid var(--border-color);
    }
    
    nav ul li .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-bg);
        display: none;
    }
    
    nav ul li:hover .dropdown,
    nav ul li.show-dropdown .dropdown {
        display: block;
    }
    
    .slide img {
        height: 300px;
    }
    
    .slide-content h1 {
        font-size: 28px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .page-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .content-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .slide img {
        height: 250px;
    }
    
    .slide-content h1 {
        font-size: 22px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .content-gallery {
        grid-template-columns: 1fr;
    }
}
