/* ===== SmileAlign Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* KORU HASTANESİ ORİJİNAL RENK PALETİ */
    --primary: #003974;      /* Koru Koyu Mavi */
    --primary-dark: #002652; /* Daha koyu Mavi */
    --primary-light: #1CA8CB;/* Koru Turkuaz / Siyan */
    --primary-glow: rgba(0, 57, 116, 0.15);
    
    --accent: #af9959;       /* Koru Altın/Kum Rengi */
    --accent-glow: rgba(175, 153, 89, 0.2);
    
    --bg-dark: #f7f9fb;      /* Ferah Arka Plan (Çok Uçuk Mavi/Gri) */
    --bg-darker: #eff6f8;    /* Açık Gri */
    --bg-light: #ffffff;     /* Saf Beyaz */
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    
    --text-primary: #151b26; /* Koyu Metin */
    --text-secondary: #5a6572; /* İkincil Metin */
    --text-light: #8a95a3;
    --text-muted: #888888;
    
    --border: #e2e8f0;
    --border-dark: #dcdcdc;
    
    --glass: rgba(255, 255, 255, 0.95);
    --glass-dark: rgba(255, 255, 255, 0.98);
    
    --shadow-sm: 0 2px 4px rgba(0, 57, 116, 0.05);
    --shadow-md: 0 4px 15px rgba(0, 57, 116, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 57, 116, 0.12);
    --shadow-glow: 0 0 20px rgba(28, 168, 203, 0.1);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 5%;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.navbar-logo i {
    font-size: 26px;
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.navbar-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.navbar-links a:hover {
    color: var(--primary);
    background: rgba(13, 148, 136, 0.06);
}

.navbar-links a.active {
    color: var(--primary);
    background: rgba(13, 148, 136, 0.1);
    font-weight: 600;
}

.navbar-cta {
    display: flex;
    align-items: center;
}

/* ===== DROPDOWN MENU ===== */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: var(--radius-lg);
    padding: 20px;
    width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    pointer-events: none;
    border: 1px solid rgba(0,0,0,0.05);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Prevent dropdown from hiding when moving mouse down */
.has-dropdown::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30px;
    bottom: -30px;
    left: 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.navbar-links a.dropdown-item {
    color: var(--text-primary);
    padding: 12px 16px;
}

.navbar.scrolled .navbar-links a.dropdown-item {
    color: var(--text-primary);
}

.dropdown-item:hover, .navbar-links a.dropdown-item:hover {
    background: var(--bg-surface);
    color: var(--primary);
    transform: translateX(5px);
}

.dropdown-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    font-size: 16px;
}

/* ================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--primary-glow);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-lg {
    padding: 14px 32px;
    font-size: 15px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--glass);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: var(--transition);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 12px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--primary);
    background: rgba(13,148,136,0.08);
}

/* ===== SLIDER (HERO) ===== */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--bg-light);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 15, 26, 0.9) 0%, rgba(13, 148, 136, 0.4) 100%);
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 6s ease;
}

.slide.active .slide-bg img {
    transform: scale(1);
}

.slide-content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.slide-text {
    max-width: 650px;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

.slide h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.5s;
}

.slide h1 .highlight {
    color: var(--primary-light);
}

.slide p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.7s;
}

.slide-buttons {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.9s;
}

/* Activate animations when slide is active */
.slide.active .slide-badge,
.slide.active h1,
.slide.active p,
.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    padding: 10px 30px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.slider-nav {
    display: flex;
    gap: 12px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-light);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--primary-glow);
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Animated visual element for slider right side */
.slider-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s;
}

.slide.active .slider-visual {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: floatCard 6s ease-in-out infinite;
}

