/* ============================================
   ANTALYA KAROT - ANA STİL DOSYASI
   ============================================ */

/* CSS Değişkenleri */
:root {
    --primary: #1E40AF;
    --primary-dark: #1E3A8A;
    --primary-light: #3B82F6;
    --secondary: #F97316;
    --secondary-dark: #EA580C;
    --accent: #F59E0B;
    --bg: #F8FAFC;
    --bg-dark: #0F172A;
    --text: #1E293B;
    --text-light: #64748B;
    --text-white: #F8FAFC;
    --border: #E2E8F0;
    --success: #22C55E;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1200px;
    --header-height: 80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226,232,240,0.5);
    transition: var(--transition);
    height: var(--header-height);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}
.logo img { height: 45px; width: auto; }
.logo span { background: linear-gradient(135deg, var(--primary), #6366F1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 4px 0;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}
.header-phone svg { width: 18px; height: 18px; }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    touch-action: manipulation;
}
.menu-toggle span {
    width: 28px; height: 2.5px;
    background: var(--text);
    border-radius: 4px;
    transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(249,115,22,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249,115,22,0.4);
}
.btn-secondary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(30,64,175,0.3);
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30,64,175,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}
.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 50%, #0f172a 100%);
    padding-top: var(--header-height);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(59,130,246,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(249,115,22,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { padding: 40px 0; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}
.hero-title span { background: linear-gradient(135deg, var(--secondary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { text-align: center; }
.hero-stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.hero-stat-value span { color: var(--secondary); }
.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}
.hero-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: calc(var(--radius-lg) + 10px);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    opacity: 0.2;
    z-index: -1;
    animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.02); }
}

/* ========== SECTIONS ========== */
.section {
    padding: 100px 0;
}
.section-dark {
    background: var(--bg-dark);
    color: white;
}
.section-light {
    background: white;
}
.section-gray {
    background: var(--bg);
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(249,115,22,0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-title span { background: linear-gradient(135deg, var(--primary), #6366F1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-dark .section-title { color: white; }
.section-dark .section-title span { background: linear-gradient(135deg, var(--secondary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-text {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}
.section-dark .section-text { color: rgba(255,255,255,0.6); }

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.service-card {
    border-radius: 16px;
    padding: 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-color: #1e293b;
    -webkit-tap-highlight-color: transparent;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
    transition: var(--transition);
}
.service-card:hover::before {
    background: linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.9) 100%);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.service-card-inner {
    position: relative;
    z-index: 2;
    padding: 32px 28px;
    width: 100%;
    text-align: left;
}
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.service-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 16px;
}
.service-card .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
}
.service-card .btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; }
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,64,175,0.1), transparent);
}
.about-experience {
    position: absolute;
    bottom: 24px; right: 24px;
    background: var(--secondary);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius);
    text-align: center;
}
.about-experience .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.about-experience .label { font-size: 0.85rem; opacity: 0.9; }
.about-features { margin-top: 24px; display: grid; gap: 16px; }
.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about-feature svg {
    width: 24px; height: 24px;
    flex-shrink: 0;
    color: var(--secondary);
    margin-top: 2px;
}
.about-feature h4 { font-weight: 600; margin-bottom: 4px; }
.about-feature p { font-size: 0.9rem; color: var(--text-light); }

