/* ==========================================================================
   DESIGN SYSTEM - UZM. DR. NALAN KUZU PREMIUM WEB SITE
   Created by DijitalOfisim (Hasan Yahşi)
   ========================================================================== */

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

:root {
    /* Color Palette */
    --primary-hue: 164;
    --primary: hsl(var(--primary-hue), 85%, 16%);
    --primary-light: hsl(var(--primary-hue), 70%, 25%);
    --primary-dark: hsl(var(--primary-hue), 90%, 9%);
    --accent: hsl(150, 65%, 48%);
    --accent-glow: rgba(54, 211, 153, 0.25);
    
    --bg-light: hsl(170, 25%, 98%);
    --bg-card: hsl(0, 0%, 100%);
    --bg-dark: hsl(164, 45%, 7%);
    
    --text-primary: hsl(164, 60%, 12%);
    --text-secondary: hsl(164, 20%, 35%);
    --text-muted: hsl(164, 15%, 55%);
    --text-light: hsl(0, 0%, 98%);
    
    /* UI Specs */
    --glass-bg: rgba(255, 255, 255, 0.70);
    --glass-border: rgba(255, 255, 255, 0.50);
    --glass-shadow: 0 10px 40px 0 rgba(0, 50, 40, 0.06);
    --card-shadow: 0 15px 45px rgba(0, 40, 30, 0.04), 0 5px 15px rgba(0, 0, 0, 0.01);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fluid: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

button, input, textarea, select {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: hsl(var(--primary-hue), 30%, 80%);
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-light);
}
::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--primary-hue), 40%, 60%);
}

/* --- Layout & Containers --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

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

.section-dark h2, .section-dark h3 {
    color: var(--text-light);
}

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

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: hsla(150, 65%, 48%, 0.12);
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid hsla(150, 65%, 48%, 0.15);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.section-dark .section-subtitle {
    color: var(--text-muted);
}

/* --- Buttons & Interactive Elements --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 8px 24px rgba(0, 50, 40, 0.15);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 50, 40, 0.25);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background-color: var(--glass-bg);
    color: var(--primary);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 50, 40, 0.15);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    background-color: #128C7E;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    transition: var(--transition-fluid);
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 77, 64, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--primary);
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary);
}

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

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    background: radial-gradient(circle at 80% 20%, hsla(150, 60%, 55%, 0.08), transparent 50%),
                radial-gradient(circle at 10% 80%, hsla(164, 85%, 15%, 0.04), transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hospital-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 77, 64, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.hospital-tag span {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: var(--radius-full);
    display: inline-block;
    box-shadow: 0 0 10px var(--accent);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, hsla(150, 60%, 55%, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 40, 30, 0.12);
    border: 4px solid var(--bg-card);
    position: relative;
    z-index: 1;
}

.hero-badge-card {
    position: absolute;
    bottom: 30px;
    left: -40px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.hero-badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.hero-badge-text h4 {
    font-size: 1.2rem;
    line-height: 1.1;
}

.hero-badge-text p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- About & Timeline --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-info p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.about-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feat-icon {
    width: 40px;
    height: 40px;
    background-color: hsla(164, 85%, 15%, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feat-text h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.about-feat-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: rgba(0, 77, 64, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 16px;
    height: 16px;
    background-color: var(--bg-light);
    border: 4px solid var(--accent);
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
    background-color: var(--accent);
    transform: scale(1.2);
}

.timeline-year {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 6px;
}

.timeline-title {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Services & Expertise --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: var(--transition-fluid);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 77, 64, 0.15);
    box-shadow: 0 20px 50px rgba(0, 40, 30, 0.08);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsla(164, 85%, 15%, 0.06), hsla(150, 60%, 55%, 0.06));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

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

.service-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.service-link svg {
    transition: var(--transition-fast);
}

.service-card:hover .service-link svg {
    transform: translateX(5px);
}

/* Details Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 30, 20, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    width: 90%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-fluid);
}

.modal-overlay.active .modal-box {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--primary);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: hsla(164, 85%, 15%, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.modal-body {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* --- Gastro-Quiz (Sindirim Testi) --- */
.quiz-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.quiz-card {
    padding: 50px;
}

.quiz-progress {
    width: 100%;
    height: 6px;
    background-color: rgba(0, 77, 64, 0.08);
    border-radius: var(--radius-full);
    margin-bottom: 40px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: slideInQuiz 0.4s ease-out forwards;
}