.glass-card i {
    font-size: 70px;
    color: var(--primary-light);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(20, 184, 166, 0.5));
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 5%;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-primary);
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-dark .section-header h2 {
    color: var(--text-primary);
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 148, 136, 0.2);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(13,148,136,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.stat-item {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid var(--border-dark);
    transition: var(--transition);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(255,255,255,0.03);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== ABOUT / BIO ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.feature-list li .check-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: rgba(13,148,136,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

.about-visual {
    position: relative;
}

.about-image-card {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e0f2fe 0%, #ccfbf1 50%, #ede9fe 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.about-image-card i {
    font-size: 100px;
    color: var(--primary);
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(13,148,136,0.3);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.contact-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(13,148,136,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-form-box {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: var(--radius-xl);
}

.contact-form-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-box > p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-light);
    transition: var(--transition);
    outline: none;
}

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

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

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: var(--text-muted);
    padding: 60px 5% 30px;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-dark);
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .navbar-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
    padding: 140px 5% 80px;
    background: linear-gradient(160deg, #0a0f1a 0%, #0d2818 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb a {
    color: var(--primary-light);
    text-decoration: none;
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.team-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

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

.team-avatar {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e0f2fe, #ccfbf1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar i {
    font-size: 60px;
    color: var(--primary);
}

.team-info {
    padding: 24px;
}

.team-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-info p {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(13,148,136,0.2);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

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

.testimonial-author h4 {
    font-size: 14px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0d2818 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary {
    position: relative;
    z-index: 1;
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.value-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13,148,136,0.2);
}

.value-card .value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(99,102,241,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== SCROLL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

    .hamburger {
        display: flex;
    }

    .navbar-cta .btn-primary {
        display: none;
    }

    .hero {
        padding: 120px 5% 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-stat {
        display: none;
    }

    .section {
        padding: 60px 5%;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        margin-top: -30px;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 28px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .page-header {
        padding: 120px 5% 60px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-dark);
    }
}

/* Hizmetler Sayfasi Dikey Bloklar */
.hizmet-listesi { display: flex; flex-direction: column; gap: 80px; padding: 40px 0; }
.hizmet-blok { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; background: white; padding: 40px; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); border-top: 5px solid var(--primary); }
.hizmet-blok.reverse { direction: rtl; border-top: 5px solid var(--primary-light); }
.hizmet-blok.reverse > * { direction: ltr; }
.hizmet-resim { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 400px; }
.hizmet-resim img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.hizmet-blok:hover .hizmet-resim img { transform: scale(1.05); }
.hizmet-ikon { position: absolute; bottom: -20px; right: -20px; width: 80px; height: 80px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; border: 5px solid white; box-shadow: var(--shadow-sm); z-index: 2; }
.hizmet-blok.reverse .hizmet-ikon { right: auto; left: -20px; background: var(--primary-light); }
.hizmet-icerik h2 { font-size: 32px; color: var(--primary); margin-bottom: 20px; font-weight: 800; }
.hizmet-icerik p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.hizmet-icerik ul { list-style: none; padding: 0; margin-bottom: 30px; }
.hizmet-icerik ul li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 12px; color: var(--text-primary); font-weight: 500; font-size: 15px; }
.hizmet-icerik ul li i { margin-top: 3px; font-size: 18px; }

@media (max-width: 992px) {
    .hizmet-blok { grid-template-columns: 1fr; gap: 40px; padding: 30px; }
    .hizmet-blok.reverse { direction: ltr; }
    .hizmet-resim { height: 300px; }
    .hizmet-ikon { bottom: 20px; right: 20px; left: auto; }
}


/* =========================================================
   MAJESTIC PREMIUM (7-STAR VIP) CLONE CSS 
   (Gold Gradients, Cinematic Glows, Deep Midnight Elegance)
========================================================= */

/* Typography & Base Elegance */
body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    letter-spacing: 0.5px; 
    background-color: #050b14; 
    color: #e2e8f0;
}

/* Luxury Color Palette Overrides */
:root {
    --primary: #0a192f;
    --primary-light: #162f56;
    --accent-gold: linear-gradient(135deg, #F9D423 0%, #FF4E50 100%);
    --pure-gold: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --gold-solid: #D4AF37;
    --midnight: #030a16;
    --glass-dark: rgba(3, 10, 22, 0.7);
}

h1, h2, h3, h4 { letter-spacing: -0.5px; }

/* 1. Ultra-Majestic Top Bar */
.top-bar { 
    background: #02060d; 
    padding: 12px 0; 
    font-size: 13px; 
    color: rgba(255,255,255,0.7); 
    border-bottom: 1px solid rgba(212, 175, 55, 0.2); 
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left a, .top-bar-right a { color: rgba(255,255,255,0.8); text-decoration: none; margin-right: 30px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; }
.top-bar-left a i, .top-bar-right a i { color: var(--gold-solid); font-size: 14px; }
.top-bar-left a:hover, .top-bar-right a:hover { color: #fff; text-shadow: 0 0 10px rgba(212, 175, 55, 0.8); }
.btn-tb-randevu { 
    background: var(--pure-gold) !important; 
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 6px 20px !important; 
    border-radius: 50px; 
    font-weight: 700 !important; 
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); 
    transition: all 0.4s ease;
}
.btn-tb-randevu:hover { box-shadow: 0 0 25px rgba(212, 175, 55, 0.6); transform: scale(1.05); }

/* 2. Premium Navbar (Midnight Glass) */
.koru-navbar { 
    background: rgba(5, 11, 20, 0.85); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1); 
    padding: 25px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); 
}
.koru-navbar .navbar-logo { 
    font-size: 28px; font-weight: 800; letter-spacing: -1px; 
    background: var(--pure-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex; align-items: center; gap: 10px;
}
.koru-navbar .navbar-logo i { -webkit-text-fill-color: initial; color: var(--gold-solid); text-shadow: 0 0 20px rgba(212,175,55,0.5); }
.koru-navbar .navbar-links li a { 
    color: #e2e8f0; 
    font-weight: 600; 
    text-transform: uppercase; 
    font-size: 14px; 
    letter-spacing: 1.5px; 
    padding: 10px 15px; 
    position: relative;
    transition: color 0.4s ease; 
}
.koru-navbar .navbar-links li a::after {
    content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); width: 0; height: 2px;
    background: var(--pure-gold); transition: width 0.4s ease;
}
.koru-navbar .navbar-links li a:hover { color: var(--gold-solid); }
.koru-navbar .navbar-links li a:hover::after { width: 100%; }

/* 3. Hero Section (Cinematic Zoom & Majestic Overlay) */
.hero-koru { position: relative; height: 85vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; top:0; left:0; width:100%; height:100%; z-index: 1; }
.hero-bg img { width:100%; height:100%; object-fit: cover; animation: cinematicZoom 20s infinite alternate linear; }
@keyframes cinematicZoom { from { transform: scale(1); } to { transform: scale(1.15); } }
.hero-overlay { 
    position: absolute; top:0; left:0; width:100%; height:100%; 
    background: linear-gradient(135deg, rgba(3, 10, 22, 0.95) 0%, rgba(3, 10, 22, 0.7) 50%, rgba(212, 175, 55, 0.1) 100%); 
}
.hero-content { position: relative; z-index: 2; color: white; margin-top: -150px; }
.hero-content h1 { 
    font-size: 64px; font-weight: 900; margin-bottom: 30px; line-height: 1.1; 
    text-shadow: 0 15px 40px rgba(0,0,0,0.5); letter-spacing: -2px;
}
.hero-content h1 span { 
    background: var(--pure-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p { 
    font-size: 24px; opacity: 0.8; max-width: 800px; margin: 0 auto; 
    text-shadow: 0 5px 15px rgba(0,0,0,0.5); font-weight: 300; line-height: 1.8; 
}

/* 4. Glassmorphism Quick Action Box (Premium Edition) */
.quick-action-box { 
    background: rgba(10, 25, 47, 0.6); 
    backdrop-filter: blur(25px); 
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.3); 
    border-radius: 20px; 
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8); 
    overflow: hidden; 
    position: relative;
}
/* Shine effect */
.quick-action-box::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(212,175,55,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg); animation: premiumShine 6s infinite; pointer-events: none;
}
@keyframes premiumShine { 0% { transform: translateX(-100%) rotate(30deg); } 100% { transform: translateX(100%) rotate(30deg); } }

.qa-tabs { display: flex; border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
.qa-tab { 
    flex: 1; padding: 25px; border: none; 
    background: rgba(0,0,0,0.3); 
    font-size: 18px; font-weight: 600; color: rgba(255,255,255,0.5); 
    cursor: pointer; transition: all 0.4s ease; 
    display: flex; align-items: center; justify-content: center; gap: 10px; 
}
.qa-tab:hover { background: rgba(255,255,255,0.05); color: var(--gold-solid); }
.qa-tab.active { 
    background: rgba(10, 25, 47, 0.8); 
    color: var(--gold-solid); 
    border-bottom: none;
}
.qa-form { padding: 40px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 25px; align-items: center; }
.qa-select { 
    padding: 20px 25px; 
    border: 1px solid rgba(212, 175, 55, 0.3); 
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px; font-size: 16px; color: white; 
    width: 100%; outline: none; font-weight: 500;
    transition: all 0.3s;
    appearance: none;
}
.qa-select:focus { border-color: var(--gold-solid); box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); background: rgba(0, 0, 0, 0.6); }
.qa-form .btn-primary { 
    padding: 20px 50px; font-size: 16px; height: 100%; border:none; 
    background: var(--pure-gold);
    color: #000; font-weight:800; border-radius:12px; cursor:pointer; 
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase; letter-spacing: 1px;
}
.qa-form .btn-primary:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(212, 175, 55, 0.6); color: white; }

