/* ============================================
   Benan Erçalışkan - Dil ve Konuşma Terapisti
   Portfolio Website Styles
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - from logo */
    --color-orange: #F59E0B;
    --color-blue: #3B82F6;
    --color-green: #10B981;
    --color-pink: #EC4899;
    --color-red: #EF4444;
    --color-purple: #8B5CF6;
    
    /* Neutrals */
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-orange) 0%, var(--color-pink) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--color-blue) 0%, var(--color-purple) 100%);
    --gradient-hero: linear-gradient(135deg, #fef3e7 0%, #fce7f3 50%, #e0f2fe 100%);
    
    /* Typography */
    --font-primary: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Quicksand', var(--font-primary);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Layout */
    --header-height: 100px;
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-700);
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-gray-800);
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: var(--space-md); }

.lead {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.8;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.text-orange { color: var(--color-orange) !important; }
.text-blue { color: var(--color-blue) !important; }
.text-green { color: var(--color-green) !important; }
.text-pink { color: var(--color-pink) !important; }
.text-red { color: var(--color-red) !important; }
.text-purple { color: var(--color-purple) !important; }

.bg-orange { background-color: var(--color-orange) !important; }
.bg-blue { background-color: var(--color-blue) !important; }
.bg-green { background-color: var(--color-green) !important; }
.bg-pink { background-color: var(--color-pink) !important; }

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gray-800);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: box-shadow var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 10px 0;
}

.logo img {
    height: 80px;
    width: auto;
    min-width: 180px;
    max-width: 280px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo img {
        height: 55px;
        min-width: 140px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-gray-600);
    font-weight: 600;
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-gray-800);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
    width: 24px;
    height: 2px;
    background: var(--color-gray-700);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.nav-toggle .hamburger {
    position: relative;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-toggle .hamburger::before { top: -7px; }
.nav-toggle .hamburger::after { top: 7px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn svg,
.btn i {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-gray-700);
    border-color: var(--color-gray-300);
}

.btn-outline:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-gray-800);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.2rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-4xl);
    background: var(--gradient-hero);
    overflow: hidden;
}

/* Tüm taşmaları gizle */
section {
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    display: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-orange);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.hero-text h1 {
    margin-bottom: var(--space-lg);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gray-800);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: bounce 3s ease-in-out infinite;
}

.floating-card i {
    width: 24px;
    height: 24px;
}

.floating-card span {
    font-weight: 600;
    color: var(--color-gray-700);
    font-size: 0.875rem;
}

.floating-card-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: -1.5s;
}

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

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    color: var(--color-orange);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    color: var(--color-gray-500);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--color-gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.service-icon i {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    margin-bottom: var(--space-sm);
}

.service-card p {
    color: var(--color-gray-500);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-orange);
    font-weight: 600;
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.service-link i {
    width: 16px;
    height: 16px;
}

.service-link:hover {
    gap: var(--space-md);
}

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */
.about-preview {
    overflow: hidden;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-preview-image .image-wrapper {
    position: relative;
}

.about-preview-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    object-fit: cover;
}

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

.experience-badge .number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.3;
}

.about-preview-content .lead {
    margin-bottom: var(--space-xl);
}

.feature-list {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
}

.feature-list i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose {
    background: var(--color-gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-lg);
    color: var(--color-white);
}

.feature-icon i {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--color-gray-500);
    font-size: 0.9rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-3xl) 0;
}

.cta-card {
    position: relative;
    background: var(--gradient-primary);
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
}

.cta-section {
    overflow: hidden;
}

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

.cta-card h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.decoration-circle {
    display: none;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--color-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.faq-item {
    background: var(--color-gray-50);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-orange);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.faq-item p {
    color: var(--color-gray-600);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    background: var(--gradient-hero);
    text-align: center;
}

.page-header-service {
    position: relative;
}

.page-header-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-lg);
}

.page-header-icon i {
    width: 40px;
    height: 40px;
}

.breadcrumb {
    margin-bottom: var(--space-lg);
}

.breadcrumb ol {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    list-style: none;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    color: var(--color-gray-400);
}

.breadcrumb a {
    color: var(--color-gray-600);
    text-decoration: none;
}

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