@keyframes slideInQuiz {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-question {
    font-size: 1.6rem;
    margin-bottom: 28px;
    color: var(--primary);
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.quiz-option {
    padding: 18px 24px;
    background: var(--bg-light);
    border: 2px solid rgba(0, 77, 64, 0.05);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.quiz-option::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid hsl(var(--primary-hue), 15%, 80%);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.quiz-option:hover {
    border-color: var(--accent);
    background-color: var(--bg-card);
    transform: translateX(4px);
}

.quiz-option.selected {
    border-color: var(--primary);
    background-color: hsla(var(--primary-hue), 85%, 15%, 0.04);
}

.quiz-option.selected::after {
    border-color: var(--primary);
    background-color: var(--primary);
    box-shadow: inset 0 0 0 4px white;
}

.quiz-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.quiz-results {
    display: none;
    text-align: center;
    animation: fadeInQuiz 0.6s ease-out forwards;
}

.quiz-results.active {
    display: block;
}

.quiz-results-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.quiz-results-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.quiz-results-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-advices {
    background-color: hsla(164, 85%, 15%, 0.04);
    border: 1px solid rgba(0, 77, 64, 0.06);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.quiz-advices h5 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quiz-advices ul {
    list-style: none;
}

.quiz-advices li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.quiz-advices li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* --- Reviews & Social Grid --- */
.reviews-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 100px auto;
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    transition: transform var(--transition-fluid);
}

.review-slide {
    min-width: 100%;
    padding: 0 10px;
}

.review-card {
    padding: 50px;
    text-align: center;
}

.review-author {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.review-source {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 720px;
    margin: 0 auto;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.reviews-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    box-shadow: var(--glass-shadow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.reviews-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Instagram Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.social-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fluid);
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 40, 30, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
    color: white;
}

.social-item:hover img {
    transform: scale(1.1);
}

.social-item:hover .social-overlay {
    opacity: 1;
}

.social-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.social-likes {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- FAQ / SSS Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.faq-question {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary);
    padding-right: 20px;
}

.faq-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: hsla(164, 85%, 15%, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-icon-box svg {
    transition: var(--transition-smooth);
}

.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-fluid);
}

.faq-content-inner {
    overflow: hidden;
    padding: 0 30px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: rgba(0, 77, 64, 0.15);
}

.faq-item.active .faq-content {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-content-inner {
    padding-bottom: 24px;
}

.faq-item.active .faq-icon-box {
    background-color: var(--primary);
    color: white;
}

.faq-item.active .faq-icon-box svg {
    transform: rotate(45deg);
}

/* --- Contact & Location --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-card {
    padding: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, hsla(164, 85%, 15%, 0.06), hsla(150, 60%, 55%, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-full {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--bg-light);
    border: 2px solid rgba(0, 77, 64, 0.05);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--accent);
    background-color: white;
}

textarea.form-control {
    resize: none;
    height: 120px;
}

.map-wrapper {
    margin-top: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    height: 250px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Footer & Signature (DijitalOfisim) --- */
.footer {
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(0, 77, 64, 0.06);
}

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

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

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

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: hsla(164, 85%, 15%, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition-smooth);
}

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

.footer-links-title {
    font-size: 1.15rem;
    margin-bottom: 24px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-link:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-newsletter p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form .form-control {
    padding: 10px 16px;
}

.newsletter-form .btn {
    padding: 10px 20px;
}

/* Premium Signature Block */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 77, 64, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.signature {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.signature-primary {
    color: var(--text-secondary);
    font-weight: 600;
}

.signature-brand {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* Glow & Slide effect on signature hover */
.signature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsla(164, 85%, 15%, 0.05), hsla(150, 60%, 55%, 0.05));
    border-radius: var(--radius-sm);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-smooth);
    z-index: -1;
}

.signature:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.signature:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* --- Entry & Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .about-grid, .contact-grid {
        gap: 40px;
    }
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .section {
        padding: 70px 0;
    }
    .header {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 77, 64, 0.08);
    }
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-card);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 24px;
        transition: var(--transition-fluid);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    .nav-menu.active {
        left: 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-image-wrapper {
        order: -1;
    }
    .hero-badge-card {
        left: 20px;
    }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1;
    }
    .contact-form {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .quiz-card {
        padding: 30px 20px;
    }
    .quiz-question {
        font-size: 1.3rem;
    }
    .review-card {
        padding: 30px 15px;
    }
    .review-text {
        font-size: 1rem;
    }
}

/* ==========================================
   10. PREMIUM FORM & SVG ANIMATIONS STYLING
   ========================================== */
.interactive-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    background: linear-gradient(120deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

@media (max-width: 768px) {
    .form-row-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-input-premium {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px 14px 46px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.form-input-premium:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.form-input-premium:focus + .input-icon {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.form-label-premium {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.service-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.service-pill-btn {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

.service-pill-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
}

.service-pill-btn.active {
    background: rgba(212, 175, 55, 0.12);
    border-color: #d4af37;
    color: #d4af37;
    font-weight: 600;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.1);
}

.btn-premium-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.btn-premium-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Lottie-like SVG Icon Animations */
.svg-lottie-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.service-card:hover .svg-lottie-icon {
    transform: scale(1.1) translateY(-3px);
}

/* Specific SVG animations representing Lottie states */
@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.98);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes rotateGear {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.anim-draw {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawPath 2s ease forwards;
}

.anim-pulse {
    animation: pulseGlow 2.5s infinite ease-in-out;
}

.anim-rotate {
    transform-origin: center;
    animation: rotateGear 12s infinite linear;
}

.anim-float {
    animation: floatElement 3s infinite ease-in-out;
}
