/* BULUT NAKLIYAT - MASTER DESIGN SYSTEM */
/* 3-Layer Token Architecture */

*,*::before,*::after {
    box-sizing:border-box;
    margin:0;
    padding:0
}
:root {
    --primary:#003366;
    --primary-light:#004080;
    --primary-dark:#002244;
    --secondary:#1f2937;
    --accent:#dc2626;
    --success:#15803d;
    --bg:#f3f4f6;
    --white:#ffffff;
    --text:#111827;
    --text-light:#4b5563;
    --shadow:0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-lg:0 4px 6px -1px rgba(0,0,0,0.1);
    --radius:4px;
    --transition:all 150ms cubic-bezier(0.4, 0, 0.2, 1);

    
    /* Spacing Tokens (8pt Grid) */
    --space-1: 0.5rem;   /* 8px */
    --space-2: 1rem;     /* 16px */
    --space-3: 1.5rem;   /* 24px */
    --space-4: 2rem;     /* 32px */
    --space-5: 2.5rem;   /* 40px */
    --space-6: 3rem;     /* 48px */
    --space-8: 4rem;     /* 64px */
    --space-10: 5rem;    /* 80px */
    --space-12: 6rem;    /* 96px */
    /* Semantic Tokens */
    --bg-surface: var(--white);
    --bg-page: var(--bg);
    --text-primary: var(--text);
    --text-secondary: var(--text-light);
    --border-color: #d1d5db;
    
    /* Component Tokens */
    --btn-primary-bg: var(--primary);
    --btn-primary-hover: var(--primary-dark);
    --btn-secondary-bg: var(--success);
    --btn-secondary-hover: #166534;
}
html {
    scroll-behavior:smooth;
    font-size:16px
}
body {
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
    color:var(--text);
    background:var(--bg)
}
a {
    color:inherit;
    text-decoration:none;
    transition:var(--transition)
}
img,svg {
    max-width:100%;
    height:auto;
    display:block
}
.skip-link {
    position:absolute;
    top:-100%;
    left:50%;
    transform:inherit;
    background:var(--primary);
    color:var(--white);
    padding:var(--space-1) 24px;
    border-radius:var(--radius);
    z-index:9999;
    transition:var(--transition)
}
.skip-link:focus {
    top:10px
}
.container {
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:0 20px
}

.hero::before {
    content:'';
    position:absolute;
    top:0;
    right:0;
    width:50%;
    height:100%;
    background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='2'/%3E%3C/svg%3E") repeat;
    opacity:.3
}


.hero h1 {
    font-size:clamp(1.75rem,5vw,3rem);
    font-weight:800;
    line-height:1.2;
    margin-bottom:var(--space-2)
}
.hero-subtitle {
    font-size:clamp(1rem,2vw,1.25rem);
    opacity:.9;
    margin-bottom:var(--space-3);
    max-width:600px
}




.hero-buttons { justify-content: center; 
    display:flex;
    flex-wrap:wrap;
    gap:var(--space-1);
    margin-top:var(--space-3)
}
.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:var(--space-1);
    padding:var(--space-2) 28px;
    border-radius:var(--radius);
    font-weight:600;
    font-size:1rem;
    transition:var(--transition);
    border:none;
    cursor:pointer
}
.btn-primary {
    background:#b45309;
    color:#ffffff;
    font-weight:700
}
.btn-primary:hover {
    background:#92400e;
    color:#ffffff;
    transform:inherit;
    box-shadow:0 10px 20px rgba(0,0,0,0.15)
}
.btn-secondary {
    background:var(--white);
    color:var(--primary);
    border: 1px solid #cbd5e1;
}
.btn-secondary:hover {
    background:var(--bg);
    border-color: var(--primary);
    transform:inherit
}
section {
    padding:var(--space-8) 0
}
.section-header {
    text-align:center;
    margin-bottom:var(--space-5)
}
.section-badge {
    display:inline-block;
    background:var(--primary);
    color:var(--white);
    padding:var(--space-1) 16px;
    border-radius:4px;
    font-size:.875rem;
    font-weight:500;
    margin-bottom:var(--space-1)
}
.section-title {
    font-size:clamp(1.5rem,4vw,2.25rem);
    font-weight:700;
    color:var(--secondary);
    margin-bottom:var(--space-1)
}
.section-desc {
    color:#334155;
    max-width:600px;
    margin:0 auto
}
.services {
    background:var(--white)
}
.services-grid {
    display:grid;
    gap:var(--space-3)
}
.service-card {
    background:var(--bg);
    padding:var(--space-3);
    border-radius:var(--radius);
    transition:var(--transition);
    border:1px solid transparent
}
.service-card:hover {
    border-color:var(--primary-light);
    transform:inherit;
    box-shadow:var(--shadow-lg)
}
.service-icon {
    width:56px;
    height:56px;
    background:var(--primary-dark);
    border-radius:var(--radius);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:var(--space-2)
}
.service-icon svg {
    width:28px;
    height:28px;
    stroke:var(--white);
    fill:none;
    stroke-width:2
}
.service-card h3 {
    font-size:1.125rem;
    font-weight:600;
    color:var(--secondary);
    margin-bottom:var(--space-1)
}
.service-card p {
    color:#334155;
    font-size:.9rem;
    margin-bottom:var(--space-1)
}
.service-link {
    color:var(--primary);
    font-weight:500;
    display:inline-flex;
    align-items:center;
    gap:4px
}
.service-link:hover {
    gap:var(--space-1)
}
.why-us {
    background:var(--bg)
}
.why-grid {
    display:grid;
    gap:var(--space-2)
}
.why-card {
    display:flex;
    gap:var(--space-2);
    background:var(--white);
    padding:var(--space-2);
    border-radius:var(--radius);
    transition:var(--transition)
}
.why-card:hover {
    box-shadow:var(--shadow)
}
.why-icon {
    flex-shrink:0;
    width:48px;
    height:48px;
    background:var(--success);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center
}
.why-icon svg {
    width:24px;
    height:24px;
    stroke:var(--white);
    fill:none;
    stroke-width:2
}
.why-card h3 {
    font-size:1rem;
    font-weight:600;
    color:var(--secondary);
    margin-bottom:4px
}
.why-card p {
    color:#334155;
    font-size:.875rem
}
.process {
    background:var(--white)
}
.process-steps {
    display:flex;
    flex-direction:column;
    gap:var(--space-3);
    position:relative
}
.process-step {
    display:flex;
    gap:var(--space-2);
    align-items:flex-start
}
.step-number {
    flex-shrink:0;
    width:48px;
    height:48px;
    background:var(--primary);
    color:var(--white);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:1.25rem
}
.step-content h3 {
    font-size:1.125rem;
    font-weight:600;
    color:var(--secondary);
    margin-bottom:4px
}
.step-content p {
    color:#334155;
    font-size:.9rem
}
.testimonials {
    background:var(--primary-dark);
    color:var(--white)
}
.testimonials-grid {
    display:grid;
    gap:var(--space-3)
}
.testimonial {
    background:rgba(255,255,255,.1);
    padding:var(--space-3);
    border-radius:var(--radius);
    
}
.testimonial-text {
    font-size:1rem;
    line-height:1.7;
    margin-bottom:var(--space-2);
    font-style:italic
}
.testimonial-author {
    display:flex;
    align-items:center;
    gap:var(--space-1)
}
.author-avatar {
    width:48px;
    height:48px;
    background:var(--accent);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:1.25rem
}
.author-info h4 {
    font-weight:600
}
.author-info span {
    font-size:.875rem;
    opacity:.95
}
.districts {
    background:var(--bg)
}
.districts-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:var(--space-1)
}



