@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Colors */
    --primary: #0a2540;
    --primary-dark: #071a2e;
    --primary-light: #123c66;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-light: #fef3c7;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success: #10b981;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);
    --shadow-premium: 0 20px 25px -5px rgba(10, 37, 64, 0.1), 0 10px 10px -5px rgba(10, 37, 64, 0.04);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Typography Helpers */
.text-center { text-align: center; }
.section-tag {
    font-family: var(--font-heading);
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0.5rem;
    position: relative;
}
.section-tag::before, .section-tag::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 2px;
    background-color: var(--accent);
    vertical-align: middle;
    margin: 0 10px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
}
@media (max-width: 768px) {
    .section-title { font-size: 1.75rem; }
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

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

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

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

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

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

/* TOP BAR */
.topbar {
    background-color: var(--primary-dark);
    color: var(--bg-light);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topbar-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-info i {
    color: var(--accent);
}

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

.topbar-social a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.topbar-social a:hover {
    color: var(--accent);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-call {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.topbar-call span {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
}

.topbar-call strong {
    font-size: 0.9rem;
    color: var(--accent);
}

/* NAVBAR */
.header-nav {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-nav.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.header-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Brand Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    border: 2px solid var(--accent);
    position: relative;
}

.logo-text h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-text span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--accent);
    z-index: 1001;
}

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

.dropdown-item {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--accent);
    padding-left: 1.75rem;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* HERO SECTION */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.9) 0%, rgba(7, 26, 46, 0.95) 100%), url('../img/hero-bg.jpg') center/cover no-repeat;
    padding: 8rem 0;
    color: var(--bg-white);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-tagline::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

/* HERO TRUST BAR */
.trustbar {
    background-color: var(--primary);
    padding: 1.5rem 0;
    border-bottom: 4px solid var(--accent);
    position: relative;
    z-index: 10;
    margin-top: -50px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--bg-white);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 1rem;
}

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

.trust-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.trust-info h4 {
    font-size: 0.95rem;
    color: var(--bg-white);
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.trust-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* SERVICES SECTION */
.services {
    padding: 7rem 0;
    background-color: var(--bg-light);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: transparent;
}

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

.service-icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    color: var(--primary);
    font-size: 1.75rem;
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--primary);
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

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

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* REGIONS / MAP SECTION */
.regions {
    padding: 7rem 0;
    background-color: var(--bg-white);
}

.regions-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.regions-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.regions-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.district-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.district-item i {
    color: var(--accent);
}

/* Vector Map Container */
.regions-map {
    position: relative;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom Interactive Network Map styling */
.map-connections-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.map-line {
    stroke: rgba(10, 37, 64, 0.15);
    stroke-width: 2.5;
    stroke-dasharray: 6;
    transition: var(--transition);
}

.map-line-active {
    stroke: var(--accent);
    stroke-width: 3.5;
    stroke-dasharray: 6;
    filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.6));
    animation: dash-flow 15s linear infinite;
}

@keyframes dash-flow {
    to {
        stroke-dashoffset: -100;
    }
}

.map-node {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    transition: var(--transition);
}

.node-dot {
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    border: 2.5px solid var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
    position: relative;
    z-index: 6;
    transition: var(--transition);
}

.node-dot::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Specific styling for Kadirli (HQ) node */
.map-node.node-hq .node-dot {
    width: 18px;
    height: 18px;
    background-color: var(--primary);
    border: 3px solid var(--accent);
    box-shadow: 0 0 12px rgba(10, 37, 64, 0.5);
}

.map-node.node-hq .node-dot::after {
    border-color: var(--primary);
}

/* Styled labels */
.node-label {
    margin-top: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary);
    background-color: var(--bg-white);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

/* HQ label styling */
.map-node.node-hq .node-label {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    font-size: 0.9rem;
    padding: 0.35rem 0.85rem;
    box-shadow: var(--shadow-md);
}

/* Hover effects and active states */
.map-node:hover .node-dot,
.map-node.node-active .node-dot {
    transform: scale(1.3);
    background-color: var(--accent);
    border-color: var(--bg-white);
    box-shadow: 0 0 12px var(--accent);
}

.map-node:hover .node-label,
.map-node.node-active .node-label {
    transform: translateY(-3px);
    background-color: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.map-node.node-hq:hover .node-label,
.map-node.node-hq.node-active .node-label {
    background-color: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* WHY CHOOSE US (NEDEN BİZ) */
.why-us {
    padding: 7rem 0;
    background-color: var(--bg-light);
}

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

.why-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-light);
    color: var(--accent-hover);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-info h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* TESTIMONIALS (MÜŞTERİ YORUMLARI) */
.testimonials {
    padding: 7rem 0;
    background-color: var(--bg-white);
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    flex: 0 0 calc(33.333% - 1.33rem);
    position: relative;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.user-details h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.user-details span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Slider Navigation Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--accent);
    width: 24px;
    border-radius: 10px;
}

/* CTA BANNER (EŞSİZ TEKLİF) */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 90%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
}

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

.cta-text h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

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

.cta-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.cta-phone-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.85rem 1.5rem;
    border-radius: 30px;
}

.cta-phone-card i {
    font-size: 1.5rem;
    color: var(--accent);
}

.cta-phone-card div span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
}

.cta-phone-card div strong {
    font-size: 1.2rem;
    color: var(--accent);
}

