@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary-color: #0a0a0b; /* Matte Premium Black */
    --primary-light: #161619; /* Elegant Dark Gray */
    --secondary-color: #cca43b; /* Premium Gold */
    --secondary-dark: #b08d2f; /* Deep Gold */
    --text-color: #f4f4f5; /* Light zinc text */
    --text-light: #a1a1aa; /* Zinc Muted text */
    --light-bg: #0f0f11; /* Deep dark body background */
    --white: #ffffff;
    --glass-bg: rgba(10, 10, 11, 0.85); /* Dark glass */
    --glass-border: rgba(204, 164, 59, 0.15); /* Gold-tinted border */
}

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

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1440px; /* Geniş ekranlar (1920x1080 vb.) için 1280px'den 1440px'e çıkarıldı */
    margin: 0 auto;
    padding: 0 30px;
}

/* Header & Navbar */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px; /* Logo daha büyük görünebilsin diye menü yüksekliği artırıldı */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 100px;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 40px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    opacity: 0.9;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: var(--secondary-color);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links a:hover {
    color: var(--white);
    opacity: 1;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 5px;
    border-radius: 30px;
}

.lang-switch a {
    text-decoration: none;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.lang-switch a.active, .lang-switch a:hover {
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(204, 164, 59, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    /* Sleek gradient overlay */
    background: linear-gradient(135deg, rgba(10,10,11,0.92) 0%, rgba(10,10,11,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-top: 50px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: #e0e6ed;
    max-width: 600px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(45deg, var(--secondary-color), var(--secondary-dark));
    color: #000;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 25px rgba(204, 164, 59, 0.3);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(204, 164, 59, 0.5);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 70px;
    font-weight: 800;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(204, 164, 59, 0.08), rgba(204, 164, 59, 0.02));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
    transition: color 0.4s ease;
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    transition: color 0.4s ease;
}

.service-card:hover h3, 
.service-card:hover p {
    color: #fff;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    border-top: 5px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col .footer-logo-box {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-col .footer-logo-box img {
    max-height: 90px; /* Footer'da da logonun belirgin olması için artırıldı */
}

.footer-col h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #fff;
}

.footer-col p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.footer-col p i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Dropdown Styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -10px;
    background: var(--primary-light);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    z-index: 100;
    list-style: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
    margin-left: 0 !important;
}

.dropdown-menu a {
    padding: 12px 20px !important;
    display: block !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    color: var(--text-color) !important;
    opacity: 1 !important;
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.05) !important;
    color: var(--secondary-color) !important;
}

