/* ===== ANTALYA TENTE DÜNYASI - ANA STİL ===== */

:root {
    --primary: #1a4a8a;
    --primary-dark: #0f2f5e;
    --accent: #e8820c;
    --accent-dark: #c96c08;
    --white: #ffffff;
    --light: #f5f7fa;
    --light2: #eef1f7;
    --dark: #1a1a2e;
    --text: #333344;
    --text-light: #666680;
    --border: #e0e4ef;
    --success: #27ae60;
    --shadow: 0 4px 24px rgba(26,74,138,0.10);
    --shadow-lg: 0 12px 40px rgba(26,74,138,0.18);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.28s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.topbar span, .topbar a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}
.topbar a:hover { color: var(--accent); }
.topbar i { color: var(--accent); }

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.14);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-main {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}
.logo-sub {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-menu > li {
    position: relative;
}
.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary);
    background: var(--light);
}
.nav-menu > li > a.active {
    font-weight: 600;
}
.nav-menu > li.nav-cta > a {
    background: var(--accent);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.nav-menu > li.nav-cta > a:hover {
    background: var(--accent-dark);
    color: var(--white);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    z-index: 200;
    animation: dropIn 0.2s ease;
}
@keyframes dropIn {
    from { opacity:0; transform:translateY(-8px); }
    to { opacity:1; transform:translateY(0); }
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 24px;
}
.dropdown li.dropdown-all a {
    background: var(--light2);
    color: var(--primary);
    font-weight: 600;
}
.dropdown li.dropdown-all a:hover {
    background: var(--primary);
    color: var(--white);
    padding-left: 18px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1e5fa0 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,130,12,0.2);
    border: 1px solid rgba(232,130,12,0.4);
    color: #ffa940;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.hero h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 .highlight {
    color: var(--accent);
    position: relative;
}
.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
}
.hero-stat {
    color: var(--white);
}
.hero-stat .number {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.hero-stat .label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,130,12,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.btn-dark {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-dark:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}
.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section-label {
    display: inline-block;
    background: rgba(26,74,138,0.08);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.section-header h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.2;
}
.section-header h2 span { color: var(--primary); }
.section-header p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
}

/* ===== HİZMET KARTLARI ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.services-grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.service-card-img {
    height: 220px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 64px;
    position: relative;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.service-card-img .placeholder-icon {
    z-index: 1;
    opacity: 0.8;
}
.service-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-badge {
    display: inline-block;
    background: rgba(232,130,12,0.1);
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.service-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}
.service-card-body p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.service-card-link:hover { gap: 12px; color: var(--accent); }

/* ===== NEDEN BİZ ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}
.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26,74,138,0.1), rgba(232,130,12,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}
.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.why-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(232,130,12,0.1);
    border-radius: 50%;
    right: -100px;
    top: -100px;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 32px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BLOG KARTLARI ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.blog-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 56px;
    overflow: hidden;
    position: relative;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.blog-card-body { padding: 24px; }
.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}
.blog-meta i { color: var(--accent); }
.blog-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.35;
}
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.read-more:hover { gap: 12px; color: var(--accent); }

/* ===== İLETİŞİM ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
}
.contact-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}
.contact-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}
.contact-item-text strong {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}
.contact-item-text a, .contact-item-text span {
    color: var(--text-light);
    font-size: 15px;
}
.contact-item-text a:hover { color: var(--primary); }

/* Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.contact-form-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text);
    background: var(--light);
    transition: var(--transition);
    font-family: inherit;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26,74,138,0.08);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Alert */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}
.page-header h1 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 12px;
}
.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }

/* ===== SERVICE DETAIL ===== */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
.detail-content { background: var(--white); border-radius: var(--radius); padding: 40px; border: 1px solid var(--border); }
.detail-content img { width: 100%; border-radius: var(--radius-sm); margin-bottom: 28px; max-height: 400px; object-fit: cover; }
.detail-content h1 { font-size: 30px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.detail-content .prose { color: var(--text); line-height: 1.8; font-size: 16px; }
.detail-content .prose h2 { font-size: 22px; font-weight: 700; color: var(--dark); margin: 28px 0 12px; }
.detail-content .prose p { margin-bottom: 16px; }
.detail-content .prose ul { margin: 16px 0 16px 20px; list-style: disc; }
.detail-content .prose li { margin-bottom: 8px; }

.detail-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
}
.sidebar-box h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--light2); }
.sidebar-cta { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white); }
.sidebar-cta h3 { color: var(--white); border-color: rgba(255,255,255,0.2); }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 20px; }
.sidebar-cta .btn { width: 100%; justify-content: center; }
.sidebar-cta .btn + .btn { margin-top: 10px; }

