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

:root {
    /* Color Palette - Ahşap tonları */
    --primary-color: #8B4513;
    --primary-dark: #654321;
    --primary-light: #A0522D;
    --secondary-color: #DAA520;
    --accent-color: #F5F5DC;
    --accent-light: #FFF8DC;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --white: #FFFFFF;
    --bg-light: #FAFAFA;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: var(--spacing-xs) 0;
    box-shadow: 0 4px 20px var(--shadow-hover);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

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

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    display: none;
}

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

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

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.btn-mobile-call {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
}

.btn-mobile-call:hover {
    background: #C8961E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.6);
}

.call-icon {
    font-size: 1.2rem;
}

.call-text {
    white-space: nowrap;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all var(--transition-normal);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hero-bg-image, url('public/Profesyonel bir mobilya tamiri ustası, atölye ortamında ahşap bir sandalyeyi ve koltuğu tamir ederken. Elinde zımpara ve ahşap dolgu macunu, masada marangoz aletleri. Öncesi-sonrası etkisi veren detaylar. Tamir  (3).jpg'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
    filter: brightness(0.85);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.5) 0%, rgba(160, 82, 45, 0.4) 100%);
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    width: 100%;
}

.hero-content {
    color: var(--white);
    padding: var(--spacing-md) 0;
    padding-left: 0;
}

.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-description {
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    color: var(--accent-light);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* ============================================
   HERO IMAGES - 3D CAROUSEL
   ============================================ */
.hero-images {
    position: relative;
    height: 600px;
    perspective: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.image-carousel-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate3d 25s linear infinite;
    will-change: transform;
}

.carousel-item {
    position: absolute;
    width: 400px;
    height: 500px;
    left: 50%;
    top: 50%;
    margin-left: -200px;
    margin-top: -250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    backface-visibility: visible;
    transform-style: preserve-3d;
    opacity: 1;
}

.carousel-item:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
    z-index: 10;
    filter: brightness(1.1);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    opacity: 1;
    visibility: visible;
}

/* 3D Rotation Animation - 3 images orbiting around center */
.carousel-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(350px);
    opacity: 1;
}

.carousel-item:nth-child(2) {
    transform: rotateY(120deg) translateZ(350px);
    opacity: 1;
}

.carousel-item:nth-child(3) {
    transform: rotateY(240deg) translateZ(350px);
    opacity: 1;
}

@keyframes rotate3d {
    0% { 
        transform: rotateY(0deg);
    }
    100% { 
        transform: rotateY(360deg);
    }
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
}

.btn-primary:hover {
    background: #C8961E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.6);
}

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

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--white);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

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

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

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

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: var(--spacing-xl) 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

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

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    transition: left var(--transition-slow);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform var(--transition-normal);
}

.service-card:hover .service-icon img {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    padding: var(--spacing-xs) 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--bg-light);
}

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

.about-text h2 {
    margin-bottom: var(--spacing-md);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-features {
    margin-top: var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

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

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    background: var(--white);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
    padding: var(--spacing-lg) 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.5);
}

.step-content {
    flex: 1;
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all var(--transition-normal);
}

.process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-hover);
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.statistics {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 L100 50 M50 0 L50 100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all var(--transition-normal);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.testimonial-rating {
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid #e0e0e0;
}

.author-info h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 3px;
    font-weight: 600;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog {
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--primary-color);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.date-day {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.95;
}

.blog-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

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

.blog-content h3 a:hover {
    color: var(--primary-dark);
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    flex: 1;
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    display: inline-block;
    margin-top: auto;
}

.blog-read-more:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* ============================================
   BLOG ARTICLE PAGE
   ============================================ */
.blog-article {
    background: var(--bg-light);
    min-height: 100vh;
}

.blog-article-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 0;
}

.blog-article-content {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.breadcrumb {
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.breadcrumb span {
    margin: 0 8px;
    color: var(--text-light);
}

.article-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--bg-light);
}

.article-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.article-meta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.95rem;
}

.article-date,
.article-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-featured-image {
    margin-bottom: var(--spacing-lg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.article-body {
    line-height: 1.8;
    color: var(--text-dark);
}

.article-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
}

.article-body h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.article-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.article-body p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-size: 1.05rem;
}