.footer-col a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Why Choose Us Section */
.why-us {
    padding: 100px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.why-item:hover .why-icon {
    transform: translateY(-10px);
    color: var(--secondary-color);
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.why-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Info Blocks (4 Columns) */
.info-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.info-block {
    padding: 80px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.info-block:hover {
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.info-block i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.info-block p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Info Block Colors */
.info-block.block-1 { background: #121214; color: var(--text-color); }
.info-block.block-1 i { color: var(--secondary-color); }
.info-block.block-1 h3 { color: var(--white); }

.info-block.block-2 { background: #1a1a1e; color: var(--text-color); }
.info-block.block-2 i { color: var(--secondary-color); }
.info-block.block-2 h3 { color: var(--white); }

.info-block.block-3 { background: #222227; color: #e0e6ed; }
.info-block.block-3 i { color: var(--secondary-color); }
.info-block.block-3 h3 { color: #ffffff; }

.info-block.block-4 { background: var(--secondary-color); color: #000000; }
.info-block.block-4 i { color: #000000; }
.info-block.block-4 h3 { color: #000000; }
.info-block.block-4 p { color: #1a1a1e; }

/* Enhanced Footer Elements */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form button {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}
.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 1200px) {
    .info-blocks { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-light);
        border-top: 1px solid var(--glass-border);
        padding: 20px;
        gap: 5px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }
    .nav-links.mobile-open li {
        margin-left: 0;
    }
    .nav-links.mobile-open li a {
        padding: 12px 15px;
        display: block;
    }
    .nav-links.mobile-open .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        background: transparent;
        min-width: auto;
    }
    .nav-links.mobile-open .has-dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .services { padding: 80px 0; }
    .info-blocks { grid-template-columns: 1fr; }
    .medical-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    .section-subtitle { margin: -40px auto 30px auto; font-size: 0.95rem; }
}

.cert-card:hover {
    transform: translateY(-5px);
}

.cert-card:hover div {
    border-color: var(--secondary-color) !important;
    color: #000 !important;
    background-color: var(--secondary-color) !important;
}

/* Medical Page & Section Styles */
.medical-solutions {
    padding: 120px 0;
    background: #09090a;
    position: relative;
    text-align: center;
}
.medical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.medical-card {
    background: var(--primary-light);
    border: 1px solid rgba(204, 164, 59, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}
.medical-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 3px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}
.medical-card:hover {
    transform: translateY(-8px);
    border-color: rgba(204, 164, 59, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.medical-card:hover::after {
    transform: scaleX(1);
}
.medical-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(204, 164, 59, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.medical-card:hover .medical-icon-box {
    background: var(--secondary-color);
    color: #000;
}
.medical-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}
.medical-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: -50px auto 50px auto;
}

/* ===== Premium Page Layout ===== */
.page-hero {
    position: relative;
    padding: 160px 0 60px;
    text-align: center;
    overflow: hidden;
    background: var(--primary-color);
}
.page-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(204, 164, 59, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(204, 164, 59, 0.05) 0%, transparent 60%),
        linear-gradient(135deg, #0a0a0b 0%, #161619 50%, #0a0a0b 100%);
    z-index: 1;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 50%, transparent 100%);
    opacity: 0.4;
}
.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}
.page-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}
.page-breadcrumb a:hover {
    color: var(--secondary-color);
}
.page-breadcrumb span {
    color: rgba(255,255,255,0.25);
    font-size: 0.7rem;
}
.page-breadcrumb .current {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.85rem;
}
.page-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.page-hero-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-dark));
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(204, 164, 59, 0.4);
}

/* Content Area */
.page-content-area {
    position: relative;
    padding: 60px 0 80px;
    min-height: 50vh;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(204, 164, 59, 0.04) 0%, transparent 50%),
        var(--light-bg);
}
.page-content-glow {
    position: absolute;
    top: -100px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 200px;
    background: radial-gradient(ellipse, rgba(204, 164, 59, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Glassmorphism Card */
.page-card {
    position: relative;
    z-index: 1;
    background: rgba(22, 22, 25, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(204, 164, 59, 0.1);
    border-radius: 16px;
    padding: 50px 55px;
    line-height: 1.9;
    font-size: 1.05rem;
    color: var(--text-color);
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: border-color 0.4s ease;
}
.page-card:hover {
    border-color: rgba(204, 164, 59, 0.2);
}
.page-card::before {
    content: '';
    position: absolute;
    top: 0; left: 30px; right: 30px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(204, 164, 59, 0.15), transparent);
}

@media (max-width: 768px) {
    .page-hero { padding: 130px 0 40px; }
    .page-hero-title { font-size: 2rem; }
    .page-card { padding: 30px 20px; border-radius: 12px; }
    .page-content-area { padding: 40px 0 60px; }
}

/* ===== Page Content Overrides (DB content dark theme) ===== */
.page-body-content {
    color: var(--text-color);
}
.page-body-content div,
.page-body-content section,
.page-body-content p,
.page-body-content span,
.page-body-content li,
.page-body-content table,
.page-body-content tbody,
.page-body-content thead,
.page-body-content tr,
.page-body-content td,
.page-body-content th,
.page-body-content footer,
.page-body-content header {
    background-color: transparent !important;
    color: var(--text-color) !important;
    border-color: rgba(255,255,255,0.08) !important;
}
.page-body-content div[style*="background"] {
    background: var(--primary-light) !important;
    border-color: var(--glass-border) !important;
}
.page-body-content div[style*="linear-gradient"] {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e1e24 100%) !important;
}
.page-body-content div[style*="box-shadow"] {
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}
.page-body-content div[style*="border-left: 5px"],
.page-body-content div[style*="border-left: 4px"] {
    border-left-color: var(--secondary-color) !important;
}
.page-body-content div[style*="border: 1px dashed"] {
    border-color: rgba(204, 164, 59, 0.2) !important;
}
.page-body-content div[style*="border-bottom: 2px solid #ffcc00"] {
    border-bottom-color: var(--secondary-color) !important;
}
.page-body-content h1,
.page-body-content h2,
.page-body-content h3,
.page-body-content h4 {
    color: #fff !important;
}
.page-body-content strong {
    color: var(--secondary-color) !important;
}
.page-body-content a {
    color: var(--secondary-color) !important;
}
.page-body-content a:hover {
    color: #fff !important;
}
.page-body-content ul {
    color: var(--text-color) !important;
}
.page-body-content table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0 !important;
}
.page-body-content table th {
    background: var(--primary-light) !important;
    color: var(--secondary-color) !important;
    padding: 14px 16px !important;
    text-align: left;
    font-weight: 600 !important;
    border-bottom: 2px solid var(--secondary-color) !important;
}
.page-body-content table td {
    padding: 12px 16px !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}
.page-body-content table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02) !important;
}
.page-body-content div[style*="color: #ffcc00"] span[style*="color: #ffcc00"] {
    color: var(--secondary-color) !important;
}
.page-body-content footer {
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    padding-top: 15px !important;
    margin-top: 20px !important;
}