.faq {
    background:var(--white)
}



.faq-question svg {
    width:20px;
    height:20px;
    stroke:var(--primary);
    fill:none;
    stroke-width:2;
    transition:var(--transition)
}
.faq-item.active .faq-question svg {
    transform:rotate(180deg)
}

.faq-answer p {
    padding:0 20px 20px;
    color:#334155;
    line-height:1.7
}
.cta {
    background:var(--secondary);
    color:var(--white);
    text-align:center
}
.cta h2 {
    font-size:clamp(1.5rem,4vw,2rem);
    margin-bottom:var(--space-1)
}
.cta p {
    opacity:.95;
    margin-bottom:var(--space-3)
}
.cta-buttons {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:var(--space-1)
}
@media(min-width:768px) {
    
.services-grid {
    grid-template-columns:repeat(2,1fr)
}
.why-grid {
    grid-template-columns:repeat(2,1fr)
}
.testimonials-grid {
    grid-template-columns:repeat(2,1fr)
}
.districts-grid {
    grid-template-columns:repeat(4,1fr)
}
.footer-grid {
    grid-template-columns:repeat(2,1fr)
}

}
@media(min-width:1024px) {
    .services-grid {
    grid-template-columns:repeat(4, 1fr)
}
.why-grid {
    grid-template-columns:repeat(4,1fr)
}
.testimonials-grid {
    grid-template-columns:repeat(4, 1fr)
}
.footer-grid {
    grid-template-columns:repeat(4,1fr)
}
.process-steps {
    flex-direction:row
}
.process-step {
    flex-direction:column;
    text-align:center;
    flex:1
}

}
.site-header {
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:70px;
    background:#ffffff;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    z-index:9998;
    display:flex;
    align-items:center
}
.site-header .container {
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:0 20px
}
.site-logo {
    display:flex;
    align-items:center;
    gap:var(--space-1);
    text-decoration:none
}
.site-logo svg.logo-icon {
    width:46px;
    height:46px;
    flex-shrink:0
}
.logo-text {
    display:flex;
    flex-direction:column;
    line-height:1
}
.logo-text .logo-primary {
    font-size:1.15rem;
    font-weight:800;
    letter-spacing:1px;
    color:#003366
}
.logo-text .logo-secondary {
    font-size:0.85rem;
    font-weight:800;
    letter-spacing:0.5px;
    color:#002244
}
.desktop-nav {
    display:none
}
@media (min-width:992px) {
    .desktop-nav {
    display:flex;
    gap:var(--space-4);
    list-style:none;
    margin:0;
    padding:0
}

}
.desktop-nav a {
    color:#111827;
    font-weight:500;
    font-size:0.95rem;
    text-decoration:none;
    padding:var(--space-1) 0;
    border-bottom:2px solid transparent;
    transition:color 0.2s,border-color 0.2s
}
.desktop-nav a:hover {
    color:#003366;
    border-bottom-color:#003366
}
.header-phone-btn {
    display:none;
    background:#003366;
    color:#fff;
    padding:var(--space-1) 24px;
    border-radius:4px;
    font-weight:600;
    font-size:0.9rem;
    text-decoration:none;
    transition:background 0.2s
}
@media (min-width:992px) {
    .header-phone-btn {
    display:inline-block
}

}
.header-phone-btn:hover {
    background:#002244
}
.menu-toggle-btn {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:44px;
    height:44px;
    background:none;
    border:none;
    cursor:pointer;
    padding:0;
    -webkit-tap-highlight-color:transparent
}
@media (min-width:992px) {
    .menu-toggle-btn {
    display:none
}

}
.menu-toggle-btn span {
    display:block;
    width:24px;
    height:2px;
    background:#0f172a;
    margin:3px 0;
    transition:transform 0.3s,opacity 0.3s
}
.menu-toggle-btn.open span:nth-child(1) {
    transform:rotate(45deg) translate(4px,4px)
}
.menu-toggle-btn.open span:nth-child(2) {
    opacity:0
}
.menu-toggle-btn.open span:nth-child(3) {
    transform:rotate(-45deg) translate(5px,-5px)
}
.mobile-nav-overlay {
    position:fixed;
    top:70px;
    left:0;
    right:0;
    bottom:0;
    background:#ffffff;
    z-index:9997;
    overflow-y:auto;
    display:none;
    padding:var(--space-2)
}
.mobile-nav-overlay.open {
    display:block
}
.mobile-nav-list {
    list-style:none;
    margin:0;
    padding:0
}
.mobile-nav-list li {
    border-bottom:1px solid #e2e8f0
}
.mobile-nav-list a {
    display:block;
    padding:var(--space-2) 10px;
    color:#111827;
    font-size:1.1rem;
    font-weight:600;
    text-decoration:none
}
.mobile-nav-list a:active {
    background:#f1f5f9;
    color:#003366
}
.mobile-contact-btns {
    margin-top:var(--space-4);
    display:flex;
    flex-direction:column;
    gap:var(--space-1)
}
.mobile-call-btn {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:var(--space-1);
    padding:var(--space-2);
    background:#003366;
    color:#fff;
    font-size:1rem;
    font-weight:700;
    text-decoration:none;
    border-radius:4px
}
.mobile-whatsapp-btn {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:var(--space-1);
    padding:var(--space-2);
    background:#15803d;
    color:#fff;
    font-size:1rem;
    font-weight:700;
    text-decoration:none;
    border-radius:4px
}
.site-footer {
    background:#002244;
    color:#fff;
    padding:var(--space-6) 0 20px
}
.footer-grid {
    display:grid;
    gap:var(--space-4);
    margin-bottom:var(--space-5)
}
@media (min-width:768px) {
    .footer-grid {
    grid-template-columns:repeat(2,1fr)
}

}
@media (min-width:1024px) {
    .footer-grid {
    grid-template-columns:1.5fr 1fr 1fr 1fr
}

}
.footer-brand h3 {
    font-size:1.4rem;
    margin-bottom:var(--space-1)
}
.footer-brand p {
    opacity:0.85;
    line-height:1.7;
    font-size:0.9rem
}
.footer-section h4 {
    font-size:1rem;
    margin-bottom:var(--space-2);
    font-weight:600
}
.footer-links {
    list-style:none;
    margin:0;
    padding:0
}
.footer-links li {
    margin-bottom:var(--space-1)
}
.footer-links a {
    color:#ffffff;
    text-decoration:none;
    font-size:0.9rem;
    transition:color 0.2s
}
.footer-links a:hover {
    color:#fff
}
.footer-contact-info p {
    display:flex;
    align-items:flex-start;
    gap:var(--space-1);
    margin-bottom:var(--space-1);
    font-size:0.9rem;
    line-height:1.5
}
.footer-contact-info a {
    color:#fff;
    text-decoration:none
}
.footer-contact-info strong {
    color:#d97706
}
.footer-bottom {
    border-top:1px solid rgba(255,255,255,0.15);
    padding-top:var(--space-2);
    text-align:center;
    font-size:0.85rem;
    opacity:0.8
}
body {
    padding-top:var(--space-8)
}
.sticky-buttons {
    position:fixed;
    bottom:24px;
    right:24px;
    display:flex;
    flex-direction:column;
    gap:var(--space-1);
    z-index:9500
}
.gallery-carousel {
    overflow:hidden;
    width:100%;
    position:relative;
    padding:var(--space-2) 0;
    display:flex
}
.carousel-track {
    display:flex;
    gap:var(--space-3);
    width:max-content;
    animation:scroll-gallery 40s linear infinite;
    will-change:transform
}
.gallery-carousel:hover .carousel-track {
    animation-play-state:paused
}
@keyframes scroll-gallery {
    0% {
    transform:inherit
}
100% {
    transform:inherit
}

}