.article-body p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.article-body p a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.article-list {
    margin: var(--spacing-sm) 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-dark);
}

.article-list li {
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-xs);
}

.article-list li::marker {
    color: var(--secondary-color);
}

.article-cta {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-radius: 15px;
    color: var(--white);
    text-align: center;
}

.article-cta h3 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.article-cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.sidebar-widget {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--bg-light);
}

.sidebar-list,
.sidebar-posts {
    list-style: none;
    padding: 0;
}

.sidebar-list li,
.sidebar-posts li {
    margin-bottom: var(--spacing-xs);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--bg-light);
}

.sidebar-list li:last-child,
.sidebar-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-list a,
.sidebar-posts a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: block;
    padding: var(--spacing-xs) 0;
}

.sidebar-list a:hover,
.sidebar-posts a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.sidebar-cta h3 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.sidebar-cta .btn {
    width: 100%;
}

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

.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active {
    background: var(--white);
    box-shadow: 0 5px 15px var(--shadow);
}

.faq-question {
    padding: var(--spacing-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: rgba(139, 69, 19, 0.05);
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

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

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

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.info-item a:hover {
    color: var(--primary-color);
}

.info-item p {
    color: var(--text-light);
    margin: 0;
}

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

.social-link {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    transition: all var(--transition-normal);
    font-size: 0.9rem;
}

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

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

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

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

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: transform var(--transition-fast);
    z-index: 2001;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 2001;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* ============================================
   ANIMATIONS (AOS - Animate On Scroll)
   ============================================ */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

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

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

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

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

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

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left var(--transition-normal);
        box-shadow: 0 10px 27px var(--shadow);
        padding: var(--spacing-md) 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: var(--spacing-xs) 0;
    }

    .nav-link {
        padding: var(--spacing-sm) var(--spacing-md);
        display: block;
        font-size: 1.1rem;
    }

    .btn-mobile-call {
        display: flex;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .logo-img {
        height: 50px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .hero-content {
        margin-left: 0;
        padding: var(--spacing-md);
    }

    .hero-content .hero-title,
    .hero-content .hero-subtitle,
    .hero-content .hero-description {
        text-align: center;
    }

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

    .hero-images {
        height: 400px;
        order: -1;
    }

    .carousel-item {
        width: 300px;
        height: 375px;
        margin-left: -150px;
        margin-top: -187.5px;
    }

    .carousel-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(200px);
    }
    .carousel-item:nth-child(2) {
        transform: rotateY(120deg) translateZ(200px);
    }
    .carousel-item:nth-child(3) {
        transform: rotateY(240deg) translateZ(200px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .step-number {
        position: absolute;
        left: 0;
    }

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

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

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

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

    .blog-article-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-article-content {
        padding: var(--spacing-md);
    }

    .article-title {
        font-size: 2rem;
    }

    .article-intro {
        font-size: 1.1rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .article-body h3 {
        font-size: 1.2rem;
    }

    .blog-sidebar {
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .logo-img {
        height: 45px;
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .hero {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }

    .hero-images {
        height: 350px;
    }

    .carousel-item {
        width: 250px;
        height: 312px;
        margin-left: -125px;
        margin-top: -156px;
    }

    .carousel-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(150px);
    }
    .carousel-item:nth-child(2) {
        transform: rotateY(120deg) translateZ(150px);
    }
    .carousel-item:nth-child(3) {
        transform: rotateY(240deg) translateZ(150px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .service-card {
        padding: var(--spacing-sm);
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .about-text p {
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-info {
        margin-bottom: var(--spacing-md);
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        font-size: 1.5rem;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-link {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-height: 44px; /* Touch-friendly minimum size */
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

    .footer-section {
        margin-bottom: var(--spacing-sm);
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .lightbox-nav {
        padding: 0 15px;
    }
}

/* ============================================
   SPLASH SCREEN / GİRİŞ ANİMASYONU
   ============================================ */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    visibility: visible;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: var(--spacing-md);
    padding-top: 120px;
    position: relative;
    z-index: 10001;
}

.splash-logo {
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 0.8s ease-out;
}

.splash-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.splash-title {
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.splash-title-heading,
.splash-title h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.splash-title p {
    font-size: 1.5rem;
    color: var(--accent-light);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* 3D Dönen Resimler Animasyonu */
.splash-3d-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 2000px;
    margin: var(--spacing-lg) auto;
    animation: fadeIn 1s ease-out 0.4s both;
}

.splash-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate3dSplash 3s linear infinite;
    will-change: transform;
}

.splash-image-item {
    position: absolute;
    width: 280px;
    height: 350px;
    left: 50%;
    top: 50%;
    margin-left: -140px;
    margin-top: -175px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    backface-visibility: visible;
    transform-style: preserve-3d;
}

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

/* 6 resmi eşit aralıklarla yerleştir (360/6 = 60 derece) */
.splash-image-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(450px);
}

.splash-image-item:nth-child(2) {
    transform: rotateY(60deg) translateZ(450px);
}

.splash-image-item:nth-child(3) {
    transform: rotateY(120deg) translateZ(450px);
}

.splash-image-item:nth-child(4) {
    transform: rotateY(180deg) translateZ(450px);
}

.splash-image-item:nth-child(5) {
    transform: rotateY(240deg) translateZ(450px);
}

.splash-image-item:nth-child(6) {
    transform: rotateY(300deg) translateZ(450px);
}

@keyframes rotate3dSplash {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 968px) {
    .splash-content {
        padding-top: 30px;
    }
    
    .splash-logo {
        margin-bottom: var(--spacing-xs);
    }
    
    .splash-title {
        margin-bottom: var(--spacing-sm);
    }
    
    .splash-title-heading,
    .splash-title h1 {
        font-size: 2.5rem;
    }
    
    .splash-title p {
        font-size: 1.2rem;
    }
    
    .splash-3d-carousel {
        height: 350px;
        margin-top: 0;
        margin-bottom: var(--spacing-xs);
    }
    
    .splash-image-item {
        width: 220px;
        height: 280px;
        margin-left: -110px;
        margin-top: -140px;
    }
    
    .splash-image-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(350px);
    }
    
    .splash-image-item:nth-child(2) {
        transform: rotateY(60deg) translateZ(350px);
    }
    
    .splash-image-item:nth-child(3) {
        transform: rotateY(120deg) translateZ(350px);
    }
    
    .splash-image-item:nth-child(4) {
        transform: rotateY(180deg) translateZ(350px);
    }
    
    .splash-image-item:nth-child(5) {
        transform: rotateY(240deg) translateZ(350px);
    }
    
    .splash-image-item:nth-child(6) {
        transform: rotateY(300deg) translateZ(350px);
    }
}

@media (max-width: 480px) {
    .splash-content {
        padding-top: 20px;
    }
    
    .splash-logo {
        margin-bottom: var(--spacing-xs);
    }
    
    .splash-logo img {
        max-width: 150px;
    }
    
    .splash-title {
        margin-bottom: var(--spacing-xs);
    }
    
    .splash-title-heading,
    .splash-title h1 {
        font-size: 2rem;
    }
    
    .splash-title p {
        font-size: 1rem;
    }
    
    .splash-3d-carousel {
        height: 300px;
        margin-top: 0;
        margin-bottom: var(--spacing-xs);
    }
    
    .splash-image-item {
        width: 180px;
        height: 230px;
        margin-left: -90px;
        margin-top: -115px;
    }
    
    .splash-image-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(280px);
    }
    
    .splash-image-item:nth-child(2) {
        transform: rotateY(60deg) translateZ(280px);
    }
    
    .splash-image-item:nth-child(3) {
        transform: rotateY(120deg) translateZ(280px);
    }
    
    .splash-image-item:nth-child(4) {
        transform: rotateY(180deg) translateZ(280px);
    }
    
    .splash-image-item:nth-child(5) {
        transform: rotateY(240deg) translateZ(280px);
    }
    
    .splash-image-item:nth-child(6) {
        transform: rotateY(300deg) translateZ(280px);
    }
    
    .splash-logo img {
        max-width: 150px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }

    .logo-img {
        height: 40px;
    }

    .nav-wrapper {
        padding: var(--spacing-xs) 0;
    }

    section {
        padding: var(--spacing-md) 0;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .hero {
        min-height: auto;
        padding: var(--spacing-md) 0;
        padding-top: calc(70px + var(--spacing-md));
    }

    .hero-content {
        padding: var(--spacing-sm);
    }

    .hero-images {
        height: 280px;
        min-height: 280px;
    }

    .carousel-item {
        width: 200px;
        height: 250px;
        margin-left: -100px;
        margin-top: -125px;
    }

    .carousel-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(100px);
    }
    .carousel-item:nth-child(2) {
        transform: rotateY(120deg) translateZ(100px);
    }
    .carousel-item:nth-child(3) {
        transform: rotateY(240deg) translateZ(100px);
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-xs);
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-sm);
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-md);
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-xs);
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.9rem;
        min-height: 48px; /* Larger touch target for mobile */
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .service-card {
        padding: var(--spacing-sm);
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-features {
        gap: var(--spacing-xs);
    }

    .feature-item {
        gap: var(--spacing-xs);
    }

    .feature-icon {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .stat-item {
        padding: var(--spacing-sm);
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .testimonial-card {
        padding: var(--spacing-sm);
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: var(--spacing-sm);
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }

    .blog-content p {
        font-size: 0.9rem;
    }

    .blog-article-wrapper {
        grid-template-columns: 1fr;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .article-intro {
        font-size: 1rem;
        padding: var(--spacing-sm);
    }

    .article-body h2 {
        font-size: 1.3rem;
    }

    .article-body h3 {
        font-size: 1.1rem;
    }

    .article-body p {
        font-size: 1rem;
    }

    .blog-article-content {
        padding: var(--spacing-sm);
    }

    .blog-date {
        padding: 8px 12px;
        top: 10px;
        right: 10px;
    }

    .date-day {
        font-size: 1.2rem;
    }

    .date-month {
        font-size: 0.75rem;
    }

    .btn-mobile-call {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .call-icon {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .process-timeline {
        padding: var(--spacing-md) 0;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        padding-left: 0;
        margin-bottom: var(--spacing-md);
        flex-direction: column !important;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .step-number {
        position: relative;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .step-content {
        padding: var(--spacing-sm);
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .contact-content {
        gap: var(--spacing-md);
    }

    .info-item {
        padding: var(--spacing-xs) 0;
    }

    .info-item h3 {
        font-size: 1.1rem;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 1rem; /* Prevent zoom on iOS */
        border-radius: 8px;
    }

    .faq-question {
        padding: var(--spacing-sm);
    }

    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }

    .faq-answer p {
        padding: 0 var(--spacing-sm) var(--spacing-sm);
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 25px;
        height: 25px;
        font-size: 1.2rem;
    }

    .footer {
        padding: var(--spacing-md) 0 var(--spacing-sm);
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .lightbox img {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        padding: 0;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .mouse {
        width: 25px;
        height: 40px;
    }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */
.service-item {
    transition: all var(--transition-normal);
}

.service-item:hover {
    background: rgba(139, 69, 19, 0.05) !important;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-category {
    transition: all var(--transition-normal);
}

.service-category:hover {
    box-shadow: 0 10px 30px var(--shadow-hover) !important;
}

@media (max-width: 768px) {
    .service-list {
        grid-template-columns: 1fr !important;
    }
    
    .category-title {
        font-size: 1.5rem !important;
    }
    
    .category-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
    
    .cta-section h2 {
        font-size: 1.8rem !important;
    }
    
    .cta-section p {
        font-size: 1rem !important;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* ============================================
   MOBILE-SPECIFIC IMPROVEMENTS
   ============================================ */
/* Prevent text size adjustment on iOS */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
}

/* Improve touch targets */
@media (max-width: 768px) {
    a, button, .btn, .nav-link, .faq-question, .gallery-item {
        -webkit-tap-highlight-color: rgba(139, 69, 19, 0.2);
    }
}

/* Smooth scrolling for mobile */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

