/* ==========================================
   Swimgo Yüzme Kursu - Ana Stil Dosyası
   Color: #0077B6 (Primary), #00B4D8 (Secondary), #FF6B35 (Accent)
   ========================================== */

/* ---- CSS Variables ---- */
:root {
    --primary: #0077B6;
    --primary-dark: #023E8A;
    --primary-light: #90E0EF;
    --secondary: #00B4D8;
    --accent: #FF6B35;
    --accent-hover: #E55A2B;
    --dark: #1A1A2E;
    --text: #333333;
    --text-light: #666666;
    --light-bg: #F0F8FF;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
    --shadow-xl: 0 20px 40px -5px rgba(0,0,0,.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all .3s ease;
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--primary-dark); }

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

ul, ol { list-style: none; }

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

.swimgo-section {
    padding: 80px 0;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}
.btn-whatsapp:hover {
    background: #1DA851;
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    background: rgba(255,255,255,.9);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: .85rem;
}

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

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0,119,182,.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: 15px;
}

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

/* ==========================================
   TOPBAR
   ========================================== */
.topbar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: .85rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.9);
}

.topbar-item a {
    color: rgba(255,255,255,.9);
}
.topbar-item a:hover {
    color: var(--white);
}

.topbar-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.topbar-social a {
    color: rgba(255,255,255,.7);
    transition: var(--transition);
}
.topbar-social a:hover {
    color: var(--accent);
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.navbar-brand img {
    height: 55px;
    width: auto;
}

.navbar-brand .site-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}
.navbar-brand .site-title span {
    color: var(--accent);
}

/* Desktop Nav */
.navbar-nav {
    display: flex;
    gap: 4px;
    align-items: center;
}

.navbar-nav li {
    position: relative;
}

.navbar-nav > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    color: var(--dark);
    font-weight: 500;
    font-size: .95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar-nav > li > a:hover,
.navbar-nav > li.current-menu-item > a,
.navbar-nav > li.current-menu-parent > a {
    color: var(--primary);
    background: rgba(0,119,182,.06);
}

.navbar-nav > li > a .nav-arrow {
    transition: transform .3s ease;
}

/* Dropdown */
.navbar-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    z-index: 100;
}

.navbar-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-nav .sub-menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-size: .9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar-nav .sub-menu li a:hover {
    background: var(--light-bg);
    color: var(--primary);
    padding-left: 22px;
}

.navbar-cta .btn {
    padding: 12px 24px;
    animation: pulse-cta 2s infinite;
    box-shadow: 0 4px 15px rgba(255,107,53,.4);
}

.navbar-cta .btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(255,107,53,.5);
}

@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 4px 15px rgba(255,107,53,.4); }
    50% { box-shadow: 0 4px 25px rgba(255,107,53,.6); }
}

/* Mobile Hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right .4s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0,0,0,.2);
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--dark);
}

.mobile-nav {
    padding: 20px;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
}

.mobile-nav ul li a {
    display: block;
    padding: 14px 0;
    color: var(--dark);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.mobile-nav ul li a:hover {
    color: var(--primary);
}

.mobile-nav .sub-menu {
    padding-left: 16px;
}

.mobile-nav .sub-menu li a {
    font-size: .9rem;
    font-weight: 400;
    color: var(--text-light);
}

.mobile-drawer-cta {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2,62,138,.45) 0%, rgba(0,119,182,.35) 50%, rgba(0,180,216,.25) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: .85rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,.2);
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Hero Trust Bar */
.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

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

.hero-trust-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ==========================================
   HOME ABOUT
   ========================================== */
.home-about {
    background: var(--white);
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.home-about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.home-about-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 400px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    color: var(--text-light);
    font-size: .9rem;
}

.home-about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.home-about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.home-about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.home-about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

.home-about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content { padding: 60px 0 80px; }
    .hero-trust { gap: 12px; }
    .hero-trust-item { font-size: .8rem; }
    .home-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================
   STATS COUNTER
   ========================================== */