.sticky-btn {
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 4px 15px rgba(0,0,0,0.2);
    transition:transform 0.2s,box-shadow 0.2s
}
.sticky-btn:hover {
    transform:inherit;
    box-shadow:0 6px 20px rgba(0,0,0,0.25)
}
.sticky-btn.call {
    background:#003366
}
.sticky-btn.whatsapp {
    background:#15803d
}
.sticky-btn svg {
    width:28px;
    height:28px;
    fill:#fff
}
@media (max-width:480px) {
    .sticky-buttons {
    bottom:16px;
    right:16px;
    gap:var(--space-1)
}
.sticky-btn {
    width:52px;
    height:52px
}
.sticky-btn svg {
    width:24px;
    height:24px
}

}
.form-item {
    display:flex;
    flex-direction:column;
    gap:var(--space-1)
}
.form-item label {
    font-size:0.95rem;
    font-weight:600;
    color:#4b5563;
    margin-left:4px
}
.form-item input,.form-item select,.form-item textarea {
    width:100%;
    padding:var(--space-2) 20px;
    background:#ffffff;
    border:1px solid #d1d5db;
    border-radius:4px;
    color: #111827;
    font-family:inherit;
    font-size:1.05rem;
    outline:none;
    transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow:inset 0 2px 4px rgba(0,0,0,0.2)
}
.form-item input::placeholder,.form-item textarea::placeholder {
    color:#475569
}
.form-item select option {
    background-color:#ffffff;
    color: #111827
}
.form-item input:focus,.form-item select:focus,.form-item textarea:focus {
    background:#f8fafc;
    border-color:#003366;
    box-shadow:0 0 0 4px rgba(0,150,255,0.15),inset 0 2px 4px rgba(0,0,0,0.1);
    transform:inherit
}
.submit-action-btn {
    margin-top:var(--space-2);
    width:100%;
    padding:var(--space-2);
    background:#15803d;
    color:#ffffff;
    border:none;
    border-radius:4px;
    font-size:1.25rem;
    font-weight:700;
    letter-spacing:0.5px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:var(--space-1);
    cursor:pointer;
    transition:transform 0.3s ease,box-shadow 0.3s ease;
    box-shadow:none;
    text-shadow:0 1px 2px rgba(0,0,0,0.2)
}
.submit-action-btn:hover {
    transform:inherit scale(1.01);
    box-shadow:none;
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,0.05)
}
.quote-wrapper .quote-right {
    padding:var(--space-5) 30px
}
.form-item input,.form-item select,.form-item textarea {
    padding:var(--space-2) 16px
}

}
.footer-seo-accordions details>summary::-webkit-details-marker {
    display:none
}
.footer-seo-accordions details[open] summary .acc-icon {
    transform:rotate(45deg);
    transition:transform 0.3s ease
}
.footer-seo-accordions details summary .acc-icon {
    transition:transform 0.3s ease
}
.footer-links a:hover,.footer-seo-accordions a:hover {
    color:#fff !important;
    text-decoration:underline !important;
    padding-left:4px;
    transition:all 0.2s
}
.footer-seo-accordions a:hover {
    color:#fff !important
}
.google-reviews {
    padding:var(--space-10) 0;
    background-color:#f8fafc;
    overflow:hidden
}
.reviews-slider-wrapper {
    position:relative;
    width:100%;
    overflow:hidden;
    padding:var(--space-2) 0
}
.reviews-slider-wrapper::before,.reviews-slider-wrapper::after {
    content:'';
    position:absolute;
    top:0;
    width:100px;
    height:100%;
    z-index:2;
    pointer-events:none
}
.reviews-slider-wrapper::before {
    left:0;
    background:linear-gradient(to right,#f8fafc,transparent)
}
.reviews-slider-wrapper::after {
    right:0;
    background:linear-gradient(to left,#f8fafc,transparent)
}
.reviews-track {
    display:flex;
    gap:var(--space-4);
    width:max-content;
    animation:scroll-reviews 40s linear infinite
}
.reviews-track:hover {
    animation-play-state:paused
}
@keyframes scroll-reviews {
    0% {
    transform:inherit
}
100% {
    transform:inherit
}

}
.review-card {
    background:#fff;
    border-radius:4px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
    padding:var(--space-3);
    width:350px;
    flex-shrink:0;
    border:1px solid rgba(0,0,0,0.03);
    transition:transform 0.3s ease,box-shadow 0.3s ease
}
.review-card:hover {
    transform:inherit;
    box-shadow:none;
    justify-content:space-between;
    align-items:center;
    margin-bottom:var(--space-2)
}
.reviewer-info {
    display:flex;
    align-items:center;
    gap:var(--space-1)
}
.reviewer-avatar {
    width:40px;
    height:40px;
    border-radius:50%;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    font-size:1.1rem
}
.reviewer-name {
    font-weight:600;
    color:#334155;
    font-size:1rem
}
.google-icon {
    width:24px;
    height:24px
}
.review-stars {
    font-size:1.1rem;
    margin-bottom:var(--space-2);
    letter-spacing:2px
}
.review-text {
    color:#334155;
    font-size:0.95rem;
    line-height:1.6;
    margin:0;
    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    overflow:hidden
}
@media (max-width:768px) {
    .review-card {
    width:300px
}
@keyframes scroll-reviews {
    0% {
    transform:inherit
}
100% {
    transform:inherit
}

}

}

/* Blog Specific Styles */
.table-of-contents {
    background: var(--bg);
    padding:var(--space-3);
    border-radius: var(--radius);
    border: 1px solid #d1d5db;
    margin-bottom:var(--space-4);
}
.table-of-contents h2 {
    font-size: 1.4rem !important;
    color: var(--text) !important;
    margin-top: 0 !important;
    margin-bottom:var(--space-2) !important;
}
.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.table-of-contents li {
    margin-bottom:var(--space-1);
}
.table-of-contents a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.table-of-contents a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   TIPOGRAFIK HIYERARSI (Modular Scale: 1.250 Major Third)
   ========================================================================== */
body {
    font-size: 16px; /* Base 16px */
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    margin-top: 0;
    margin-bottom: var(--space-3);
}

h1 {
    font-size: 2.441rem; /* ~39px */
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.953rem; /* ~31px */
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.563rem; /* ~25px */
    line-height: 1.35;
    font-weight: 700;
}

h4 {
    font-size: 1.25rem; /* 20px */
    line-height: 1.4;
    font-weight: 600;
}

h5 {
    font-size: 1rem; /* 16px */
    line-height: 1.5;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: var(--space-3);
}

/* Koyu arka planlardaki metinlerin renkleri icin utility override'lari korundu (inline style ile color verilmisler etkilenmez) */


/* ==========================================================================
   SUBPAGE & BLOG COMPONENTS (Restored Layouts)
   ========================================================================== */

/* Breadcrumbs */
.breadcrumb {
    background: var(--bg);
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--border-color);
}
.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}
.breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #94a3b8;
}
.breadcrumb-list a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb-list a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: var(--space-6) 0;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-2);
}