/* ========== BLOG ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}
.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.blog-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.blog-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-category {
    position: absolute;
    top: 16px; left: 16px;
    padding: 4px 14px;
    background: var(--secondary);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.blog-card-body { padding: 24px; }
.blog-card-date {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.blog-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== FAQ ========== */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.faq-cat-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    color: var(--text-light);
}
.faq-cat-btn:hover, .faq-cat-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    gap: 16px;
    user-select: none;
}
.faq-question span { flex: 1; }
.faq-icon {
    width: 24px; height: 24px;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--primary);
}
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========== GALLERY ========== */
.gallery-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.gallery-filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    color: var(--text-light);
    touch-action: manipulation;
    user-select: none;
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.gallery-filter-btn { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-grid.masonry {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 10px;
}
.gallery-grid.masonry .gallery-item {
    aspect-ratio: auto;
    grid-row-end: span 30;
}
.gallery-grid.masonry .gallery-item:nth-child(3n+1) { grid-row-end: span 38; }
.gallery-grid.masonry .gallery-item:nth-child(3n+2) { grid-row-end: span 32; }
.gallery-grid.masonry .gallery-item:nth-child(3n+3) { grid-row-end: span 35; }
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-caption h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.gallery-tag {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(249,115,22,0.9);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Scroll-Parallax Gallery Effect */
.gallery-item.scroll-parallax {
    transform: translateY(var(--parallax-y, 0px));
    transition: transform 0.1s linear, box-shadow 0.4s ease;
}
.gallery-item.scroll-parallax:hover {
    transform: translateY(var(--parallax-y, 0px)) translateY(-8px);
}

/* Filter animation */
.gallery-grid.filtering .gallery-item {
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item.filter-hidden {
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
    position: absolute;
}
.gallery-item.filter-visible {
    animation: filterIn 0.4s ease forwards;
}
@keyframes filterIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-item-icon {
    width: 50px; height: 50px;
    background: rgba(30,64,175,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item-icon svg {
    width: 24px; height: 24px;
    color: var(--primary);
}
.contact-item h4 { font-weight: 600; margin-bottom: 4px; }
.contact-item p, .contact-item a {
    font-size: 0.95rem;
    color: var(--text-light);
}
.contact-item a:hover { color: var(--primary); }
.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text);
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--font);
    transition: var(--transition);
    background: var(--bg);
    outline: none;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30,64,175,0.1);
    background: white;
}
textarea.form-control { min-height: 140px; resize: vertical; }

/* Map */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ========== STATS COUNTER ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-card {
    text-align: center;
    padding: 32px 20px;
}
.stat-card .number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-card .number span { color: var(--secondary); }
.stat-card .label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(249,115,22,0.2) 0%, transparent 60%);
}
.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}
.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}
.cta-ribbon {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}
.cta-trust {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}
.cta-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hero-urgent-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    animation: urgentPulse 2s ease-in-out infinite;
}
@keyframes urgentPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}
.hero-guarantee {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--primary);
}
.blog-cta {
    background: linear-gradient(135deg, var(--primary), #c2410c);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
}
.blog-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: white;
}
.blog-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-about p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 16px 0;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; color: white; }
.footer h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
.footer-contact svg {
    width: 18px; height: 18px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ========== PAGE HEADER ========== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg-dark), #1e293b);
    text-align: center;
    position: relative;
}
.page-header h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}
.page-header p {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.breadcrumb {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--secondary); }

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}
.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--border);
    background: white;
    color: var(--text);
    transition: var(--transition);
}
.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.pagination .active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ========== WHATSAPP FLOATING ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    right: calc(24px + env(safe-area-inset-right, 0px));
}
.whatsapp-float-btn {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
    cursor: pointer;
}
.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-float-btn svg { width: 28px; height: 28px; fill: white; }
.whatsapp-tooltip {
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    animation: fadeInUp 0.3s ease;
}
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* ========== PHONE FLOATING ========== */
.phone-float {
    position: fixed;
    bottom: 96px; right: 24px;
    z-index: 999;
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    right: calc(24px + env(safe-area-inset-right, 0px));
}
.phone-float-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30,64,175,0.4);
    transition: var(--transition);
}
.phone-float-btn:hover { transform: scale(1.1); }
.phone-float-btn svg { width: 22px; height: 22px; fill: white; }

/* ========== LIGHTBOX ========== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: none;
    border: none;
}
.lightbox-close:hover { color: var(--secondary); transform: rotate(90deg); }

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 24px; left: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover { background: var(--secondary); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ========== LOADING ========== */
.loading-spinner {
    display: flex;
    justify-content: center;
    padding: 40px;
}
.spinner {
    width: 40px; height: 40px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== TOAST ========== */
.toast {
    position: fixed;
    top: 100px; right: 24px;
    z-index: 9999;
    padding: 16px 24px;
    border-radius: var(--radius);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    transition: transform 0.4s ease;
    max-width: 400px;
}
.toast.show { transform: translateX(0); }
.toast-success { background: var(--success); }
.toast-error { background: #EF4444; }

/* ========== BLOG DETAIL ========== */
.blog-detail { max-width: 800px; margin: 0 auto; }
.blog-detail-header { margin-bottom: 32px; }
.blog-detail-header h1 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.blog-detail-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.blog-detail-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}
.blog-detail-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text);
}
.blog-detail-content h2 { font-size: 1.6rem; font-weight: 700; margin: 32px 0 16px; }
.blog-detail-content h3 { font-size: 1.3rem; font-weight: 600; margin: 24px 0 12px; }
.blog-detail-content p { margin-bottom: 16px; }
.blog-detail-content ul, .blog-detail-content ol { margin: 16px 0; padding-left: 24px; }
.blog-detail-content li { margin-bottom: 8px; }
.blog-detail-content img {
    border-radius: var(--radius);
    margin: 24px 0;
}

/* ========== SERVICE DETAIL ========== */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.service-detail-image img { width: 100%; }
.service-detail-features { margin-top: 24px; display: grid; gap: 12px; }
.service-detail-feature {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 18px;
    background: rgba(37,211,102,0.1);
    border-radius: 10px;
    font-weight: 500;
}
.service-detail-feature svg {
    width: 20px; height: 20px;
    color: var(--success);
}

