/* ============================================================
   Alfa Omega World - Ana CSS
   ============================================================ */

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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all .3s;
}

ul {
    list-style: none;
}

/* Variables */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --secondary: #1d3557;
    --secondary-light: #457b9d;
    --accent: #f4a261;
    --text: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, .08);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, .15);
    --radius: 12px;
    --transition: all .3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background: var(--bg-light);
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, .3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .7);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(230, 57, 70, .1);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============ HEADER ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
}

.header-top {
    background: var(--secondary);
    color: #fff;
    padding: 8px 0;
    font-size: .88rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-top a {
    color: rgba(255, 255, 255, .85);
}

.header-top a:hover {
    color: #fff;
}

.header-top-left,
.header-top-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-header-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 4px 14px;
    border-radius: 50px;
    font-weight: 600;
}

.whatsapp-link {
    color: #25D366 !important;
    font-weight: 600;
}

.header-main {
    background: #fff;
    padding: 12px 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 55px;
    width: auto;
}

.main-nav {
    flex: 1;
}

.main-nav>ul {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.main-nav>ul>li {
    position: relative;
}

.main-nav>ul>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--secondary);
    font-weight: 500;
    font-size: .95rem;
}

.main-nav>ul>li>a:hover,
.main-nav>ul>li>a.active {
    color: var(--primary);
    background: rgba(230, 57, 70, .06);
}

.main-nav>ul>li>a i {
    font-size: .7rem;
    transition: transform .3s;
}

.main-nav>ul>li:hover>a i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

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

.dropdown li a {
    display: block;
    padding: 10px 18px;
    color: var(--text);
    font-size: .9rem;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}

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

.dropdown li a:hover {
    color: var(--primary);
    background: rgba(230, 57, 70, .04);
    padding-left: 24px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 53, 87, .9) 0%, rgba(29, 53, 87, .7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #fff;
    max-width: 680px;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    opacity: .9;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .9rem;
    opacity: .85;
}

.hero-trust i {
    color: var(--accent);
}

/* ============ QUICK QUOTE ============ */
.quick-quote {
    background: var(--secondary);
    padding: 30px 0;
}

.quick-quote-box h2 {
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.quick-quote-form .form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.quick-quote-form .form-group {
    flex: 1;
    min-width: 180px;
}

.quick-quote-form input,
.quick-quote-form select {
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-radius: 50px;
    font-size: .95rem;
    outline: none;
}

.quick-quote-form .btn {
    flex-shrink: 0;
    padding: 12px 28px;
}

/* ============ STATS ============ */
.stats {
    background: var(--primary);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    color: #fff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: .95rem;
    opacity: .85;
}

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

.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 57, 70, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.service-img {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    height: 120px;
}

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

.service-card h3 {
    color: var(--secondary);
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: .93rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    gap: 10px;
}

/* ============ WHY US ============ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 700;
}

.why-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.why-list i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.why-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
}

.why-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    color: #fff;
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.badge-text {
    font-size: .85rem;
    opacity: .9;
}

/* ============ LOCATIONS ============ */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.location-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    display: block;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.location-flag {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.location-card h3 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 700;
}

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

.location-link {
    color: var(--primary);
    font-size: .88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ============ FAQ ============ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
    color: var(--primary);
    background: rgba(230, 57, 70, .03);
}

.faq-question i {
    flex-shrink: 0;
    transition: transform .3s;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.blog-img {
    display: block;
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

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

.blog-body {
    padding: 24px;
}

.blog-cat {
    display: inline-block;
    background: rgba(230, 57, 70, .1);
    color: var(--primary);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-body h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.4;
}

.blog-body h3 a:hover {
    color: var(--primary);
}

.blog-body p {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    color: var(--text-light);
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 8px;
}

/* ============ CTA BANNER ============ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 70px 0;
    text-align: center;
}

.cta-content {
    color: #fff;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: .9;
    margin-bottom: 32px;
}

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

/* ============ FOOTER ============ */
.site-footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, .8);
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-about p {
    font-size: .9rem;
    line-height: 1.7;
    margin: 16px 0 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-col ul li a {
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .9rem;
}

.footer-contact i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: .88rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, .6);
}

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

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    z-index: 999;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
}

.whatsapp-float i {
    font-size: 1.4rem;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, .5);
}

.whatsapp-float span {
    display: none;
}