/* Content & Sidebar Grid */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-4);
    align-items: start;
    padding: var(--space-6) 0;
}

@media (max-width: 991px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}

.main-content {
    min-width: 0;
}

.sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.sidebar-card {
    background: var(--bg);
    padding: var(--space-3);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.sidebar-card.cta-card {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    border: none;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card li {
    margin-bottom: var(--space-2);
}

.sidebar-card a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.sidebar-card a svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.sidebar-card a:hover {
    text-decoration: underline;
}

/* Feature Box */
.feature-box {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
    padding: var(--space-3);
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

/* Missing Buttons */
.btn-accent {
    background: var(--accent);
    color: var(--white);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}
.btn-accent:hover {
    background: #b45309; /* Darker orange */
}



/* ==========================================================================
   ASAMA 3: MIKRO-ETKILESIIMLER VE ERISILEBILIRLIK (A11Y)
   ========================================================================== */

/* Erişilebilirlik (Focus Rings) */
*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: none !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.2) !important;
}

/* Dokunma Hedefleri (Touch Targets for Mobile) */
.mobile-nav-list a, .footer-links a, .breadcrumb-list a {
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 44px;
}

.btn, .btn-accent, .submit-action-btn {
    min-height: 44px;
}

/* ==========================================================================
   ASAMA 4: COMPONENT REDESIGN
   ========================================================================== */

/* Hero Banner */




/* Data Tables (Zebra Striping) */
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: var(--space-5);
    box-shadow: var(--shadow);
}
table thead {
    background: var(--primary-dark);
    color: var(--white);
    text-align: left;
}
table th, table td {
    padding: var(--space-3) var(--space-3);
    border-bottom: 1px solid var(--border-color);
}
table th {
    font-weight: 600;
}
table tbody tr:nth-child(even) {
    background-color: var(--bg-page); /* Zebra stripe */
}
table tbody tr:hover {
    background-color: rgba(0, 51, 102, 0.02);
}

/* Form Optimization (Cognitive Load Reduction) */
.form-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: var(--space-3);
}
.form-item label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-left: 0;
}
.form-item input::placeholder, 
.form-item textarea::placeholder {
    color: #94a3b8; /* Lighter, subtle placeholder */
}

/* Comparison Table Semantic Colors */





/* ==========================================================================
   ULTIMATE HERO REDESIGN
   ========================================================================== */
.hero {
    padding: var(--space-12) 0 var(--space-10);
    background-color: #051024;
    background-image: 
        linear-gradient(to bottom, rgba(0, 34, 68, 0.85), rgba(0, 34, 68, 0.95)),
        url('/images/samsun-evden-eve-nakliyat-gorsel-1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: left;
    border-bottom: 4px solid var(--accent);
}

/* Optional glow effect */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 40%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 119, 6, 0.15); /* Accent tint */
    color: var(--accent);
    border: 1px solid rgba(217, 119, 6, 0.3);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-3);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 700px;
    margin-bottom: var(--space-4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin: var(--space-6) 0;
    padding: var(--space-3) var(--space-6);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    
}

@media (max-width: 600px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-3);
        padding: var(--space-3);
    }
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons { justify-content: center; 
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.85rem;
    color: #e2e8f0;
    transition: background 0.2s;
}
.trust-pill:hover {
    background: rgba(255,255,255,0.12);
}
.trust-pill svg {
    color: #38bdf8; /* light blue pop */
}

/* ==========================================================================
   ULTIMATE 50/50 SPLIT HERO
   ========================================================================== */
.hero-split {
    background-color: var(--primary-dark);
    background-image: linear-gradient(to bottom, rgba(0, 34, 68, 0.92), rgba(0, 34, 68, 0.96)), url("/images/samsun-evden-eve-nakliyat-gorsel-1.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: var(--space-8) 0;
    border-bottom: 4px solid var(--accent);
}

.hero-split .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    align-items: center;
}

@media (max-width: 991px) {
    .hero-split .container {
        grid-template-columns: 1fr;
        padding-top: var(--space-4);
        padding-bottom: var(--space-4);
    }
}

.hero-text-side { margin: 0 auto; text-align: center; 
    max-width: 560px;
}

.hero-text-side h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
}

.hero-text-side p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: var(--space-4);
}

.hero-buttons { justify-content: center; 
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 14px 28px;
    font-size: 1.1rem;
}

/* The Collage Side */
.hero-image-side {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-image-side {
        height: 400px;
        order: -1; /* Move image to top on mobile */
    }
}

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

.hero-collage-img {
    position: absolute;
    border-radius: 6px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 6px solid var(--primary-dark); /* Negative space trick */
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-collage-img:hover {
    z-index: 10 !important;
}

/* Image 1: Top Right (Elevator/Building) */
.img-top-right {
    width: 55%;
    height: 60%;
    top: 5%;
    right: 0;
    z-index: 1;
}
.img-top-right:hover { transform: scale(1.03) translateY(-5px) rotate(2deg); }

/* Image 2: Bottom Left (Packing) */
.img-bottom-left {
    width: 55%;
    height: 60%;
    bottom: 5%;
    left: 0;
    z-index: 2;
}
.img-bottom-left:hover { transform: scale(1.03) translateY(-5px) rotate(-2deg); }

/* Image 3: Main Center (Truck) */
.img-main {
    width: 50%;
    height: 65%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border: 6px solid var(--accent); /* Stand out */
}
.img-main:hover {
    transform: translate(-50%, -50%) scale(1.05) translateY(-5px);
}

/* Single Image Hero */
.hero-single-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-single-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--accent);
}

.hero-image-badge .badge-icon {
    font-size: 24px;
    background: rgba(217, 119, 6, 0.1);
    padding: 10px;
    border-radius: 50%;
}

.hero-image-badge .badge-text {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .hero-image-badge {
        bottom: 10px;
        left: 10px;
        padding: 12px 16px;
    }
    .hero-single-image-wrapper {
        max-width: 400px;
    }
}