.page-header h1 {
    margin-bottom: var(--space-md);
}

.page-header p {
    color: var(--color-gray-600);
    font-size: 1.125rem;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-main {
    padding-top: var(--space-4xl);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-4xl);
    align-items: start;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

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

.about-badge {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    right: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge i {
    width: 40px;
    height: 40px;
    color: var(--color-orange);
}

.badge-title {
    display: block;
    font-weight: 700;
    color: var(--color-gray-800);
}

.badge-text {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.about-intro {
    margin-bottom: var(--space-xl);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.highlight i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.highlight h4 {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    font-weight: 600;
    margin-bottom: 2px;
}

.highlight p {
    font-size: 0.95rem;
    color: var(--color-gray-700);
    line-height: 1.4;
    margin: 0;
}

/* Mission Section */
.mission-section {
    background: var(--color-gray-50);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.mission-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
}

.mission-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-lg);
    color: var(--color-white);
}

.mission-icon i {
    width: 32px;
    height: 32px;
}

.mission-card h3 {
    margin-bottom: var(--space-md);
}

.mission-card p {
    color: var(--color-gray-600);
    font-size: 0.95rem;
    margin: 0;
}

/* Expertise Section */
.expertise-section {
    background: var(--color-white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.expertise-item:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.expertise-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.expertise-icon i {
    width: 24px;
    height: 24px;
}

.expertise-item h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.expertise-item p {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin: 0;
}

/* Approach Section */
.approach-section {
    background: var(--color-gray-50);
    overflow: hidden;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.approach-content .lead {
    margin-bottom: var(--space-xl);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.step {
    display: flex;
    gap: var(--space-lg);
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-weight: 700;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: var(--space-xs);
}

.step-content p {
    color: var(--color-gray-600);
    margin: 0;
    font-size: 0.95rem;
}

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

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */
.services-intro {
    padding-bottom: 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-main {
    background: var(--color-white);
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.service-detailed-card {
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.service-detailed-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-white);
    border-bottom: 3px solid;
}

.service-icon-large {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.service-icon-large i {
    width: 28px;
    height: 28px;
}

.service-header h2 {
    font-size: 1.25rem;
    margin: 0;
}

.service-body {
    padding: var(--space-lg);
}

.service-content-preview {
    color: var(--color-gray-600);
    font-size: 0.95rem;
}

.service-symptoms {
    margin: var(--space-lg) 0;
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
}

.service-symptoms h4 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    color: var(--color-gray-700);
}

.service-symptoms h4 i {
    width: 16px;
    height: 16px;
    color: var(--color-orange);
}

.service-symptoms ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.service-symptoms li {
    font-size: 0.85rem;
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-gray-100);
    border-radius: var(--radius-sm);
    color: var(--color-gray-600);
}

/* Process Section */
.process-section {
    background: var(--color-gray-50);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-gray-200);
}

.process-item {
    display: flex;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-content {
    flex: 1;
    padding-top: var(--space-md);
}

.process-content h3 {
    margin-bottom: var(--space-sm);
}

.process-content p {
    color: var(--color-gray-600);
    margin: 0;
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail {
    background: var(--color-white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-3xl);
    align-items: start;
}

.service-main-content {
    background: var(--color-white);
}

.content-section {
    margin-bottom: var(--space-2xl);
}

.content-section h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-sm);
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.symptom-list,
.treatment-list {
    list-style: none;
    display: grid;
    gap: var(--space-md);
}

.symptom-list li,
.treatment-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
}

.symptom-list i,
.treatment-list i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Service Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
}

.sidebar-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.cta-card-small p {
    color: var(--color-gray-600);
    margin-bottom: var(--space-lg);
}

.cta-card-small .btn {
    margin-bottom: var(--space-sm);
}

.other-services {
    list-style: none;
}

.other-services li {
    border-bottom: 1px solid var(--color-gray-100);
}

.other-services li:last-child {
    border-bottom: none;
}

.other-services a {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    text-decoration: none;
    color: var(--color-gray-700);
    transition: all var(--transition-fast);
}

.other-services a:hover {
    color: var(--color-orange);
}

.other-services i:first-child {
    width: 20px;
    height: 20px;
}

.other-services span {
    flex: 1;
}

.other-services i:last-child {
    width: 16px;
    height: 16px;
    color: var(--color-gray-400);
}

.info-card {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-blue);
}

.info-card h3 i {
    width: 20px;
    height: 20px;
}

.info-card p {
    color: var(--color-gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Related Services */
.related-services {
    background: var(--color-gray-50);
}

.services-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

.service-card-mini {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.service-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon-mini {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin: 0 auto var(--space-md);
}

.service-icon-mini i {
    width: 24px;
    height: 24px;
}

.service-card-mini h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.service-card-mini p {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    margin-bottom: var(--space-md);
}

.service-link-mini {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-orange);
    text-decoration: none;
}

.service-link-mini i {
    width: 14px;
    height: 14px;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-section {
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
}

.info-header {
    margin-bottom: var(--space-2xl);
}

.info-header h2 {
    margin-bottom: var(--space-md);
}

.info-header p {
    color: var(--color-gray-600);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--color-white);
    flex-shrink: 0;
}

.contact-card-icon i {
    width: 24px;
    height: 24px;
}

.contact-card-content h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.contact-card-content a {
    color: var(--color-gray-700);
    text-decoration: none;
    font-weight: 600;
}

.contact-card-content a:hover {
    color: var(--color-orange);
}

.contact-card-content p {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin: 0;
}

.social-section h3 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.social-links-large {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    color: var(--color-gray-600);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link i,
.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--color-white);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: var(--color-white);
}

.social-link.linkedin:hover {
    background: #0a66c2;
    color: var(--color-white);
}

.social-link.whatsapp:hover {
    background: #25d366;
    color: var(--color-white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-gray-50);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
}

.form-header {
    margin-bottom: var(--space-xl);
}

.form-header h2 {
    margin-bottom: var(--space-sm);
}

.form-header p {
    color: var(--color-gray-600);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-weight: 600;
    color: var(--color-gray-700);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
}

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

.form-group .error {
    color: var(--color-red);
    font-size: 0.875rem;
}

/* Alert Messages */
.alert {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.alert i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-green);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-red);
}

/* Map Section */
.map-section {
    padding: 0 0 var(--space-4xl);
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-gray-900);
    color: var(--color-gray-300);
    padding-top: var(--space-4xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid var(--color-gray-700);
}

.footer-brand img {
    height: 90px;
    width: auto;
    min-width: 200px;
    max-width: 280px;
    object-fit: contain;
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    color: var(--color-gray-400);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-800);
    border-radius: var(--radius-md);
    color: var(--color-gray-400);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-orange);
    color: var(--color-white);
}

