/* ============================================================
   Kristal Cam - Ana Stil Dosyası
   Renk Paleti: Derin Mavi + Cam/Kristal Efektleri
   ============================================================ */

:root {
    --primary:       #1565c0;
    --primary-dark:  #0d47a1;
    --primary-light: #1976d2;
    --accent:        #42a5f5;
    --accent-light:  #90caf9;
    --gold:          #f9a825;
    --dark:          #0a1628;
    --dark-2:        #0d2137;
    --text:          #2c3e50;
    --text-light:    #6c757d;
    --white:         #ffffff;
    --light-bg:      #f0f7ff;
    --border:        #e0eaf5;
    --glass-bg:      rgba(255, 255, 255, 0.12);
    --glass-border:  rgba(255, 255, 255, 0.25);
    --shadow:        0 8px 32px rgba(21, 101, 192, 0.15);
    --shadow-hover:  0 16px 48px rgba(21, 101, 192, 0.25);
    --radius:        12px;
    --radius-lg:     20px;
    --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

.bg-light-blue { background-color: var(--light-bg); }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.top-bar-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.top-bar-info a,
.top-bar-info span {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.top-bar-info a:hover { color: var(--accent-light); }
.top-bar-info i { color: var(--accent); font-size: 12px; }

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}
.top-bar-social a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}
.top-bar-social a:hover { color: var(--white); }
.top-bar-social .whatsapp-link { color: #25d366; }
.top-bar-social .whatsapp-link:hover { color: #1ebe57; }

/* ===== NAVBAR ===== */
.main-navbar {
    background: var(--dark) !important;
    padding: 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-navbar.scrolled {
    background: rgba(10, 22, 40, 0.97) !important;
    backdrop-filter: blur(10px);
    padding: 0;
}

.navbar-brand { padding: 12px 0; }

.logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}
.logo-words { display: flex; flex-direction: column; }
.logo-main { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: white; line-height: 1.1; }
.logo-sub { font-size: 11px; color: var(--accent-light); letter-spacing: 1px; }

.main-navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 22px 14px !important;
    position: relative;
    letter-spacing: 0.3px;
    transition: var(--transition);
}
.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 3px 3px 0 0;
    transition: var(--transition);
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: white !important; }
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { width: 80%; }

/* Dropdown */
.main-navbar .dropdown-menu {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 8px;
    margin-top: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    min-width: 220px;
}
.main-navbar .dropdown-item {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    padding: 9px 14px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}
.main-navbar .dropdown-item i { color: var(--accent); width: 20px; }
.main-navbar .dropdown-item:hover {
    background: rgba(66, 165, 245, 0.15);
    color: white;
}
.main-navbar .dropdown-divider { border-color: rgba(255,255,255,0.1); }

/* Call Button */
.btn-call {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(21,101,192,0.4);
}
.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21,101,192,0.5);
    color: white !important;
}
.btn-call::after { display: none !important; }

/* ===== HERO ===== */
.hero-section {
    position: relative;
    background: var(--dark);
}
.hero-swiper { height: 100%; }

.hero-slide {
    min-height: 640px;
    height: calc(100vh - 110px);
    max-height: 800px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-default { background: linear-gradient(135deg, #0a1628 0%, #0d3b6e 50%, #1565c0 100%); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(13,59,110,0.6) 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(66,165,245,0.2);
    border: 1px solid rgba(66,165,245,0.4);
    color: var(--accent-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    max-width: 560px;
    line-height: 1.7;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(21,101,192,0.45);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(21,101,192,0.55);
    color: white;
}

.btn-hero-secondary {
    background: var(--glass-bg);
    color: white;
    border: 2px solid var(--glass-border);
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-3px);
}

/* Hero Swiper Controls */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    color: white;
    transition: var(--transition);
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 16px; }
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover { background: var(--primary); }
.hero-pagination .swiper-pagination-bullet { background: white; opacity: 0.5; width: 8px; height: 8px; }
.hero-pagination .swiper-pagination-bullet-active { background: var(--accent); opacity: 1; width: 24px; border-radius: 4px; }

/* Hero Stats Bar */
.hero-stats {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    padding: 0;
    position: relative;
    z-index: 5;
}
.stat-item {
    padding: 20px 10px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.stat-suffix { font-size: 22px; font-weight: 800; color: var(--accent-light); }
.stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.5px;
    margin-top: 4px;
    font-weight: 500;
}

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }

.section-header { margin-bottom: 10px; }
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(21,101,192,0.1), rgba(66,165,245,0.1));
    color: var(--primary);
    border: 1px solid rgba(21,101,192,0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 12px auto 0;
}
.section-header.text-start .section-title::after { margin: 12px 0 0; }
.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(21,101,192,0.08);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-light);
}
.service-card-img { height: 180px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--light-bg), rgba(66,165,245,0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 22px;
    color: var(--primary);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-color: transparent;
}
.service-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.service-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}
.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}
.service-link:hover { color: var(--accent); gap: 10px; }