/* ==========================================================================
   THE ULTIMATE CENTERED HERO (LOGISTICS ENGINE)
   ========================================================================== */
.hero {
    background-color: var(--primary-dark);
    background-image: linear-gradient(to bottom, rgba(0, 34, 68, 0.88), rgba(0, 34, 68, 0.98)), url("/images/samsun-evden-eve-nakliyat-gorsel-1.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: var(--space-12) 0 var(--space-10);
    color: var(--white);
    text-align: center;
    border-bottom: 4px solid var(--accent);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-4);
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: var(--space-8);
    max-width: 700px;
}

/* The Logistics Quick-Quote Bar */
.hero-booking-bar {
    background: #ffffff;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.booking-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 8px 16px;
    border-right: 1px solid #e2e8f0;
}

.booking-input-group:last-of-type {
    border-right: none;
}

.booking-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.booking-select {
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    width: 100%;
    outline: none;
    cursor: pointer;
    padding: 0;
}

.booking-btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.booking-btn:hover {
    background: #d97706; /* darker accent */
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-booking-bar {
        flex-direction: column;
        padding: 16px;
        gap: 16px;
    }
    .booking-input-group {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        width: 100%;
        padding: 8px 0 16px 0;
    }
    .booking-btn {
        width: 100%;
        margin-top: 8px;
    }
}

/* ==========================================================================
   INTERACTIVE STEP-IN HERO (THE FUNNEL)
   ========================================================================== */
.hero {
    background-color: var(--primary-dark);
    background-image: linear-gradient(to bottom, rgba(0, 34, 68, 0.90), rgba(0, 34, 68, 0.98)), url("/images/samsun-evden-eve-nakliyat-gorsel-1.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: var(--space-12) 0 var(--space-12);
    color: var(--white);
    text-align: center;
    border-bottom: 4px solid var(--accent);
}

.interactive-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background: rgba(217, 119, 6, 0.15);
    padding: 8px 16px;
    border-radius: 4px; /* No pills, industrial */
    margin-bottom: var(--space-4);
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.interactive-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-8);
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Options Grid */
.interactive-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    width: 100%;
}

@media (max-width: 991px) {
    .interactive-options-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Individual Premium Cards */
.interactive-option-card {
    background: #ffffff;
    border-radius: 8px; /* Standard premium radius */
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    color: #0f172a;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.interactive-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: var(--accent);
}

/* Tiny top accent line on hover for ultra-premium feel */
.interactive-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.interactive-option-card:hover::before {
    transform: scaleX(1);
}

.option-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(217, 119, 6, 0.15);
    color: var(--accent);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-3);
    transition: background 0.3s, color 0.3s;
}

.interactive-option-card:hover .option-icon-wrapper {
    background: var(--accent);
    color: #ffffff;
}

.option-text h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #0f172a;
    transition: color 0.3s;
}

.interactive-option-card:hover .option-text h3 {
    color: var(--primary-dark);
}

.option-text p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.option-arrow {
    align-self: flex-end;
    margin-top: var(--space-4);
    font-size: 1.5rem;
    font-weight: 700;
    color: #cbd5e1;
    transition: color 0.3s, transform 0.3s;
}

.interactive-option-card:hover .option-arrow {
    color: var(--accent);
    transform: translateX(5px);
}

/* ==========================================================================
   PREMIUM CLASSIC HERO (BANNER DESIGN)
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 85vh; /* Gives it a massive, imposing banner feel */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-dark);
    /* The requested blue overlay over the site photo */
    background-image: 
        linear-gradient(to bottom, rgba(3, 23, 49, 0.82), rgba(3, 23, 49, 0.96)), 
        url('/images/samsun-evden-eve-nakliyat-gorsel-1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding: var(--space-8) var(--space-4);
    text-align: center;
    overflow: hidden;
    border-bottom: 4px solid var(--accent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Premium Typography for H1 */
.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: var(--space-4);
    text-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Deep architectural shadow */
}

/* The small text requested */
.hero p.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    line-height: 1.6;
    color: #cbd5e1; /* Off-white for perfect readability */
    max-width: 680px;
    margin: 0 auto var(--space-6) auto;
}

/* The 2 buttons */
.hero-buttons {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Primary Accent Button */
.hero-btn-primary {
    background: var(--accent);
    color: #ffffff;
    border: 2px solid var(--accent);
    box-shadow: none;
}

.hero-btn-primary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: none;
}

/* Secondary Button (WhatsApp or Call) */
.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px); /* Very subtle, just to separate from bg */
}

.hero-btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-dark);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   TRUST BAR (GÜVEN BANDI)
   ========================================================================== */
.trust-bar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: var(--space-4) 0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 51, 102, 0.08); /* Primary color low opacity */
    color: var(--primary);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .trust-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .trust-item {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   SERVICES GRID (HİZMETLER)
   ========================================================================== */
.services {
    padding: var(--space-12) 0;
    background: var(--bg); /* Very light gray */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-6);
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: var(--space-6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}

/* Accent line top */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent); /* Uses the red */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 51, 102, 0.06);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-4);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: var(--space-2);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--space-5);
    flex-grow: 1; /* Pushes link to bottom */
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s, transform 0.2s;
}



.service-card:hover .service-link {
    color: var(--accent); /* Red */
}

.trust-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

/* ==========================================================================
   MACRO LAYOUT & ARCHITECTURE
   ========================================================================== */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }
}

.bg-white {
    background-color: #ffffff;
}

.bg-light {
    background-color: #f3f4f6; /* Very crisp light cool gray */
}

.bg-dark {
    background-color: var(--primary-dark);
    color: #ffffff;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark p {
    color: #ffffff !important;
}

/* Fix generic section header constraints */
.section-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
    color: var(--primary-dark);
}

.section-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #64748b;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 51, 102, 0.08);
    color: var(--primary);
    border: 1px solid rgba(0, 51, 102, 0.15);
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
}

/* ==========================================================================
   UI/UX PRO MAX - UNIVERSAL GRIDS & CARDS
   ========================================================================== */

/* WHY CHOOSE US GRID */
.why-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: var(--space-6) !important;
    align-items: stretch;
}

.why-card {
    background: #ffffff;
    padding: var(--space-5) !important;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(220, 38, 38, 0.1); /* Subtle Red */
    color: var(--accent); /* Red */
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-4) !important;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* PROCESS GRID (NASIL ÇALIŞIRIZ) */
.process-steps {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: var(--space-8) var(--space-6) !important;
    position: relative;
}

.process-step {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    text-align: center;
    padding: 0 !important;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4) auto;
    border: 2px solid var(--accent);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* Add connecting line behind steps for desktop */
@media (min-width: 992px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 50px;
        right: 50px;
        height: 2px;
        background: #e2e8f0;
        z-index: 1;
    }
}

/* ==========================================================================
   DISTRICTS GRID (HİZMET BÖLGELERİMİZ)
   ========================================================================== */
.districts-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: var(--space-4) !important;
}