/* 5. Medical Departments (Majestic Dark Grid) */
.section-light { background: #050b14 !important; }
.section-alt { background: #02060d !important; }

.section-header h2 {
    background: var(--pure-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-size: 40px; font-weight: 900;
}
.heading-line { width: 80px; height: 4px; background: var(--pure-gold); margin: 20px auto; border-radius: 2px; }

.tibbi-birimler-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.birim-card { 
    background: linear-gradient(145deg, #0a192f 0%, #030a16 100%); 
    padding: 50px 30px; border-radius: 20px; text-align: center; 
    border: 1px solid rgba(212, 175, 55, 0.1); transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); 
    text-decoration: none; color: white; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    position: relative; overflow: hidden;
}
.birim-card::before {
    content: ''; position: absolute; inset: 0; padding: 2px;
    border-radius: 20px; background: var(--pure-gold);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity 0.5s ease;
}
.birim-card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15); }
.birim-card:hover::before { opacity: 1; }
.birim-card i { 
    font-size: 50px; color: var(--gold-solid); margin-bottom: 30px; 
    display: inline-block; padding: 30px; 
    background: rgba(0,0,0,0.3); border-radius: 50%;
    transition: all 0.5s ease; border: 1px solid rgba(212,175,55,0.2);
    box-shadow: inset 0 0 20px rgba(212,175,55,0.05);
}
.birim-card:hover i { background: var(--gold-solid); color: #02060d; transform: rotateY(360deg); border-color: transparent; }
.birim-card h3 { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: 0.5px; }

/* 6. Doctors Grid (VIP Portrait Style) */
.hekim-card { 
    background: #030a16; border-radius: 24px; overflow: hidden; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.hekim-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 40px 80px rgba(212, 175, 55, 0.2); border-color: rgba(212,175,55,0.4); }
.hekim-img { position: relative; overflow: hidden; }
.hekim-img::after { 
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 70%;
    background: linear-gradient(0deg, #030a16 0%, transparent 100%);
    opacity: 0.9; transition: opacity 0.4s ease;
}
.hekim-card:hover .hekim-img img { transform: scale(1.1); filter: contrast(1.1); }
.hekim-img img { transition: transform 0.8s ease, filter 0.8s ease; width:100%; height:320px; object-fit:cover; }
.hekim-info { padding: 0 30px 40px 30px; position: relative; z-index: 2; text-align: center; margin-top: -30px; }
.hekim-info h4 { color: #fff; font-size: 22px; font-weight: 800; margin-bottom: 8px; letter-spacing: 0.5px; }
.hekim-info p { color: var(--gold-solid); font-weight: 600; font-size: 14px; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 2px; }
.btn-sm-primary { 
    padding: 12px 30px; border-radius: 50px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
    background: transparent; color: var(--gold-solid); border: 1px solid var(--gold-solid);
    transition: all 0.4s ease; text-decoration: none; display: inline-block;
}
.hekim-card:hover .btn-sm-primary { background: var(--pure-gold); color: #000; border-color: transparent; box-shadow: 0 10px 20px rgba(212,175,55,0.3); }

/* 7. Footer Luxury Enhancements */
.footer { background-color: #02060d !important; position: relative; overflow: hidden; border-top: 1px solid rgba(212,175,55,0.2); }
.footer::before {
    content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
}

.btn-outline { 
    border-color: var(--gold-solid) !important; color: var(--gold-solid) !important; 
    padding: 15px 40px; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.btn-outline:hover { background: var(--pure-gold) !important; color: #000 !important; border-color: transparent !important; box-shadow: 0 10px 30px rgba(212,175,55,0.3); }

@media (max-width: 992px) {
    .qa-form { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 40px; }
    .top-bar { display: none; }
    .hero-koru { height: 750px; }
}
/* =========================================================
   SLIM-FIT AESTHETICS & DROPDOWN MENUS 
========================================================= */

/* Slim-Fit Structural Adjustments */
.container { 
    max-width: 1150px !important; /* Slimmer, more elegant container */
}
body { 
    font-weight: 300; /* Lighter base font */
}
h1, h2, h3, h4 { 
    font-weight: 700; /* Crisp headings, not overly bold */
}
.btn-primary, .btn-outline, .btn-sm-primary {
    padding: 12px 35px !important; /* Slimmer buttons */
    border-radius: 4px !important; /* Sharper, elegant corners */
    letter-spacing: 2px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

/* Dropdown Menu CSS */
.koru-navbar .navbar-links {
    display: flex;
    align-items: center;
    gap: 15px; /* Tighter gap */
}
.koru-navbar .navbar-links li {
    position: relative;
    padding: 10px 0; /* Breathing room for hover area */
}
.koru-navbar .navbar-links li a {
    font-size: 13px !important; /* Slimmer navbar text */
    letter-spacing: 1px !important;
    padding: 5px 10px !important;
}
.koru-navbar .navbar-links li a i.fa-angle-down {
    margin-left: 5px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

/* The Dropdown Container */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: rgba(3, 10, 22, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid var(--gold-solid);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
}

/* Hover Action */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.has-dropdown:hover > a i.fa-angle-down {
    transform: rotate(180deg);
}

/* Dropdown Items */
.dropdown-menu a {
    display: block;
    padding: 12px 25px !important;
    color: rgba(255,255,255,0.8) !important;
    font-size: 13px !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    font-weight: 500 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease !important;
}
.dropdown-menu a:last-child {
    border-bottom: none;
}
.dropdown-menu a::after {
    display: none !important; /* Remove the bottom gold line from navbar links */
}
.dropdown-menu a:hover {
    color: var(--gold-solid) !important;
    background: rgba(212, 175, 55, 0.05);
    padding-left: 30px !important; /* Gentle slide right */
}
/* =========================================================
   6-IMAGE SLIDER CSS
========================================================= */
.hero-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s;
}
.slide.active {
    opacity: 1;
    visibility: visible;
}
.slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s linear;
}
.slide.active img {
    transform: scale(1);
}
.slider-controls {
    position: absolute;
    top: 50%; width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}
.slider-btn {
    pointer-events: auto;
    width: 60px; height: 60px;
    background: rgba(3, 10, 22, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-solid);
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: flex; justify-content: center; align-items: center;
}
.slider-btn:hover {
    background: var(--pure-gold);
    color: #000;
    border-color: transparent;
    transform: scale(1.1);
}
/* =========================================================
   GLOBAL VIP THEME FOR SUBPAGES (Midnight & Gold)
========================================================= */

/* Global Section Resets for Subpages */
.section { background: #050b14; }
.section-light, .section-alt { background: #030a16 !important; }

/* Subpage Headers (Cinematic) */
.page-header {
    background: linear-gradient(135deg, rgba(3, 10, 22, 0.95) 0%, rgba(3, 10, 22, 0.8) 50%, rgba(212, 175, 55, 0.2) 100%), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?q=80&w=2000&auto=format&fit=crop') center/cover;
    padding: 100px 0;
    text-align: center;
    border-bottom: 2px solid var(--gold-solid);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 50px;
}
.page-header h1 {
    font-size: 48px;
    font-weight: 900;
    background: var(--pure-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    letter-spacing: -1px;
}
.page-header p {
    color: #e2e8f0;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 20px auto;
}
.breadcrumb { color: var(--gold-solid); font-size: 14px; font-weight: 600; }
.breadcrumb a { color: #e2e8f0; text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-solid); }

/* Service Blocks (Hizmetler Sayfası) */
.hizmet-blok {
    background: linear-gradient(145deg, #0a192f 0%, #030a16 100%);
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    color: white;
}
.hizmet-icerik h2 {
    background: var(--pure-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hizmet-icerik p { color: #a0aec0; }
.hizmet-icerik ul li { color: #e2e8f0; }
.hizmet-icerik ul li i { color: var(--gold-solid) !important; }
.hizmet-ikon {
    background: #030a16 !important;
    border: 2px solid var(--gold-solid) !important;
    color: var(--gold-solid) !important;
    box-shadow: 0 0 20px rgba(212,175,55,0.3) !important;
}

/* Forms & Contact Info (İletişim Sayfası) */
.contact-info, .contact-form {
    background: rgba(10, 25, 47, 0.6) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    color: white;
}
.contact-info h3, .contact-form h3 { color: var(--gold-solid); font-weight: 800; margin-bottom: 25px; }
.contact-info p { color: #a0aec0; }
.contact-info i { color: var(--gold-solid); }
.form-group input, .form-group textarea, .form-group select {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: white !important;
    border-radius: 8px;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold-solid) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2) !important;
}

/* Accordion (SSS Sayfası) */
.accordion-item {
    background: linear-gradient(145deg, #0a192f 0%, #030a16 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 12px;
    margin-bottom: 15px;
}
.accordion-header { background: transparent !important; color: #e2e8f0 !important; }
.accordion-header:hover { color: var(--gold-solid) !important; }
.accordion-header.active {
    color: var(--gold-solid) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
}
.accordion-content { background: rgba(0,0,0,0.2) !important; color: #a0aec0 !important; }

/* Blog & About Cards */
.blog-card, .about-card, .team-member, .feature-box, .stat-box {
    background: linear-gradient(145deg, #0a192f 0%, #030a16 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5) !important;
    color: white;
}
.blog-content h3, .about-content h2, .team-member h3 { color: var(--gold-solid) !important; }
.blog-content p, .about-content p, .team-member p { color: #a0aec0 !important; }

/* Subpage text colors */
.section-light h2, .section-alt h2 { color: var(--gold-solid); }
.section-light p, .section-alt p { color: #a0aec0; }