/* CTA Image section */
.cta-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.cta-image {
    max-width: 80%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 5px solid rgba(255, 255, 255, 0.05);
}

/* BLOG SECTION (HOMEPAGE & ARCHIVE) */
.blog-home {
    padding: 7rem 0;
    background-color: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: var(--primary);
}

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

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: var(--accent);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    font-family: var(--font-heading);
}

.blog-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-tag {
    color: var(--accent-hover);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.blog-info h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.blog-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-readmore {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-readmore i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.blog-card:hover .blog-readmore {
    color: var(--accent);
}

.blog-card:hover .blog-readmore i {
    transform: translateX(5px);
}

/* FOOTER */
.footer {
    background-color: var(--primary-dark);
    color: var(--bg-light);
    padding: 5rem 0 0 0;
    border-top: 5px solid var(--accent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col-about h3 {
    margin-bottom: 1.5rem;
}

.footer-about-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    border-color: var(--accent);
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent);
}

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

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-links a i {
    font-size: 0.7rem;
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-contact i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-contact span {
    line-height: 1.5;
}

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

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

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

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

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

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--bg-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* SUBPAGE STYLES */
.page-header {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.9) 0%, rgba(7, 26, 46, 0.95) 100%), url('../img/page-header-bg.jpg') center/cover no-repeat;
    padding: 5rem 0;
    color: var(--bg-white);
    text-align: center;
    border-bottom: 4px solid var(--accent);
}

.page-header h1 {
    color: var(--bg-white);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.breadcrumb {
    display: inline-flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
}

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

.breadcrumb-separator {
    color: var(--accent);
}

/* ABOUT US DETAILS */
.about-section {
    padding: 7rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.about-feature-item h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.about-feature-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* VISION & MISSION */
.vision-mission {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

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

.vm-card {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.vm-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vm-card p {
    color: var(--text-muted);
}

/* DETAILED SERVICES PAGE */
.hizmet-detail-section {
    padding: 6rem 0;
}

.hizmet-detail-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.hizmet-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

.hizmet-detail-grid.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.hizmet-detail-grid.reverse .hizmet-img-wrapper {
    order: 2;
}

.hizmet-img-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--border-color);
}

.hizmet-img-wrapper img {
    width: 100%;
    transition: var(--transition);
}

.hizmet-detail-card:hover .hizmet-img-wrapper img {
    transform: scale(1.03);
}

.hizmet-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hizmet-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

.hizmet-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.hizmet-feature-item i {
    color: var(--accent);
}

/* GALLERY PAGE */
.gallery-section {
    padding: 7rem 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
    background-color: var(--primary);
    border: 1px solid var(--border-color);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 37, 64, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-overlay h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.gallery-overlay span {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* CONTACT PAGE */
.contact-section {
    padding: 7rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    border: 1px solid var(--border-color);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-light);
    color: var(--accent-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-card-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-card-details p, .contact-card-details a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

/* Contact Form styling */
.contact-form-wrapper {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-control {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

/* Map Embed */
.map-embed-section {
    height: 450px;
    border-top: 4px solid var(--accent);
    background-color: var(--bg-light);
}

.map-embed-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* BLOG SINGLE POST PAGE */
.blog-single-section {
    padding: 6rem 0;
}

.blog-single-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3.5rem;
}

.blog-post-content {
    background-color: var(--bg-white);
}

.blog-post-hero {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.blog-post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-meta-details {
    display: flex;
    gap: 1.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-meta-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta-details i {
    color: var(--accent);
}

.blog-post-content h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem 0;
}

.blog-post-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 2rem 0;
}

.blog-post-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-post-content li {
    list-style-type: disc;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

/* Sidebar styling */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sidebar-widget {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent);
}

.widget-posts {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.widget-post-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.widget-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--primary);
}

.widget-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-post-details h4 {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.widget-post-details h4:hover {
    color: var(--accent-hover);
}

.widget-post-details span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.widget-categories li {
    margin-bottom: 0.75rem;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.5rem;
}

.widget-categories li:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.widget-categories a {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.widget-categories a:hover {
    color: var(--accent);
}

.widget-categories a span {
    background-color: var(--accent-light);
    color: var(--accent-hover);
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
}

.widget-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    border: none;
    text-align: center;
    padding: 2.5rem 2rem;
}

.widget-cta h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.widget-cta h3::after {
    left: 50%;
    transform: translateX(-50%);
}

.widget-cta p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.widget-cta .btn {
    width: 100%;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .trustbar {
        margin-top: 0;
        border-radius: 0;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .trust-item:nth-child(2) {
        border-right: none;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .cta-img-wrapper {
        display: none;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-single-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hizmet-detail-grid, .hizmet-detail-grid.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hizmet-detail-grid.reverse .hizmet-img-wrapper {
        order: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-nav .container {
        position: relative;
    }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        transition: max-height 0.4s ease-out;
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }
    
    .nav-menu.open {
        max-height: 450px;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--bg-light);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
        background-color: var(--bg-light);
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        padding: 0;
    }
    
    .dropdown.open .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 0.8rem 3rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    .hero {
        padding: 6rem 0;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-tagline {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .topbar {
        display: none; /* Hide topbar on small mobile screen for clean space */
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-item {
        border-right: none;
    }
    
    .district-list {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn, .cta-phone-card {
        width: 100%;
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}