.district-link {
    display: flex !important;
    align-items: center;
    gap: 16px;
    background: #ffffff !important;
    border: 1px solid #e2e8f0;
    padding: var(--space-4) !important;
    border-radius: 12px !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark) !important;
}

.district-link svg {
    width: 32px;
    height: 32px;
    padding: 6px;
    background: rgba(0, 51, 102, 0.06);
    color: var(--primary);
    border-radius: 8px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.district-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}

.district-link:hover svg {
    background: var(--accent); /* Red */
    color: #ffffff;
}



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

/* ==========================================================================
   UI/UX PRO MAX - BOTTOM SECTIONS (Gallery, Quote, Features, FAQ, CTA)
   ========================================================================== */

/* GALLERY (GALERİ) */
.gallery {
    overflow: hidden;
}














.quote-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.quote-section p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: var(--space-6);
    opacity: 0.9;
}







/* FEATURES TABLE (KARŞILAŞTIRMA) */



























.faq-question:hover {
    color: var(--accent);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

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



/* CTA SECTION */
.cta {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.cta p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto var(--space-8) auto;
    opacity: 0.9;
    line-height: 1.6;
}

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

.cta-buttons .btn {
    padding: 18px 40px;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}


/* ==========================================================================
   UI/UX PRO MAX - BOTTOM SECTIONS (Gallery, Quote, Features, FAQ, CTA)
   ========================================================================== */

/* GALLERY (GALERİ) */
.gallery {
    overflow: hidden;
}














.quote-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.quote-section p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: var(--space-6);
    opacity: 0.9;
}







/* FEATURES TABLE (KARŞILAŞTIRMA) */



























.faq-question:hover {
    color: var(--accent);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

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



/* CTA SECTION */
.cta {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.cta p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto var(--space-8) auto;
    opacity: 0.9;
    line-height: 1.6;
}

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

.cta-buttons .btn {
    padding: 18px 40px;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}


/* PROSE FOR SEO CONTENT */
.prose {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
}

.prose h2, .prose h3, .prose h4 {
    color: var(--primary-dark);
    font-weight: 800;
    margin-top: 2em;
    margin-bottom: 1em;
    letter-spacing: -0.01em;
}

.prose h2 { font-size: 2rem; }
.prose h3 { font-size: 1.5rem; }

.prose p {
    margin-bottom: 1.5em;
}

.prose ul, .prose ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.prose li {
    margin-bottom: 0.5em;
}

.prose strong {
    color: var(--primary-dark);
}

/* GALERİ - YATAY KAYDIRMA */


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}
.gallery-grid .gallery-item {
    width: 100% !important;
    height: 350px; /* Or auto, but fixed height ensures perfect squares/rectangles */
    flex-shrink: unset;
}
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.gallery-grid::-webkit-scrollbar {
    height: 8px;
}
.gallery-grid::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}
.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}








.quote-form input, .quote-form select, .quote-form textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    font-size: 1.05rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
    background: #f8fafc;
    margin-bottom: 16px;
    font-family: inherit;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
    border-color: var(--accent);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}
.quote-form button {
    width: 100%;
    padding: 20px;
    background: var(--accent);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.quote-form button:hover {
    background: #b91c1c; /* Darker red */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

/* PREMIUM TABLE (Neden Biz) */

.geo-table-container h2 {
    background: var(--primary-dark);
    color: #ffffff !important;
    margin: 0;
    padding: 30px;
    text-align: center;
    font-size: 1.8rem;
    border-bottom: 4px solid var(--accent);
}







.services-grid { grid-template-columns: repeat(3, 1fr) !important; }

/* ENHANCED FORM INPUTS */
.quote-form input, .quote-form select, .quote-form textarea {
    width: 100%;
    padding: 20px 24px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    font-size: 1.05rem;
    color: #0f172a;
    background-color: #f8fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.quote-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/200.svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    padding-right: 48px;
}
.quote-form input:hover, .quote-form select:hover, .quote-form textarea:hover {
    border-color: #cbd5e1;
    background-color: #ffffff;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
    border-color: var(--accent);
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
}

/* ENHANCED TABLE */




/* SLAYT GALERİ */



    100% { transform: translateX(calc(-350px * 7 - var(--space-4) * 7)); } /* Adjust based on item count */
}
/* Gallery Button */



/* SEO İÇERİKLERİ (GENİŞ EKRAN TASARIMI) */
.prose {
    max-width: 100% !important; /* Ekranı geniş kullanmalı */
}

@media (max-width: 992px) {
    
}




.faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1) !important;
    border-color: #cbd5e1 !important;
}
.faq-item summary {
    padding: 24px 30px !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: var(--primary-dark) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    list-style: none !important;
}
.faq-item summary::-webkit-details-marker {
    display: none !important;
}
.faq-item summary svg {
    color: var(--accent) !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.faq-item[open] summary svg {
    transform: rotate(180deg) !important;
}
.faq-item[open] summary {
    border-bottom: 1px solid #f1f5f9 !important;
}

/* CTA PREMIUM */
.cta {
    position: relative;
    background: url('../../img/samsun-asansorlu-nakliyat-kamyonu.webp') center/cover no-repeat;
    padding: 120px 0;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.95), rgba(0, 26, 51, 0.98));
}
.cta .container {
    position: relative;
    z-index: 2;
    text-align: center;
}
.cta h2 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}



/* SAFER SEO CONTENT WIDE DISPLAY */
.prose {
    max-width: 100% !important;
}


/* GERÇEK DERGİ MİMARİSİ (CSS COLUMNS) */

.seo-content article {
    margin-bottom: 40px;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--accent);
}
.seo-content > .container > div:not(.section-header):not(article) {
    column-count: 2;
    column-gap: 60px;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--accent);
}
.seo-text-columns h3, .seo-content h3 {
    break-after: avoid;
    break-inside: avoid;
    margin-top: 0;
}
.seo-text-columns p, .seo-content p, .seo-content ul, .seo-content ol, .seo-content div {
    break-inside: avoid;
}

@media (max-width: 992px) {
    .seo-text-columns, .seo-content > .container > div:not(.section-header):not(article) {
        column-count: 1;
    }
}


.trust-item { color: var(--primary-dark) !important; }
.trust-icon svg { width: 32px !important; height: 32px !important; stroke: var(--accent) !important; color: var(--accent) !important; }




/* REBUILT SEO CARDS */
.mega-seo-content .container, .seo-content .container {
    max-width: 1200px !important;
}
.seo-text-columns {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
    margin-top: 40px !important;
}
@media (max-width: 992px) {
    .seo-text-columns { grid-template-columns: 1fr !important; }
}
.seo-card {
    background: #ffffff !important;
    padding: 40px !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    border-top: 5px solid var(--accent) !important;
}
.seo-card h3 {
    color: var(--primary-dark) !important;
    font-size: 1.4rem !important;
    margin-bottom: 20px !important;
}
.seo-card p, .seo-card ul {
    color: #475569 !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
}






/* Features Column */

/* Bad Column */

/* Good Column */






@media (max-width: 768px) {
    
    
}

/* Assuming we duplicate the entire set EXACTLY ONCE */
}