.social-links i {
    width: 18px;
    height: 18px;
}

.footer h3 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: var(--space-sm);
}

.footer-links a,
.footer-services a {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--color-orange);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-contact i {
    width: 18px;
    height: 18px;
    color: var(--color-orange);
    margin-top: 3px;
}

.footer-contact a {
    color: var(--color-gray-300);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--color-orange);
}

.footer-bottom {
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: var(--color-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ============================================
   ANIMATIONS (AOS Alternative)
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: block;
        order: -1;
        margin-bottom: var(--space-md);
    }
    
    .hero-image-wrapper {
        display: flex;
        justify-content: center;
    }
    
    .hero-image-wrapper img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid var(--color-white);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-badge {
        margin-bottom: var(--space-md);
    }
    
    .floating-card {
        display: none;
    }
    
    .about-preview-grid,
    .about-grid,
    .approach-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about-preview-image,
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .mission-grid,
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        align-items: center;
        padding: var(--space-xl);
        gap: var(--space-lg);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .services-grid,
    .services-detailed-grid,
    .mission-grid,
    .expertise-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .services-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-sidebar {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .cta-card {
        padding: var(--space-xl);
    }
    
    .process-timeline::before {
        left: 24px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .services-slider {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        display: none;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        right: -10px;
        bottom: -10px;
    }
    
    .experience-badge .number {
        font-size: 1.5rem;
    }
    
    .social-links-large {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .cta-section,
    .nav-toggle {
        display: none !important;
    }
    
    .page-header {
        padding-top: var(--space-xl);
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        text-decoration: underline;
    }
}