@media (min-width: 768px) {
    .whatsapp-float span {
        display: block;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(230, 57, 70, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============ PAGE HERO ============ */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: .85;
    max-width: 600px;
    margin: 0 auto 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: .9rem;
    opacity: .75;
}

.breadcrumb a {
    color: #fff;
}

.breadcrumb span {
    opacity: .6;
}

/* ============ FORMS ============ */
.form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 48px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
    font-size: .95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: .95rem;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, .1);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-success {
    background: #d4edda;
    color: #155724;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: none;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: none;
}

/* ============ CONTACT ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    background: var(--secondary);
    color: #fff;
    border-radius: var(--radius);
    padding: 40px;
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

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

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    color: var(--accent);
    font-size: 1.1rem;
}

.contact-item strong {
    display: block;
    color: #fff;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: .9rem;
    opacity: .8;
}

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

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

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

/* ============ BLOG LIST ============ */
.blog-sidebar {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.sidebar-widget {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

/* ============ ADMIN ============ */
.admin-body {
    font-family: inherit;
    background: #f0f2f5;
}

.admin-sidebar {
    width: 260px;
    background: var(--secondary);
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    z-index: 100;
}

.admin-brand {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, .7);
    font-size: .93rem;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-left-color: var(--primary);
}

.admin-nav i {
    width: 18px;
    text-align: center;
}

.admin-content {
    margin-left: 260px;
    padding: 24px;
    min-height: 100vh;
}

.admin-header {
    background: #fff;
    border-radius: var(--radius);
    padding: 16px 24px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}

.admin-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.admin-card h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.stat-card-icon.red {
    background: rgba(230, 57, 70, .1);
    color: var(--primary);
}

.stat-card-icon.blue {
    background: rgba(29, 53, 87, .1);
    color: var(--secondary);
}

.stat-card-icon.green {
    background: rgba(40, 167, 69, .1);
    color: #28a745;
}

.stat-card-icon.orange {
    background: rgba(255, 152, 0, .1);
    color: #ff9800;
}

.stat-card h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
}

.stat-card p {
    color: var(--text-light);
    font-size: .88rem;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

th {
    background: var(--bg-light);
    padding: 12px 16px;
    text-align: left;
    color: var(--secondary);
    font-weight: 600;
    border-bottom: 2px solid var(--border);
}

td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

tr:hover td {
    background: rgba(230, 57, 70, .02);
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
}

.badge-new {
    background: rgba(230, 57, 70, .1);
    color: var(--primary);
}

.badge-read {
    background: rgba(108, 117, 125, .1);
    color: #6c757d;
}

.badge-success {
    background: rgba(40, 167, 69, .1);
    color: #28a745;
}

.badge-warning {
    background: rgba(255, 193, 7, .15);
    color: #856404;
}

.btn-sm {
    padding: 6px 14px;
    font-size: .8rem;
    border-radius: 6px;
}

.btn-danger {
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn-success {
    background: #28a745;
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
    border: none;
    cursor: pointer;
}

.alert {
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        gap: 40px;
    }

    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--secondary);
        z-index: 999;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav>ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav>ul>li>a {
        color: #fff;
        padding: 14px 16px;
        border-radius: 8px;
        font-size: 1.1rem;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, .05);
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 8px;
        display: none;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .dropdown li a {
        color: rgba(255, 255, 255, .8);
        padding: 10px 20px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        order: -1;
    }

    .why-image img {
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .quick-quote-form .form-row {
        flex-direction: column;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .section {
        padding: 50px 0;
    }

    .admin-sidebar {
        display: none;
    }

    .admin-content {
        margin-left: 0;
    }

    .stat-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-cards {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 24px 16px;
    }

    .hero-actions {
        flex-direction: column;
    }
}

/* ============================================================
   DİNAMİK HERO SLIDER
   ============================================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider .slide {
    width: 100%;
}

/* Slider navigation butonları */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, .15);
    border: 2px solid rgba(255, 255, 255, .4);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
    backdrop-filter: blur(4px);
}

.slider-nav:hover {
    background: rgba(230, 57, 70, .8);
    border-color: #e63946;
    transform: translateY(-50%) scale(1.08);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider nokta göstergeleri */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    border: 2px solid rgba(255, 255, 255, .7);
    cursor: pointer;
    transition: all .25s;
    padding: 0;
}

.slider-dot.active,
.slider-dot:hover {
    background: #e63946;
    border-color: #e63946;
    transform: scale(1.3);
}

/* Slide geçiş düzeltme — birden fazla slide için overlay */
.hero-slider .slide:not(.active) {
    pointer-events: none;
}

@media (max-width: 600px) {
    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: .85rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }
}

/* ============================================================
   MEDYA GALERİSİ (Masonry Grid + Video Grid)
   ============================================================ */
.media-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    animation: fadeIn .3s ease;
}

.media-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: #e9ecef;
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}

.media-thumb:hover img {
    transform: scale(1.06);
}

.media-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(29, 53, 87, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    color: #fff;
    font-size: 1.8rem;
}

.media-thumb:hover .media-thumb-overlay {
    opacity: 1;
}

.media-thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .7));
    color: #fff;
    font-size: .82rem;
    padding: 20px 12px 10px;
    transform: translateY(100%);
    transition: transform .3s;
}

.media-thumb:hover .media-thumb-label {
    transform: translateY(0);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    animation: fadeIn .3s ease;
}

.video-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .media-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .media-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}