/* ELEGANT BUTTON */
.btn-elegant-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.btn-elegant {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-elegant:hover {
    background: #f8fafc;
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    transform: translateY(-2px);
}
.btn-elegant svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}
.btn-elegant:hover svg {
    transform: translateX(4px);
}

.trust-icon svg {
    width: 32px !important;
    height: 32px !important;
    stroke: var(--accent) !important;
    color: var(--accent) !important;
    fill: none !important;
    stroke-width: 2 !important;
}
.trust-item {
    color: var(--primary-dark) !important;
}

.quote-section > .container { position: relative; z-index: 2; }

/* ULTIMATE SMOOTH JS GALLERY */


/* Left and right fade gradients for seamless look */





.gallery-item:active {
    cursor: grabbing;
}




.btn-elegant-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.btn-elegant {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #ffffff;
    color: var(--primary-dark);
    font-size: 1.05rem;
    font-weight: 700;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.btn-elegant:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.btn-elegant svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}
.btn-elegant:hover svg {
    transform: translateX(4px);
}

/* VS COMPARISON CARDS */


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

.vs-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 5px;
}



.vs-list li svg {
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    stroke-width: 3;
    fill: none;
}
/* Bad Card Styles */

.vs-bad .vs-header h3 { color: #ef4444; }
.vs-bad 
.vs-bad .vs-list li svg { stroke: #ef4444; }

/* Good Card Styles */

.vs-good .vs-header h3 { color: var(--primary-dark); }
.vs-good 
.vs-good 
.vs-good .vs-list li svg { stroke: #10b981; }



@media (max-width: 900px) {
    
    
}







/* =========================================
   2. GALLERY (İŞİMİZDEN KARELER)
   ========================================= */
.gallery-section {
    padding: 80px 0;
    background: #f8fafc;
    overflow: hidden;
}
.gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.gallery-container::before, .gallery-container::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.gallery-container::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}
.gallery-container::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}
.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}
.gallery-item {
    width: 320px;
    height: 320px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    flex-shrink: 0;
    cursor: pointer;
    /* Removed all translate3d/scale from item itself to prevent conflicts */
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}
/* Simplified hover that doesn't break JS */
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,26,51,0.9), transparent);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* =========================================
   3. COMPARISON TABLE (NEDEN BİZ)
   ========================================= */
.premium-comparison {
    max-width: 900px;
    margin: 40px auto;
}
.vs-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    position: relative;
}
.vs-card {
    flex: 1;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    background: #ffffff;
    border: 1px solid #e2e8f0;
}
.vs-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}
.vs-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}
.vs-subtitle {
    font-size: 1rem;
    font-weight: 600;
}
.vs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vs-list li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    color: #475569;
}
.vs-list li svg {
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    fill: none;
    stroke-width: 2;
}
.vs-bad {
    border-top: 5px solid #ef4444;
}
.vs-bad .vs-header h3 { color: #ef4444; }
.vs-bad .vs-subtitle { color: #64748b; }
.vs-bad .vs-list li svg { stroke: #ef4444; }

.vs-good {
    border-top: 5px solid #10b981;
    background: #f8fafc;
}
.vs-good .vs-header h3 { color: #003366; }
.vs-good .vs-subtitle { color: #10b981; }
.vs-good .vs-list li { color: #003366; font-weight: 600; }
.vs-good .vs-list li svg { stroke: #10b981; }

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #003366;
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 5px #ffffff;
    z-index: 2;
}
@media (max-width: 900px) {
    .vs-container { flex-direction: column; }
    .vs-divider { top: auto; left: 50%; transform: translate(-50%, -50%); margin-top: -15px; }
}


/* =========================================
   1. QUOTE SECTION (MINIMALIST & ELEGANT)
   ========================================= */
.quote-section {
    background: var(--primary-dark);
    position: relative;
    color: var(--white);
}
.quote-section .section-title {
    color: var(--white) !important;
}
.quote-section .section-desc {
    color: rgba(255,255,255,0.9) !important;
}
.quote-form {
    background: #ffffff;
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
}
.quote-form input, .quote-form select, .quote-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    color: var(--primary-dark);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}
.quote-form button {
    width: 100%;
    padding: 18px;
    background: var(--accent); /* Red */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.quote-form button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .quote-form { padding: 30px 20px; }
}

/* =========================================
   FAQ (HTML5 DETAILS)
   ========================================= */
.faq-details {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    margin-bottom: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    overflow: hidden;
}
.faq-details:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}
.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    cursor: pointer;
    list-style: none;
    transition: color 0.3s ease;
}
.faq-summary::-webkit-details-marker {
    display: none;
}
.faq-summary:hover {
    color: var(--accent);
}
.faq-summary svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-details[open] .faq-summary {
    border-bottom: 1px solid #f1f5f9;
}
.faq-details[open] .faq-summary svg {
    transform: rotate(180deg);
    color: var(--accent);
}
.faq-body {
    padding: 24px 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    background: #fafafa;
}


/* =========================================
   PREMIUM SEO HEADER
   ========================================= */
.seo-premium-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.05);
    margin-bottom: 60px;
    border-left: 8px solid var(--accent);
}
@media (max-width: 992px) {
    .seo-premium-header {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 30px;
    }
}
.seo-premium-header-title h1, .seo-premium-header-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-dark);
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}
.seo-premium-header-title .highlight {
    color: var(--accent);
}
.seo-premium-header-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
}
.seo-premium-header-content mark {
    background: rgba(220, 38, 38, 0.1);
    color: var(--accent);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}


/* =========================================
   MOBILE FIXES (OVERFLOW & ALIGNMENT)
   ========================================= */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    /* Make form grid stack */
    .form-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    /* Quote form padding */
    .quote-form {
        padding: 25px !important;
    }

    /* VS Cards padding */
    .vs-card {
        padding: 25px !important;
    }
    .vs-container {
        gap: 20px !important;
    }

    /* SEO Premium Header padding */
    .seo-premium-header {
        padding: 25px !important;
        margin-bottom: 30px !important;
        gap: 20px !important;
    }
    
    .seo-premium-header-title h1, .seo-premium-header-title h2 {
        font-size: 1.8rem !important;
    }
    
    /* SEO standard cards padding */
    .seo-card {
        padding: 25px !important;
    }
    
    .seo-text-columns {
        gap: 20px !important;
    }
    
    /* Fix global container paddings on very small devices if needed */
    .section-padding {
        padding: 60px 0 !important;
    }
}

/* Prevent any accidental horizontal scroll globally */
html, body {
    overflow-x: hidden;
    width: 100%;
}


@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 280px !important;
        height: 200px !important;
    }
    
    /* General Image Fix */
    img {
        max-width: 100%;
        height: auto;
    }
}


@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}


@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--space-4) !important;
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .process-steps::before {
        display: none !important; /* hide the connecting line on multi-row grids */
    }
}
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr !important;
    }
    .process-steps {
        grid-template-columns: 1fr !important;
        gap: var(--space-5) !important;
    }
}


@media (max-width: 991px) {
    .districts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .districts-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-3) !important;
    }
}


