/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #1f2937;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 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);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
    position: relative;
    z-index: 3;
}

.section-anchor {
    display: block;
    position: relative;
    top: -90px;
    visibility: hidden;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    -webkit-transition: all var(--transition-normal);
    -moz-transition: all var(--transition-normal);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    gap: var(--spacing-sm);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 0.25rem;
    margin-right: var(--spacing-sm);
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.5);
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.lang-btn.active:hover {
    background: var(--primary-dark);
    color: white;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: opacity var(--transition-normal);
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-normal);
    position: relative;
}

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

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

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

.nav-cta {
    display: flex;
    gap: var(--spacing-sm);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(167, 139, 250, 0.8) 50%, rgba(251, 182, 206, 0.8) 100%), url('../images/arkaplan.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== SLIDER SECTION ===== */
.slider {
    background: #e5e7eb;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    padding: 100px 0 12px;
    scroll-margin-top: 100px;
}

.slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/noise-8px.png');
    opacity: 0.06;
    pointer-events: none;
    z-index: 1;
}

/* Slider Content */
.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(32, 38, 57, 0.2);
    background: #fff;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    min-height: 80vh;
    height: 80vh;
    transition: transform var(--transition-slow);
    overflow: hidden;
    background: #000;
    border-radius: 0;
    box-shadow:
        0 50px 120px rgba(3, 7, 18, 0.55),
        0 8px 30px rgba(59, 130, 246, 0.2);
    transform-origin: center bottom;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 2;
}

.slide-full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
    box-shadow: 
        inset 20px 0 30px -10px #e5e7eb,
        inset -20px 0 30px -10px #e5e7eb,
        inset 0 15px 30px -10px #e5e7eb,
        inset 0 -15px 30px -10px #e5e7eb;
}

.slide::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 10%;
    width: 80%;
    height: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, transparent 65%);
    transform: translateY(-40%) rotate(-8deg);
    filter: blur(12px);
    opacity: 0.45;
    pointer-events: none;
}

.slider-wrapper::before {
    content: '';
    position: absolute;
    inset: 12%;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.35);
    pointer-events: none;
}

.slide-full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: 
        linear-gradient(to right, #e5e7eb 0%, transparent 2%, transparent 98%, #e5e7eb 100%),
        linear-gradient(to bottom, #e5e7eb 0%, transparent 1.5%, transparent 98.5%, #e5e7eb 100%);
    background-blend-mode: multiply;
    z-index: 1;
}

.slide-action-bar {
    position: absolute;
    bottom: 45%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.slide-action-btn {
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: inline-block;
    width: 320px;
    height: 140px;
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.slide-action-btn img.action-icon {
    display: block;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    object-fit: cover;
    object-position: center;
    margin: -2px;
    border-radius: 12px;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    transform: perspective(1000px) rotateX(2deg) translateZ(0);
}

.slide-action-btn:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-8px) translateZ(20px) scale(1.05);
}

.slide-action-btn:hover img.action-icon {
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.slide-action-btn:active {
    transform: translateY(-1px);
}

.action-label {
    letter-spacing: 0.5px;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
    display: none;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(33, 58, 87, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.slider-dot.active,
.slider-dot:hover {
    background: #213A57;
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(33, 58, 87, 0.1);
    border: 2px solid #213A57;
    color: #213A57;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 3;
}

.slider-arrow:hover {
    background: #213A57;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: var(--spacing-lg);
}

.slider-arrow.next {
    right: var(--spacing-lg);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.handwritten-text {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-size: 3rem;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}


.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.hero-image {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 500;
    color: var(--text-primary);
    animation: float 3s ease-in-out infinite;
    transition: all 0.5s ease;
    z-index: 0;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.floating-card .card-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-top: var(--spacing-xs);
}

.card-1 {
    top: -360%;
    left: -20%;
    animation-delay: 0s;
}

.card-2 {
    top: 360%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: -250%;
    left: 40%;
    animation-delay: 2s;
}


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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-1,
.gradient-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.gradient-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    top: 20%;
    right: 10%;
}

.gradient-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    bottom: 20%;
    left: 10%;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

#numune-dokuma {
    background: white;
}

/* Nav Tabs */
.nav-tabs-container {
    margin-bottom: var(--spacing-xl);
}

.nav-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: var(--spacing-sm);
}

.nav-tab {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-bottom: none;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    transition: all var(--transition-normal);
    position: relative;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}

.nav-tab:hover {
    color: var(--primary-color);
    background: #e5e7eb;
    border-color: #d1d5db;
}

.nav-tab.active {
    color: var(--primary-color);
    background: #ffffff;
    border-color: var(--primary-color);
    border-bottom: 2px solid #ffffff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

/* Tab Content */
.tab-content {
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-pane.active {
    display: block;
}

#numune-dokuma-content {
    display: block !important;
}

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

/* Overview Tab */
.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.overview-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.overview-text h3 .subtitle-plain {
    font-weight: 400;
}

.overview-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    align-items: center;
}

.store-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: #000;
    color: #fff;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.store-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.store-btn i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.store-btn.app-store {
    background: #000;
}

.store-btn.app-store:hover {
    background: #1a1a1a;
}

.store-btn.play-store {
    background: #000;
}

.store-btn.play-store:hover {
    background: #1a1a1a;
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.overview-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* DobbyWeaver Slider */
.dobbyweaver-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.dobbyweaver-slider-track {
    position: relative;
    width: 100%;
}

.dobbyweaver-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.dobbyweaver-slide.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    position: relative;
}

.dobbyweaver-slide img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: block;
}