/* ===== BLOG DETAIL ===== */
.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}
.blog-detail-content { background: var(--white); border-radius: var(--radius); padding: 40px; border: 1px solid var(--border); }
.blog-detail-content img { width: 100%; border-radius: var(--radius-sm); margin-bottom: 28px; max-height: 400px; object-fit: cover; }
.blog-detail-content h1 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.3; }
.blog-detail-content .prose { color: var(--text); line-height: 1.8; font-size: 16px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 64px 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 24px;
    color: rgba(255,255,255,0.65);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo .logo-main { color: var(--white); }
.footer-logo .logo-sub { color: var(--accent); }
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 15px;
}
.footer-social a:hover { background: var(--accent); color: var(--white); }

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a i { color: var(--accent); font-size: 11px; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}
.footer-contact i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--accent); }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 18px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    gap: 16px;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse 2.5s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7); }
}

.scroll-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 9998;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--accent); transform: translateY(-2px); }

/* ===== ADMIN (layout temel) ===== */
.admin-body { background: #f0f2f5; min-height: 100vh; }
.admin-header-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 0 28px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.admin-logo { font-size: 18px; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 10px; }
.admin-logo i { color: var(--accent); }
.admin-nav-links { display: flex; align-items: center; gap: 8px; }
.admin-nav-links a {
    color: rgba(255,255,255,0.75);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.admin-nav-links a:hover, .admin-nav-links a.active {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}
.admin-nav-links a.logout { color: #ff6b6b; }
.admin-nav-links a.logout:hover { background: rgba(255,107,107,0.15); }

.admin-main { max-width: 1200px; margin: 0 auto; padding: 32px 20px; }
.admin-page-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.admin-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 24px;
}
.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}
.admin-stat {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}
.admin-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.admin-stat-icon.blue { background: rgba(26,74,138,0.1); color: var(--primary); }
.admin-stat-icon.orange { background: rgba(232,130,12,0.1); color: var(--accent); }
.admin-stat-icon.green { background: rgba(39,174,96,0.1); color: var(--success); }
.admin-stat-icon.red { background: rgba(231,76,60,0.1); color: #e74c3c; }
.admin-stat-text .number { font-size: 28px; font-weight: 800; color: var(--dark); line-height: 1; }
.admin-stat-text .label { font-size: 13px; color: var(--text-light); margin-top: 4px; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
    background: var(--light);
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
    vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--light); }
.admin-table .actions { display: flex; gap: 8px; }
.badge { display: inline-block; padding: 4px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}
.btn-edit { background: rgba(26,74,138,0.1); color: var(--primary); }
.btn-edit:hover { background: var(--primary); color: var(--white); }
.btn-delete { background: rgba(231,76,60,0.1); color: #e74c3c; }
.btn-delete:hover { background: #e74c3c; color: var(--white); }

/* Login */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.login-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.login-box .logo { justify-content: center; margin-bottom: 8px; }
.login-box h2 { font-size: 20px; color: var(--text-light); margin-bottom: 32px; font-weight: 400; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .detail-grid, .blog-detail-grid { grid-template-columns: 1fr; }
    .detail-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .hero { min-height: 480px; padding: 60px 0; }
    .services-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
    .topbar-left { display: none; }
    .admin-nav-links a span { display: none; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 16px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border);
    }
    .nav-menu.open { display: flex; }
    .nav-menu > li > a { width: 100%; border-radius: var(--radius-sm); }
    .dropdown { position: static; box-shadow: none; border: none; border-radius: 0; display: block; padding-left: 16px; }
    .has-dropdown:hover .dropdown { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .hero-stats { gap: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .detail-sidebar { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .contact-form-wrapper { padding: 24px; }
    .admin-main { padding: 20px 16px; }
    .admin-stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .admin-stat-grid { grid-template-columns: 1fr; }
}