.stats-section {
    padding: 60px 0;
    background: var(--white);
    margin-top: -40px;
    position: relative;
    z-index: 4;
}

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

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: .9rem;
    margin-top: 5px;
}

/* ==========================================
   SERVICES GRID
   ========================================== */
.services-section {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0,119,182,.1);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0,119,182,.1), rgba(0,180,216,.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: .9rem;
    margin-bottom: 15px;
}

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

.service-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ==========================================
   WHY US SECTION
   ========================================== */
.why-us-section {
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-us-card {
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.why-us-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.why-us-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary);
}

.why-us-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.why-us-card p {
    color: var(--text-light);
    font-size: .9rem;
}

/* ==========================================
   ABOUT PREVIEW
   ========================================== */
.about-preview {
    background: var(--light-bg);
}

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

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-experience-badge .exp-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .exp-text {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.about-feature-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* ==========================================
   DISTRICTS SECTION
   ========================================== */
.districts-section {
    background: var(--white);
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.district-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    color: var(--dark);
    font-weight: 500;
}

.district-card:hover {
    border-color: var(--primary);
    background: var(--light-bg);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.district-card svg {
    flex-shrink: 0;
    color: var(--primary);
}

.districts-more {
    text-align: center;
    margin-top: 30px;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
    background: var(--light-bg);
}

/* Carousel */
.testimonials-carousel {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform .4s ease;
}

.carousel-track .testimonial-card {
    min-width: calc((100% - 40px) / 3);
    flex-shrink: 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--light-bg);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .carousel-track .testimonial-card {
        min-width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 600px) {
    .carousel-track .testimonial-card {
        min-width: 100%;
    }
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-stars svg {
    color: #FFC107;
}

.testimonial-text {
    color: var(--text);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -5px;
    font-size: 4rem;
    color: rgba(0,119,182,.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark);
}

.testimonial-role {
    font-size: .85rem;
    color: var(--text-light);
}

/* ==========================================
   BLOG CARDS
   ========================================== */
.blog-section {
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

.blog-card-image {
    display: block;
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

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

.blog-card-placeholder {
    height: 100%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    line-height: 1.2;
}

.blog-card-date-badge .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.blog-card-date-badge .month {
    display: block;
    font-size: .7rem;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-cat {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0,119,182,.08);
    color: var(--primary);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--dark);
}
.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--text-light);
    font-size: .9rem;
    margin-bottom: 15px;
}

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

.blog-card-link:hover {
    gap: 10px;
}

.blog-more {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    opacity: .9;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faq-section {
    background: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,.04);
    overflow: hidden;
}

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

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

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ==========================================
   SEO CONTENT BLOCK
   ========================================== */
.seo-content {
    background: var(--white);
    padding: 80px 0;
}

.seo-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

.seo-content h2 {
    margin-bottom: 20px;
}

.seo-content h3 {
    margin: 25px 0 10px;
    font-size: 1.25rem;
}

.seo-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.seo-internal-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.seo-internal-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 500;
    font-size: .9rem;
}

.seo-internal-links a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ==========================================
   BREADCRUMBS
   ========================================== */
.swimgo-breadcrumb {
    background: transparent;
    padding: 0;
    border-bottom: none;
    margin: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    position: absolute;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: .85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

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

.breadcrumb-list a svg {
    width: 14px;
    height: 14px;
    opacity: .7;
}

.breadcrumb-separator {
    color: var(--text-light);
    opacity: .4;
    font-size: .75rem;
    user-select: none;
}

.breadcrumb-current {
    color: var(--primary);
    font-weight: 600;
}

/* ==========================================
   CONTENT WITH SIDEBAR
   ========================================== */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

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

.content-sidebar {
    position: sticky;
    top: 100px;
}

/* Sidebar CTA Box */
.sidebar-cta-box {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 25px;
}

.sidebar-cta-box h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.sidebar-cta-box p {
    opacity: .9;
    font-size: .9rem;
    margin-bottom: 20px;
}

.sidebar-cta-box .btn {
    margin-bottom: 10px;
}

/* Sidebar Services */
.sidebar-services {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.sidebar-services h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-bg);
}

.sidebar-services ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    color: var(--text);
    font-size: .9rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-services ul li a::before {
    content: '→';
    color: var(--primary);
    font-weight: 700;
}

.sidebar-services ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.sidebar-services ul li:last-child a {
    border-bottom: none;
}

/* ==========================================
   SINGLE POST
   ========================================== */
.article-header {
    margin-bottom: 30px;
}

.article-cats {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.article-cat {
    padding: 4px 14px;
    background: rgba(0,119,182,.08);
    color: var(--primary);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
}

.article-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: .9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-featured-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 30px;
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.9;
}

.article-content h2 {
    margin: 35px 0 15px;
    font-size: 1.6rem;
}

.article-content h3 {
    margin: 25px 0 12px;
    font-size: 1.3rem;
}

.article-content p {
    margin-bottom: 18px;
}

.article-content ul,
.article-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

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

.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    background: var(--light-bg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 25px 0;
    font-style: italic;
    color: var(--dark);
}

.article-content img {
    border-radius: var(--radius-sm);
    margin: 20px 0;
}

.article-content a {
    color: var(--primary);
    text-decoration: underline;
}

/* Tags */
.article-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 25px 0;
    border-top: 1px solid var(--border);
    margin-top: 30px;
}