.dobbyweaver-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dobbyweaver-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dobbyweaver-slider-dots .dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.dobbyweaver-slider-dots .dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* WebWeaver Slider */
.webweaver-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.webweaver-slider-track {
    position: relative;
    width: 100%;
}

.webweaver-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.webweaver-slide.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    position: relative;
}

.webweaver-slide img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: block;
}

.webweaver-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.webweaver-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.webweaver-slider-dots .dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.webweaver-slider-dots .dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* HandWeaver Slider */
.handweaver-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.handweaver-slider-track {
    position: relative;
    width: 100%;
}

.handweaver-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.handweaver-slide.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    position: relative;
}

.handweaver-slide img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: block;
}

.handweaver-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.handweaver-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.handweaver-slider-dots .dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.handweaver-slider-dots .dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Features Tab - Demo Grid */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.demo-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.demo-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.demo-card h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.4em;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #e74c3c, #f39c12, #f1c40f, #2ecc71, #3498db, #9b59b6);
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.demo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.demo-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-image:hover::before {
    opacity: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 30px;
    font-size: 1.05em;
    line-height: 1.4;
    color: var(--text-secondary);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2em;
}

.highlight {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
}

.highlight h5 {
    color: #856404;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.highlight p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

/* Demo Tab */
.demo-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.demo-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.demo-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.demo-video {
    margin-bottom: var(--spacing-xl);
}

.video-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
    color: var(--text-secondary);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.video-placeholder p {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
}

.demo-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* Pricing Tab */
.pricing-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.pricing-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.pricing-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.pricing-features li {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.product-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

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

.product-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.product-icon i {
    font-size: 1.5rem;
    color: white;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    color: var(--text-secondary);
}

.product-features i {
    color: var(--success-color);
    font-size: 0.875rem;
}

.product-actions {
    display: flex;
    gap: var(--spacing-sm);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.service-card {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.about .section-header {
    margin-bottom: var(--spacing-2xl);
    text-align: center;
}

.about .section-description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

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

.feature i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-visual {
    position: relative;
}

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

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

.experience-badge {
    position: absolute;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ===== ABOUT GALLERY SLIDER ===== */
.about-gallery-slider {
    position: relative;
    margin-top: var(--spacing-2xl);
}

.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: var(--spacing-md) 0;
}

.gallery-slider-track {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.gallery-slide {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), opacity var(--transition-normal);
    opacity: 0.6;
    transform: scale(0.85);
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.gallery-slide.prev,
.gallery-slide.next {
    opacity: 0.7;
    transform: scale(0.9);
}

.gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Slide sizes */
.gallery-slide {
    width: 280px;
}

.gallery-slide.active {
    width: 400px;
}

.gallery-slide.prev,
.gallery-slide.next {
    width: 280px;
}

.gallery-slider-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.gallery-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-normal);
    padding: 0;
}

.gallery-slider-dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.gallery-slider-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

.gallery-button-container {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xl);
}

/* ===== MODERN GALLERY GRID ===== */
.gallery-grid-container {
    margin-top: var(--spacing-2xl);
    animation: fadeInUp 0.6s ease;
    padding: var(--spacing-lg) 0;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    padding: var(--spacing-md) 0;
}

.gallery-grid-item {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-md);
    opacity: 0;
    animation: fadeInScale 0.5s ease forwards;
    min-height: 200px;
}

.gallery-grid-item[data-type="video"] {
    background: #000;
}

.gallery-grid-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-grid-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-grid-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-grid-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-grid-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-grid-item:nth-child(6) { animation-delay: 0.3s; }
.gallery-grid-item:nth-child(7) { animation-delay: 0.35s; }
.gallery-grid-item:nth-child(8) { animation-delay: 0.4s; }
.gallery-grid-item:nth-child(9) { animation-delay: 0.45s; }
.gallery-grid-item:nth-child(10) { animation-delay: 0.5s; }
.gallery-grid-item:nth-child(11) { animation-delay: 0.55s; }
.gallery-grid-item:nth-child(12) { animation-delay: 0.6s; }
.gallery-grid-item:nth-child(n+13) { animation-delay: 0.65s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-grid-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.gallery-item-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-item-thumbnail img,
.gallery-item-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    background: #000;
}

.gallery-item-thumbnail video {
    pointer-events: none;
    position: relative;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.gallery-grid-item:hover .gallery-item-thumbnail img,
.gallery-grid-item:hover .gallery-item-thumbnail video {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    z-index: 2;
}

.gallery-grid-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Video overlay - always slightly visible */
.gallery-grid-item[data-type="video"] .gallery-item-overlay {
    opacity: 0.7;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.gallery-grid-item[data-type="video"]:hover .gallery-item-overlay {
    opacity: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.gallery-item-overlay i {
    font-size: 3rem;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.gallery-item-type {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* Video thumbnail specific styles */
.gallery-grid-item[data-type="video"] .gallery-item-thumbnail {
    background: #000;
    position: relative;
}

.gallery-grid-item[data-type="video"] .gallery-item-thumbnail video {
    filter: brightness(0.9);
    opacity: 1 !important;
    min-height: 100%;
    object-position: center;
    display: block !important;
    visibility: visible !important;
}

.gallery-grid-item[data-type="video"]:hover .gallery-item-thumbnail video {
    filter: brightness(1);
}

/* Video thumbnail loading state */
.gallery-grid-item[data-type="video"] .gallery-item-thumbnail video:not([poster]) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Video thumbnail fallback - ensure it's always visible */
.gallery-grid-item[data-type="video"] .gallery-item-thumbnail video {
    background-color: #1a1a1a;
    background-image: linear-gradient(45deg, #2a2a2a 25%, transparent 25%), 
                      linear-gradient(-45deg, #2a2a2a 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #2a2a2a 75%), 
                      linear-gradient(-45deg, transparent 75%, #2a2a2a 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* Ensure video thumbnails are always visible */
.gallery-grid-item[data-type="video"] .gallery-item-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.gallery-grid-item[data-type="video"]:hover .gallery-item-thumbnail::before {
    background: rgba(0, 0, 0, 0.1);
}

/* Responsive Gallery Grid */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-md);
    }
    
    .gallery-item-overlay i {
        font-size: 2rem;
    }
    
    .gallery-item-type {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
}

/* ===== GALLERY MODAL ===== */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: block;
    opacity: 1;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    cursor: pointer;
    opacity: 0;
    -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-modal.active .gallery-modal-overlay {
    opacity: 1;
}

.gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: var(--spacing-xl);
    z-index: 10001;
    opacity: 0;
    -webkit-transform: scale(0.95) translateY(20px);
    -moz-transform: scale(0.95) translateY(20px);
    -ms-transform: scale(0.95) translateY(20px);
    transform: scale(0.95) translateY(20px);
    -webkit-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                -moz-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-modal.active .gallery-modal-content {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
    -moz-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.gallery-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 1.75rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 10002;
    line-height: 1;
    padding: 0;
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
}

.gallery-modal.active .gallery-modal-close {
    opacity: 1;
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.05) rotate(90deg);
    -moz-transform: scale(1.05) rotate(90deg);
    -ms-transform: scale(1.05) rotate(90deg);
    transform: scale(1.05) rotate(90deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 2.5rem;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    cursor: pointer;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 10002;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
}

.gallery-modal.active .gallery-modal-nav {
    opacity: 1;
}

.gallery-modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    -webkit-transform: translateY(-50%) scale(1.08);
    -moz-transform: translateY(-50%) scale(1.08);
    -ms-transform: translateY(-50%) scale(1.08);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.gallery-modal-prev {
    left: 20px;
}

.gallery-modal-next {
    right: 20px;
}

.gallery-modal-image-container {
    max-width: 92%;
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

.gallery-modal-image-container img {
    max-width: 100%;
    max-height: 92vh;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    -webkit-transform: scale(0.96);
    -moz-transform: scale(0.96);
    -ms-transform: scale(0.96);
    transform: scale(0.96);
    -webkit-transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                -webkit-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                -moz-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    will-change: opacity, transform, filter;
}

.gallery-modal-image-container img.loaded {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0);
    filter: blur(0);
}

.gallery-modal-image-container img.loading {
    opacity: 0.4;
    -webkit-filter: blur(8px);
    filter: blur(8px);
    -webkit-transform: scale(0.98);
    -moz-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98);
}

.gallery-modal-image-container video {
    max-width: 100%;
    max-height: 92vh;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    background: #000;
    display: none;
    opacity: 0;
    -webkit-transform: scale(0.96);
    -moz-transform: scale(0.96);
    -ms-transform: scale(0.96);
    transform: scale(0.96);
    -webkit-transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                -webkit-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                -moz-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform, filter;
}

/* Modern video controls styling */
.gallery-modal-image-container video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.gallery-modal-image-container video::-webkit-media-controls-play-button {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.gallery-modal-image-container video.loaded {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0);
    filter: blur(0);
    display: block;
}

.gallery-modal-image-container video.loading {
    opacity: 0.4;
    -webkit-filter: blur(8px);
    filter: blur(8px);
    -webkit-transform: scale(0.98);
    -moz-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98);
    display: block;
}

.gallery-modal-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 10002;
    opacity: 0;
    -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    -moz-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-modal.active .gallery-modal-counter {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-modal-nav {
        width: 48px;
        height: 48px;
        font-size: 2rem;
        border-radius: 10px;
    }
    
    .gallery-modal-prev {
        left: 15px;
    }
    
    .gallery-modal-next {
        right: 15px;
    }
    
    .gallery-modal-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
        border-radius: 10px;
    }
    
    .gallery-modal-image-container {
        max-width: 96%;
        max-height: 88vh;
    }
    
    .gallery-modal-counter {
        bottom: 20px;
        padding: 6px 14px;
        font-size: 0.875rem;
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    background: var(--bg-secondary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 800px;
}

.contact-map {
    margin-top: var(--spacing-2xl);
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: border-color var(--transition-normal);
    background: white;
}

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

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

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-map-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    width: 180px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo span {
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
}

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

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact span {
    flex: 1;
}

.footer-map {
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.footer-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-legal a:hover {
    color: white;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    display: none !important; /* Buton gizli ama fonksiyonlar çalışıyor */
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease forwards;
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== IMAGE VIEWER ===== */
.image-viewer-container {
    margin-top: 80px;
    width: 100%;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
}

.fullscreen-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}