/* Large Service Cards (hizmetler sayfası) */
.service-card-large {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(21,101,192,0.08);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.service-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.service-card-img-lg { height: 220px; overflow: hidden; position: relative; }
.service-card-img-lg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card-large:hover .service-card-img-lg img { transform: scale(1.1); }
.service-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,59,110,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
}
.service-card-icon-top {
    height: 120px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}
.service-card-body-lg { padding: 24px; }
.service-title-lg { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-desc-lg { font-size: 14px; color: var(--text-light); margin-bottom: 20px; line-height: 1.7; }
.btn-service-detail {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 10px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}
.btn-service-detail:hover {
    background: var(--primary);
    color: white;
}

/* ===== ABOUT ===== */
.about-image-wrapper { position: relative; }
.about-image-placeholder {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-lg);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.about-image-placeholder.large { min-height: 500px; }
.about-glass-effect {
    text-align: center;
    color: white;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    margin: 20px;
}
.about-glass-effect i { font-size: 60px; color: var(--accent-light); margin-bottom: 16px; display: block; }
.about-glass-effect h3 { font-size: 28px; color: white; margin-bottom: 8px; }
.about-glass-effect p { color: rgba(255,255,255,0.8); margin: 0; }
.about-glass-effect small { font-size: 13px; color: var(--accent-light); }

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), #f57f17);
    color: white;
    border-radius: var(--radius);
    padding: 16px 22px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(249,168,37,0.4);
}
.badge-number { display: block; font-size: 32px; font-weight: 800; line-height: 1; }
.badge-text { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; }

.about-content p { margin-bottom: 14px; color: var(--text); }

.about-stat-item {
    text-align: center;
    background: linear-gradient(135deg, var(--light-bg), rgba(66,165,245,0.08));
    border-radius: var(--radius);
    padding: 16px 10px;
    border: 1px solid var(--border);
}
.about-stat-item strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}
.about-stat-item span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}

/* ===== FEATURES ===== */
.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(21,101,192,0.08);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(21,101,192,0.3);
}
.feature-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.feature-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; margin: 0; }

/* ===== GALLERY ===== */
.gallery-item { display: block; }
.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1;
    background: var(--light-bg);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,23,71,0.85) 0%, rgba(21,101,192,0.5) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
    padding: 16px;
    text-align: center;
}
.gallery-overlay i { font-size: 28px; margin-bottom: 8px; }
.gallery-overlay span { font-size: 13px; font-weight: 600; }
.gallery-item:hover .gallery-thumb img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
    background: white;
    cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,22,40,0.3);
}
.cta-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
}
.cta-subtitle { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 35px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.btn-cta-primary {
    background: white;
    color: var(--primary);
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}
.btn-cta-primary:hover {
    background: var(--light-bg);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}
.btn-cta-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}
.btn-cta-whatsapp:hover { background: #1ebe57; color: white; transform: translateY(-3px); }
.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 14px 34px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}
.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* ===== STATS ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
}
.stat-box {
    text-align: center;
    color: white;
    padding: 20px;
}
.stat-box .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 12px;
    border: 1px solid rgba(255,255,255,0.25);
}
.stat-box h3 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
    display: inline;
}
.stat-box p { font-size: 14px; color: rgba(255,255,255,0.8); margin: 0; }

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 70px 0 50px;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,22,40,0.75);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner-title {
    color: white;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 12px;
}
.page-breadcrumb { background: none; padding: 0; margin: 0; }
.page-breadcrumb .breadcrumb-item { font-size: 14px; }
.page-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-breadcrumb .breadcrumb-item a:hover { color: white; }
.page-breadcrumb .breadcrumb-item.active { color: var(--accent-light); }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== SERVICE DETAIL ===== */
.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(21,101,192,0.3);
}
.service-detail-content h3 { font-size: 22px; margin-top: 24px; margin-bottom: 12px; color: var(--primary-dark); }
.service-detail-content ul { padding-left: 20px; }
.service-detail-content ul li { margin-bottom: 8px; color: var(--text); }
.service-detail-content p { color: var(--text); margin-bottom: 16px; }