.article-tags span {
    font-weight: 600;
    color: var(--dark);
}

.tag-link {
    padding: 4px 14px;
    background: var(--light-bg);
    border-radius: 50px;
    font-size: .85rem;
    color: var(--text-light);
}

.tag-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* Share */
.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.article-share span {
    font-weight: 600;
    color: var(--dark);
}

.article-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.article-share a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Related Posts */
.related-posts {
    margin-top: 40px;
}

.related-posts h3 {
    margin-bottom: 20px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.related-post-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post-card h4 {
    padding: 15px;
    font-size: .95rem;
    color: var(--dark);
}

.related-post-card .related-date {
    padding: 0 15px 15px;
    font-size: .8rem;
    color: var(--text-light);
    display: block;
}

/* ==========================================
   ARCHIVE PAGE
   ========================================== */
.archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.archive-header h1 {
    margin-bottom: 10px;
}

.archive-description {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

/* Pagination */
.swimgo-pagination {
    margin-top: 40px;
    text-align: center;
}

.swimgo-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.swimgo-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.swimgo-pagination .page-numbers.current,
.swimgo-pagination .page-numbers:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ==========================================
   404 PAGE
   ========================================== */
.swimgo-404 {
    text-align: center;
    padding: 100px 0;
}

.error-404-content .error-icon {
    margin-bottom: 20px;
}

.error-404-content h1 {
    font-size: 6rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.error-404-content h2 {
    margin-bottom: 15px;
}

.error-404-content > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.error-search {
    max-width: 500px;
    margin: 0 auto 40px;
}

.error-links {
    margin-bottom: 30px;
}

.error-links h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.error-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.error-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 500;
    font-size: .9rem;
    transition: var(--transition);
}

.error-link-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.error-link-card:hover svg {
    stroke: var(--white);
}

/* ==========================================
   PAGE TEMPLATE STYLES
   ========================================== */
/* Inner Page Hero */
.inner-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

.inner-hero h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.inner-hero p {
    opacity: .9;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.inner-hero-lead {
    max-width: 760px;
    font-size: 1.12rem;
    line-height: 1.8;
    opacity: .92;
}

/* ==========================================
   ABOUT DETAILS (Hakkımızda)
   ========================================== */
.about-details {
    background: var(--light-bg);
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
    transition: transform .3s ease, box-shadow .3s ease;
}

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

.about-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
}

.about-card h2 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: var(--primary-dark);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.02rem;
}

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

.about-card-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.02rem;
}

.about-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.about-card-list li:last-child {
    margin-bottom: 0;
}