/* ========== ANIMATIONS ========== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.fade-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { text-align: center; }
    .hero-text { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-stat { text-align: center; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --header-height: 70px; }
    .nav { display: none; }
    .nav.active {
        display: flex;
        position: fixed;
        top: var(--header-height); left: 0; right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }
    .menu-toggle { display: flex; }
    .header-phone .text { display: none; }
    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .hero-stat-value { font-size: 1.8rem; }
    .hero-image-wrapper { max-width: 100%; }
    .section { padding: 60px 0; }
    .page-header { padding: 110px 0 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid.masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
    .gallery-grid.masonry .gallery-item { grid-row-end: span 1 !important; aspect-ratio: 4/3; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-card .number { font-size: 2.2rem; }
    .contact-form { padding: 24px; }
    .breadcrumb { font-size: 0.8rem; flex-wrap: wrap; }
    .whatsapp-float { bottom: 80px; right: 12px; }
    .phone-float { bottom: 148px; right: 12px; }
    .whatsapp-float-btn { width: 50px; height: 50px; }
    .phone-float-btn { width: 44px; height: 44px; }
    .whatsapp-tooltip { display: none !important; }
    .scroll-top { bottom: 12px; left: 12px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
    .hero-stat-value { font-size: 1.5rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .faq-categories { flex-direction: column; align-items: stretch; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
    .whatsapp-float-btn { width: 50px; height: 50px; }
    .whatsapp-float-btn svg { width: 24px; height: 24px; }
}

/* ========== MOBILE BOTTOM BAR ========== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 998;
    background: white;
    border-top: 1px solid var(--border);
    padding: 8px env(safe-area-inset-right, 12px) calc(8px + env(safe-area-inset-bottom, 0px)) env(safe-area-inset-left, 12px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-bottom-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.mobile-bottom-bar .mbb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.mbb-btn-wa { background: #25D366; color: white; }
.mbb-btn-wa:hover { background: #1ebe5d; }
.mbb-btn-phone { background: var(--primary); color: white; }
.mbb-btn-phone:hover { background: var(--primary-dark); }
.mbb-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ========== TESTIMONIALS ========== */
.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 16px;
    scroll-behavior: smooth;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}
.testimonial-stars svg { width: 18px; height: 18px; color: #F59E0B; fill: #F59E0B; }
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #6366F1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-title { font-size: 0.82rem; color: var(--text-light); }
.testimonial-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
}
.testimonial-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.testimonial-dot.active { background: var(--primary); width: 28px; border-radius: 5px; }

/* ========== IMAGE COMPARISON ========== */
.img-compare {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
}
.img-compare img {
    display: block;
    width: 100%;
    height: auto;
}
.img-compare-overlay {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}
.img-compare-overlay img {
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    position: absolute;
    top: 0; left: 0;
}
.img-compare-handle {
    position: absolute;
    top: 0; bottom: 0;
    width: 4px;
    background: white;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    pointer-events: none;
}
.img-compare-handle::before {
    content: '↔';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
}
.img-compare-labels {
    position: absolute;
    top: 16px;
    z-index: 4;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 6px;
    background: rgba(0,0,0,0.6);
    color: white;
    pointer-events: none;
}
.img-compare-label-before { left: 16px; }
.img-compare-label-after { right: 16px; }

/* ========== SERVICE FINDER QUIZ ========== */
.service-finder {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}
.service-finder-step { display: none; }
.service-finder-step.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.service-finder h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.finder-options {
    display: grid;
    gap: 12px;
}
.finder-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}
.finder-option:hover { border-color: var(--primary); background: rgba(30,64,175,0.05); }
.finder-option.selected { border-color: var(--primary); background: rgba(30,64,175,0.08); }
.finder-option input[type="radio"] { display: none; }
.finder-nav { display: flex; gap: 12px; margin-top: 24px; }
.finder-result {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, var(--primary), #6366F1);
    border-radius: 16px;
    color: white;
}
.finder-result h4 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.finder-result p { opacity: 0.9; margin-bottom: 24px; }

/* ========== DISTRICT GRID ========== */
.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.district-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
}
.district-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.district-card svg {
    width: 24px; height: 24px;
    color: var(--secondary);
    flex-shrink: 0;
}
.district-card .name { font-weight: 600; color: var(--text); }
.district-card .count { font-size: 0.8rem; color: var(--text-light); }

/* ========== SECTION WITH MAP OVERLAY ========== */
.service-area-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-dark);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-area-map-inner {
    text-align: center;
    color: white;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}
.service-area-map-inner h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.service-area-map-inner p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 768px) {
    .mobile-bottom-bar { display: block; }
    body { padding-bottom: 72px; }
    .testimonial-card { flex: 0 0 300px; padding: 24px; }
    .service-finder { padding: 24px; }
    .district-grid { grid-template-columns: repeat(2, 1fr); }
    .img-compare-labels { font-size: 0.7rem; padding: 3px 10px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