.service-navigation {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}
.service-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--light-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    color: var(--text);
}
.service-nav-link:hover { background: var(--primary); color: white; border-color: var(--primary); }
.service-nav-link div small { display: block; font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.service-nav-link:hover div small { color: rgba(255,255,255,0.7); }
.service-nav-link div span { font-size: 14px; font-weight: 600; font-family: 'Montserrat', sans-serif; }

/* Sidebar */
.sidebar-widget {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    padding: 18px 22px;
    margin: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}
.sidebar-title i { color: var(--accent-light); }
.sidebar-services {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-services li a {
    display: flex;
    align-items: center;
    padding: 12px 22px;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.sidebar-services li a:hover,
.sidebar-services li.active a {
    background: var(--light-bg);
    color: var(--primary);
    padding-left: 28px;
}
.sidebar-services li:last-child a { border-bottom: none; }
.sidebar-services li.active a { font-weight: 700; color: var(--primary); }
.sidebar-services li a .fa-chevron-right { font-size: 10px; color: var(--text-light); }

.contact-widget { padding: 0; }
.contact-widget .sidebar-title + * { padding: 20px; }
.contact-widget p { font-size: 14px; color: var(--text-light); }

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-whatsapp:hover { background: #1ebe57; color: white; }

.working-hours { padding: 16px 22px; }
.wh-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px dashed var(--border);
}
.wh-row:last-child { border-bottom: none; }
.wh-row span:first-child { color: var(--text); font-weight: 500; }
.wh-row span:last-child { color: var(--primary); font-weight: 600; }
.wh-row.holiday span:last-child { color: #e53935; }

/* ===== İLETİŞİM ===== */
.contact-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(21,101,192,0.08);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 16px;
}
.contact-info-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.contact-info-card p { font-size: 14px; color: var(--text-light); margin: 0; }
.contact-info-card a { color: var(--primary); }

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 8px 40px rgba(21,101,192,0.1);
    border: 1px solid var(--border);
}
.contact-form .form-control,
.contact-form .form-select {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    transition: var(--transition);
    color: var(--text);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21,101,192,0.12);
}
.contact-form .form-label { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }

.quick-contact-btns { display: flex; flex-direction: column; gap: 12px; }
.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid var(--border);
    background: white;
    text-decoration: none;
}
.quick-contact-btn:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.quick-contact-btn i {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}
.quick-contact-btn.phone i { background: var(--primary); }
.quick-contact-btn.whatsapp i { background: #25d366; }
.quick-contact-btn.email i { background: #f57c00; }
.quick-contact-btn div small { display: block; font-size: 12px; color: var(--text-light); }
.quick-contact-btn div strong { font-size: 14px; color: var(--dark); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 70px 0 50px; }
.footer-logo { margin-bottom: 20px; }
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}
.footer-brand i { font-size: 30px; color: var(--accent); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; }

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-links li a i { color: var(--accent); font-size: 11px; }
.footer-links li a:hover { color: white; padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 14px;
}
.footer-contact li i {
    color: var(--accent);
    width: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-contact li a { color: rgba(255,255,255,0.75); }
.footer-contact li a:hover { color: white; }
.footer-contact li span { color: rgba(255,255,255,0.65); }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: rgba(255,255,255,0.85); }

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(21,101,192,0.35);
}
.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21,101,192,0.45);
}
.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 26px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}
.btn-outline-custom:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    z-index: 999;
    box-shadow: 0 6px 25px rgba(37,211,102,0.45);
    transition: var(--transition);
    animation: pulse-whatsapp 2.5s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    animation: none;
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #25d366;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #25d366;
    border-right: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 35px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 4px 15px rgba(21,101,192,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ===== MAP ===== */
.map-section { line-height: 0; }
.map-wrapper { line-height: 0; }

/* ===== PAGE CONTENT ===== */
.page-content { line-height: 1.8; }
.page-content h2 { font-size: 26px; margin-top: 32px; margin-bottom: 16px; color: var(--primary-dark); }
.page-content h3 { font-size: 20px; margin-top: 24px; margin-bottom: 12px; }
.page-content p { margin-bottom: 16px; }
.page-content ul { padding-left: 20px; margin-bottom: 16px; }
.page-content li { margin-bottom: 8px; }

/* ===== GALLERY ITEM TITLE ===== */
.gallery-item-title { font-size: 13px; font-weight: 600; }
.gallery-category { font-size: 11px; color: var(--accent-light); }

/* ===== ALERTS ===== */
.alert { border-radius: var(--radius); border: none; padding: 16px 20px; }
.alert-success { background: rgba(56,142,60,0.1); color: #2e7d32; }
.alert-danger { background: rgba(229,57,53,0.1); color: #c62828; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .top-bar { display: none; }
    .section { padding: 60px 0; }
    .hero-slide { min-height: 480px; height: auto; padding: 80px 0; }
    .main-navbar .nav-link { padding: 12px 16px !important; }
    .main-navbar .nav-link::after { display: none; }
    .main-navbar .dropdown-menu { background: rgba(255,255,255,0.05); border: none; }
    .btn-call { margin: 10px 16px; }
    .hero-stats .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
}

@media (max-width: 767px) {
    .section { padding: 50px 0; }
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 15px; }
    .cta-section { padding: 60px 0; }
    .cta-title { font-size: 24px; }
    .contact-form-wrapper { padding: 24px; }
    .footer-top { padding: 50px 0 30px; }
    .about-badge { bottom: -15px; right: 10px; }
    .service-detail-header { flex-direction: column; gap: 12px; }
}

@media (max-width: 576px) {
    .hero-btns { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { text-align: center; justify-content: center; }
    .cta-btns { flex-direction: column; align-items: stretch; }
    .stat-item { padding: 14px 8px; }
    .stat-number { font-size: 24px; }
}