/* About Featured Image */
.about-featured-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-section {
    padding-top: 0;
}

/* About Approach */
.about-approach {
    background: var(--white);
}

.about-approach-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-approach-inner h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.about-approach-inner p {
    color: var(--text-light);
    font-size: 1.08rem;
    line-height: 1.85;
}

@media (max-width: 768px) {
    .about-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-card {
        padding: 28px 24px;
    }
    .inner-hero-lead {
        font-size: 1rem;
    }
}

/* About Gallery */
.about-gallery {
    background: var(--white);
}

.about-gallery .section-header {
    text-align: center;
    margin-bottom: 32px;
}

.about-gallery .section-header h2 {
    font-size: 1.6rem;
    color: var(--primary-dark);
}

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

.about-gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.about-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s ease;
}

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

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    padding: 30px;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    transform: scale(.92);
    transition: transform .3s ease;
}

.gallery-lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
    z-index: 2;
}

.lightbox-close:hover {
    background: rgba(255,255,255,.3);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
    z-index: 2;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,.3);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 768px) {
    .about-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .about-gallery-grid {
        grid-template-columns: 1fr;
    }
    .lightbox-nav { display: none; }
}

/* Generic */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-content {
    font-size: 1.05rem;
    line-height: 1.9;
}

.page-content h2 { margin: 30px 0 15px; }
.page-content h3 { margin: 25px 0 12px; }
.page-content p { margin-bottom: 18px; }
.page-content ul, .page-content ol {
    margin: 15px 0;
    padding-left: 25px;
}
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 8px; }

/* Service Page */
.hizmet-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

.hizmet-hero h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.hizmet-hero p {
    opacity: .9;
    max-width: 600px;
    margin: 0 auto;
}

/* District Page */
.ilce-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.ilce-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,.15);
    border-radius: 50px;
    font-size: .85rem;
    margin-bottom: 15px;
}

.ilce-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.ilce-hero p {
    opacity: .9;
    max-width: 600px;
    margin: 0 auto 25px;
}

.ilce-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Local Services Grid */
.local-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Related Districts */
.related-districts {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 28px 30px;
}

.related-districts h3 {
    font-size: 1.15rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.related-districts-grid,
.other-districts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.related-district-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--primary);
    font-weight: 500;
    font-size: .9rem;
    text-decoration: none;
    transition: var(--transition);
}

.related-district-link:hover {
    border-color: var(--primary);
    background: rgba(0,119,182,.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Google Maps */
.google-map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.google-map-wrap iframe {
    display: block;
}

/* Contact Page */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.contact-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--primary);
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-info-col h2,
.contact-form-col h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.contact-info-col > p,
.contact-form-col > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info-item strong {
    display: block;
    font-size: .9rem;
    margin-bottom: 3px;
}

.contact-info-item p {
    margin: 0;
    color: var(--text-light);
    font-size: .95rem;
}

.contact-info-item a {
    color: var(--primary);
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-form-col form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.6);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.swimgo-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: .9rem;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,119,182,.1);
}

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

/* Search Form */
.search-form {
    display: flex;
    gap: 10px;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--primary);
}

.search-form button {
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--primary-dark);
}

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

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

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

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

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    padding: 40px;
    text-align: center;
    background: var(--light-bg);
    border-radius: var(--radius);
    grid-column: 1 / -1;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

.footer-cta h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-cta p {
    opacity: .9;
    margin-bottom: 25px;
}

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

.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.8);
    padding: 60px 0 0;
}

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

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.footer-about p {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: .9rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--primary-light);
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255,255,255,.8);
}
.footer-contact-item a:hover {
    color: var(--white);
}

.footer-map {
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
}

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

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

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

/* ==========================================
   SCROLL TO TOP
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 900;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 900;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37,211,102,.4);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,.5);
    color: var(--white);
}

/* ==========================================
   NO RESULTS
   ========================================== */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results h2 {
    margin: 20px 0 10px;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 25px;
}