/* PROCESS STEP MOBILE FIX */
.process-step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}
.step-number {
    margin: 0 auto 15px auto !important;
}


/* =========================================
   PREMIUM PRO MAX FOOTER
   ========================================= */
.site-footer {
    background: var(--primary-dark);
    color: #cbd5e1;
    padding: 80px 0 40px;
    border-top: 4px solid var(--accent);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-brand p {
    margin-top: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 400px;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--accent);
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-label {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #64748b;
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

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

.footer-bottom-links a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* Footer Map Styles */
.footer-map-wrapper {
    margin-top: 24px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    background: #0f172a;
}
.footer-map-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: var(--radius);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.footer-map {
    width: 100%;
    height: 180px;
    display: block;
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(85%);
    transition: filter 0.3s ease;
}
.footer-map:hover {
    filter: invert(90%) hue-rotate(180deg) brightness(100%) contrast(100%);
}

/* Fix for 7 items in a 3-column grid to center the last item */
@media (min-width: 992px) {
    .services-grid > .service-card:nth-child(7):last-child {
        grid-column: 2; /* Center in 3-col grid */
    }
}
@media (max-width: 991px) and (min-width: 769px) {
    .services-grid > .service-card:nth-child(7):last-child {
        grid-column: 1 / span 2; /* Full width in 2-col grid */
        max-width: 50%;
        margin: 0 auto;
    }
}


/* PAGE HEADER (SAYFA ÜST BİLGİSİ) */
.page-header {
    background: var(--primary-dark);
    padding: 80px 0;
    text-align: center;
}
.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}
.page-header p {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* BLOG KARTLARI (SAYFALAR VE REHBERLER) */
.blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}
.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #e2e8f0;
}
.blog-card-content {
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-content h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: var(--space-2);
    line-height: 1.4;
    transition: color 0.2s;
}
.blog-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}
.blog-card:hover .blog-card-content h2 {
    color: var(--accent);
}

/* MAKALE İÇİ GÖRSELLER */
.article-cover-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 40px 0;
    display: block;
}

/* BLOG TLDR / ATOMIC ANSWER KUTUSU */
.atomic-answer {
    background: #f0f9ff;
    border-left: 5px solid var(--accent);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1e293b;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.blog-article { max-width: 900px !important; margin: 0 auto 40px auto !important; }


/* PREMIUM BLOG HERO */
.seo-premium-header img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.post-meta-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}
.post-meta-info {
    display: flex;
    flex-direction: column;
}
.post-meta-author {
    font-weight: 700;
    color: var(--primary-dark);
}
.post-meta-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* KUSURSUZ BLOG METİN ALANI */
.blog-article {
    background: #ffffff;
    padding: 60px 80px !important;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    margin: -40px auto 60px auto !important; /* Pull up slightly over the background */
    position: relative;
    z-index: 10;
    max-width: 900px !important;
    border-top: 6px solid var(--accent);
}
@media (max-width: 768px) {
    .blog-article {
        padding: 40px 20px !important;
        margin: 0 auto 40px auto !important;
    }
}

/* ==========================================================================
   BLOG MASTER TEMPLATE (ULTRA PREMIUM EDITORIAL)
   ========================================================================== */
.blog-master-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0 160px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}
.blog-master-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: #ffffff;
    border-radius: 40px 40px 0 0;
}
.blog-category-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: #38bdf8;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}
.blog-master-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto 24px auto;
    letter-spacing: -0.03em;
    color: #ffffff;
}
.blog-master-hero .lead {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 32px auto;
    line-height: 1.6;
}
.blog-master-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.blog-master-meta .avatar {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}
.blog-master-meta .info {
    text-align: left;
    display: flex;
    flex-direction: column;
}
.blog-master-meta .author {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
}
.blog-master-meta .date {
    font-size: 0.85rem;
    color: #94a3b8;
}
.blog-master-cover {
    max-width: 1000px;
    margin: -120px auto 60px auto;
    position: relative;
    z-index: 10;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    background: #fff;
    padding: 10px;
}
.blog-master-cover img {
    width: 100%;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}
.blog-master-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 0 80px 0;
    background: transparent;
    box-shadow: none;
    border: none;
}
.blog-master-body .atomic-answer {
    background: #ffffff;
    border-left: 5px solid var(--accent);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    margin-bottom: 50px;
    font-size: 1.15rem;
}

/* UI KIT STRICT BLOG COMPONENTS */
.article-cover {
    margin: 0 0 var(--space-4) 0;
}
.article-cover img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: block;
}
.post-meta-standard {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--space-2);
}
.atomic-answer {
    border-radius: var(--radius); /* override the 16px from before */
}

/* BLOG CTA BOX */
.blog-cta-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: var(--space-5);
    border-radius: var(--radius);
    margin: var(--space-6) 0;
    text-align: center;
    box-shadow: var(--shadow);
}
.blog-cta-box h3 {
    margin-top: 0 !important;
    color: var(--primary-dark) !important;
    font-size: 1.5rem !important;
    margin-bottom: var(--space-2) !important;
}
.blog-cta-box p {
    margin-bottom: var(--space-4) !important;
    font-size: 1.1rem;
    color: var(--text-secondary);
}
.blog-cta-buttons {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
}
.btn-whatsapp {
    background: #16a34a !important;
    color: #ffffff !important;
    text-decoration: none !important;
}
.btn-whatsapp:hover {
    background: #15803d !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}
.btn-blue {
    background: var(--primary) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}
.btn-blue:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
}

.table-of-contents .toc-title { font-size: 1.25rem; margin-bottom: 15px; margin-top: 0; color: var(--primary-dark); }

/* SEO Content Automatic Responsive Fixes */
.seo-content article img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: var(--space-4) auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.seo-content article .table-wrapper {
    overflow-x: auto;
    width: 100%;
    margin-top: var(--space-3);
    margin-bottom: var(--space-3);
    border-radius: var(--radius);
}

/* SEO Content Typography Spacing */
.seo-content article h2 {
    margin-top: var(--space-5);
    margin-bottom: var(--space-3);
    color: var(--primary-dark);
}

.seo-content article h3 {
    margin-top: var(--space-4);
    margin-bottom: var(--space-2);
    color: var(--primary-dark);
}

.seo-content article ul {
    margin-bottom: var(--space-4);
    padding-left: 20px;
    line-height: 1.8;
}

.seo-content article li {
    margin-bottom: 10px;
}

/* Article Card Centering & Width Limit for Readability */
.seo-content article {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Container Alignment */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer Semantic Styles (No Inline CSS) */
.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.site-footer .logo-text {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
}
.footer-brand p {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 400;
    line-height: 1.5;
}
.footer-middle {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-col-title {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.footer-links-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-link-item {
    color: #94a3b8;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-link-item:hover {
    color: #facc15;
}
.footer-link-all {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 10px;
}

/* Accessibility & Responsive Utility Rules */
.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    text-align: left;
}

.table-wrapper,
.table-responsive {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: var(--space-3);
    margin-bottom: var(--space-3);
    border-radius: var(--radius);
}

.sticky-buttons {
    padding-bottom: env(safe-area-inset-bottom);
}


