/* ============================================
   CSS Variables - Color Palette from Image
   ============================================ */
:root {
    /* Primary Colors - Brown tones from image */
    --primary-brown: #8B6F47;
    --primary-brown-dark: #6B5B3D;
    --primary-brown-light: #A68B5B;
    --primary-brown-darker: #3D2F1F;
    
    /* Secondary Colors - Olive/Khaki tones */
    --secondary-olive: #6B7A47;
    --secondary-olive-dark: #5A6740;
    --secondary-olive-light: #7A8B57;
    
    /* Accent Colors - Dark brown leather */
    --accent-dark: #2A1F14;
    --accent-medium: #4A3A2A;
    
    /* Light Colors - Beige/Off-white */
    --light-beige: #F5F1E8;
    --light-beige-medium: #E8E0D1;
    --light-beige-dark: #D4C4A8;
    
    /* Background Colors - Gray tones */
    --bg-light: #F8F8F8;
    --bg-medium: #E5E5E5;
    --bg-white: #FFFFFF;
    
    /* Text Colors */
    --text-dark: #2A1F14;
    --text-medium: #4A3A2A;
    --text-light: #6B5B3D;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
}

body.loading {
    overflow: hidden;
}

/* ============================================
   Splash Screen / Loading Animation
   ============================================ */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-brown-darker) 0%, var(--accent-dark) 50%, var(--primary-brown-dark) 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease, filter 0.8s ease;
    overflow: hidden;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.1);
    filter: blur(10px);
}

.splash-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 111, 71, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 122, 71, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(61, 47, 31, 0.4) 0%, transparent 50%);
    animation: backgroundPulse 4s ease-in-out infinite;
    opacity: 0.6;
}

.splash-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: splashFadeIn 1s ease-out;
}

.splash-logo-container {
    margin-bottom: var(--spacing-lg);
}

.splash-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-md);
    animation: logoEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    transform: scale(0.5) translateY(50px);
}

.splash-logo {
    width: 180px;
    height: auto;
    max-width: 90vw;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: logoFloat 3s ease-in-out infinite, logoPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
    will-change: transform, filter;
}

.splash-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 111, 71, 0.6) 0%, rgba(107, 122, 71, 0.4) 40%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 2s ease-in-out infinite;
    z-index: 1;
}

.splash-text {
    animation: textFadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
    margin-top: var(--spacing-md);
}

.splash-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--bg-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 3s ease-in-out infinite;
}

.splash-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--light-beige-medium);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: var(--spacing-xs);
}

.splash-loader {
    margin-top: var(--spacing-lg);
    width: 300px;
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
    animation: loaderFadeIn 1s ease-out 1s forwards;
    opacity: 0;
}

.loader-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-brown-light) 0%, var(--secondary-olive-light) 50%, var(--primary-brown-light) 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progressFill 2s ease-out forwards, progressShine 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(139, 111, 71, 0.6);
}

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

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px) rotateZ(-180deg);
    }
    60% {
        transform: scale(1.1) translateY(-10px) rotateZ(10deg);
    }
    80% {
        transform: scale(0.95) translateY(5px) rotateZ(-5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotateZ(0deg);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotateZ(0deg);
    }
    25% {
        transform: translateY(-15px) rotateZ(2deg);
    }
    50% {
        transform: translateY(-10px) rotateZ(-2deg);
    }
    75% {
        transform: translateY(-15px) rotateZ(1deg);
    }
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

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

@keyframes titleShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

@keyframes progressFill {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

@keyframes progressShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 15px 40px rgba(139, 111, 71, 0.8)) brightness(1.1);
    }
}

/* Splash Particles */
.splash-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--light-beige);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(245, 241, 232, 0.6);
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 0.5s;
    animation-duration: 6.5s;
}

.particle:nth-child(5) {
    left: 60%;
    animation-delay: 1.5s;
    animation-duration: 7.5s;
}

.particle:nth-child(6) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 8.5s;
}

.particle:nth-child(7) {
    left: 80%;
    animation-delay: 0.8s;
    animation-duration: 6.8s;
}

.particle:nth-child(8) {
    left: 90%;
    animation-delay: 1.8s;
    animation-duration: 7.8s;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(10px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) translateX(-10px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0);
    }
}

/* Mobile Responsive for Splash Screen */
@media (max-width: 768px) {
    .splash-logo {
        width: 140px;
    }
    
    .splash-logo-glow {
        width: 160px;
        height: 160px;
    }
    
    .splash-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .splash-subtitle {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
        letter-spacing: 1px;
    }
    
    .splash-loader {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .splash-logo {
        width: 120px;
    }
    
    .splash-logo-glow {
        width: 140px;
        height: 140px;
    }
    
    .splash-title {
        font-size: 1.75rem;
    }
    
    .splash-subtitle {
        font-size: 0.875rem;
    }
}

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

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

ul {
    list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: var(--transition-medium);
}

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-olive));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin: 0;
}

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

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

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--text-dark);
    padding: var(--spacing-xs) var(--spacing-xs);
    transition: var(--transition-fast);
    display: block;
    min-height: 44px;
    display: flex;
    align-items: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-brown), var(--secondary-olive));
    transition: var(--transition-medium);
}

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

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

.nav-call-btn {
    display: none;
    align-items: center;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    min-height: 44px;
    border-radius: 25px;
}

.nav-call-btn svg {
    flex-shrink: 0;
}

.nav-call-text {
    display: inline;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-brown);
    border-radius: 3px;
    transition: var(--transition-medium);
}

.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);
}

@media (max-width: 768px) {
    .nav-call-btn {
        display: inline-flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: var(--spacing-lg) var(--spacing-sm);
        gap: var(--spacing-sm);
        transition: var(--transition-medium);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: var(--spacing-sm) var(--spacing-md);
        min-height: 50px;
        border-radius: 8px;
        width: 100%;
    }
    
    .nav-link:hover {
        background: var(--light-beige);
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--bg-white) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(139, 111, 71, 0.05) 0%,
        rgba(107, 122, 71, 0.02) 50%,
        rgba(245, 241, 232, 0.1) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-md);
    padding-top: 100px;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 100%;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-title {
    margin-bottom: var(--spacing-md);
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-olive));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    padding-top: 100px;
    overflow: hidden;
}

.hero-images-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 500px;
    max-height: 500px;
    perspective: 1200px;
    transform-style: preserve-3d;
    margin: 0 auto;
}

.hero-image-item {
    position: absolute;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    opacity: 0;
    animation: heroImageFade 12s infinite;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity, filter;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    top: 0;
    left: 0;
}

.hero-image-main {
    opacity: 1; /* Ana görsel her zaman görünür olsun */
}

.hero-image-main {
    animation-delay: 0s;
    z-index: 3;
    opacity: 1; /* Ana görsel her zaman görünür */
}

.hero-image-secondary {
    animation-delay: 4s;
}

.hero-image-tertiary {
    animation-delay: 8s;
}

.hero-image-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.05) contrast(1.1);
    transition: var(--transition-slow);
    transform: translateZ(0);
    will-change: transform;
    display: block;
}

.hero-image-item:hover img {
    transform: scale(1.08) translateZ(20px);
    filter: brightness(1.15) contrast(1.2);
}

.hero-image-item:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    transform: translateZ(30px) scale(1.02);
}

@keyframes heroImageFade {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(30px) translateZ(-50px) rotateY(15deg);
        z-index: 1;
        filter: blur(5px);
    }
    8% {
        opacity: 1;
        transform: scale(1) translateY(0) translateZ(0) rotateY(0deg);
        z-index: 3;
        filter: blur(0px);
    }
    32% {
        opacity: 1;
        transform: scale(1) translateY(0) translateZ(0) rotateY(0deg);
        z-index: 3;
        filter: blur(0px);
    }
    40% {
        opacity: 0;
        transform: scale(1.05) translateY(-30px) translateZ(-50px) rotateY(-15deg);
        z-index: 1;
        filter: blur(5px);
    }
    100% {
        opacity: 0;
        transform: scale(0.95) translateY(30px) translateZ(-50px) rotateY(15deg);
        z-index: 1;
        filter: blur(5px);
    }
}

.hero-image-main {
    animation: heroImageFade 12s infinite;
}

.hero-image-secondary {
    animation: heroImageFade 12s infinite 4s;
}

.hero-image-tertiary {
    animation: heroImageFade 12s infinite 8s;
}

@media (min-width: 1024px) {
    .hero-image {
        padding: var(--spacing-xl);
        padding-top: 100px;
    }
    
    .hero-images-container {
        max-width: 500px;
        max-height: 500px;
        aspect-ratio: 1 / 1;
    }
    
    .hero-image-item {
        border-radius: 25px;
        aspect-ratio: 1 / 1;
    }
}

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

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

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-brown);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px; /* Touch-friendly minimum size */
    min-width: 44px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-brown), var(--primary-brown-dark));
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn svg {
    flex-shrink: 0;
}

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

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

.btn-full {
    width: 100%;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

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

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-brown), var(--secondary-olive));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-top: var(--spacing-md);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--light-beige) 100%);
}

.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(--bg-white);
    padding: var(--spacing-md);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-brown), var(--secondary-olive));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-olive));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    color: var(--bg-white);
    transition: var(--transition-medium);
}

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

.service-icon svg {
    width: 35px;
    height: 35px;
}

.service-card h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    background: var(--bg-white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-medium);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(139, 111, 71, 0.8),
        rgba(107, 122, 71, 0.8)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

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

.gallery-icon {
    font-size: 3rem;
    color: var(--bg-white);
    font-weight: 300;
    transform: scale(0);
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-us {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--light-beige) 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-top: var(--spacing-lg);
}

.rotating-images {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    perspective: 1200px;
    perspective-origin: center center;
}

.rotating-images::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-olive));
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 20px rgba(139, 111, 71, 0.5);
}

.rotating-image-item {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    animation: rotateAround 20s linear infinite;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    opacity: 0;
}

.rotating-image-item:nth-child(1) {
    animation-delay: 0s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(0deg) translateZ(150px);
}

.rotating-image-item:nth-child(2) {
    animation-delay: -6.67s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(120deg) translateZ(150px);
}

.rotating-image-item:nth-child(3) {
    animation-delay: -13.34s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(240deg) translateZ(150px);
}

.rotating-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(1.05) contrast(1.1);
    transition: var(--transition-medium);
    border: 3px solid var(--bg-white);
}

.rotating-image-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.15) contrast(1.2);
    border-color: var(--primary-brown);
}

@keyframes rotateAround {
    0% {
        transform: translate(-50%, -50%) rotateY(0deg) translateZ(150px) rotateY(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateY(360deg) translateZ(150px) rotateY(-360deg);
    }
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-brown), var(--secondary-olive));
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition-medium);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-olive));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    flex-shrink: 0;
    transition: var(--transition-medium);
}

.feature-item:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .rotating-images {
        width: 350px;
        height: 350px;
        perspective: 1000px;
    }
    
    .rotating-image-item {
        width: 240px;
        height: 240px;
    }
    
    .rotating-image-item:nth-child(1) {
        transform: translate(-50%, -50%) rotateY(0deg) translateZ(120px);
    }
    
    .rotating-image-item:nth-child(2) {
        transform: translate(-50%, -50%) rotateY(120deg) translateZ(120px);
    }
    
    .rotating-image-item:nth-child(3) {
        transform: translate(-50%, -50%) rotateY(240deg) translateZ(120px);
    }
    
    @keyframes rotateAround {
        0% {
            transform: translate(-50%, -50%) rotateY(0deg) translateZ(120px) rotateY(0deg);
        }
        100% {
            transform: translate(-50%, -50%) rotateY(360deg) translateZ(120px) rotateY(-360deg);
        }
    }
}

@media (max-width: 768px) {
    .rotating-images {
        width: 300px;
        height: 300px;
        perspective: 800px;
    }
    
    .rotating-image-item {
        width: 200px;
        height: 200px;
    }
    
    .rotating-image-item:nth-child(1) {
        transform: translate(-50%, -50%) rotateY(0deg) translateZ(100px);
    }
    
    .rotating-image-item:nth-child(2) {
        transform: translate(-50%, -50%) rotateY(120deg) translateZ(100px);
    }
    
    .rotating-image-item:nth-child(3) {
        transform: translate(-50%, -50%) rotateY(240deg) translateZ(100px);
    }
    
    @keyframes rotateAround {
        0% {
            transform: translate(-50%, -50%) rotateY(0deg) translateZ(100px) rotateY(0deg);
        }
        100% {
            transform: translate(-50%, -50%) rotateY(360deg) translateZ(100px) rotateY(-360deg);
        }
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
    }
}

/* ============================================
   SEO Content Section
   ============================================ */
.seo-content {
    background: var(--bg-white);
    padding: var(--spacing-xl) 0;
}

.seo-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.seo-article {
    background: var(--light-beige);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.seo-article h2 {
    color: var(--primary-brown);
    margin-bottom: var(--spacing-md);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.3;
}

.seo-article h3 {
    color: var(--secondary-olive);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.4;
}

.seo-article p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: var(--spacing-md);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.seo-article strong {
    color: var(--primary-brown);
    font-weight: 600;
}

.seo-article ul {
    list-style: disc;
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
}

.seo-article ul li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .seo-article {
        padding: var(--spacing-md);
    }
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--bg-white) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    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;
    padding: var(--spacing-md);
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-medium);
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-olive));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: var(--text-medium);
    font-size: 1rem;
}

.info-content p a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    display: inline-block;
}

.info-content p a:hover {
    color: var(--secondary-olive);
    text-decoration: underline;
    transform: translateX(3px);
}

.contact-form {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-beige-medium);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--bg-white);
    color: var(--text-dark);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
    min-height: 44px; /* Touch-friendly */
}

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

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

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--primary-brown-darker), var(--accent-dark));
    color: var(--light-beige);
    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 {
    color: var(--bg-white);
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    color: var(--light-beige-medium);
    line-height: 1.8;
}

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

.footer-section ul li a {
    color: var(--light-beige-medium);
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

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

/* ============================================
   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;
    padding: var(--spacing-md);
}

.lightbox.active {
    display: flex;
}

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

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--primary-brown-light);
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--bg-white);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

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

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

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* AOS Animation Classes */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

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

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

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

[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: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    .hero-content {
        grid-row: 1;
        padding-top: 100px;
    }
    
    .hero-image {
        grid-row: 2;
        padding-top: var(--spacing-md);
        padding-bottom: var(--spacing-lg);
    }
    
    .hero-images-container {
        max-width: 400px;
        max-height: 400px;
        aspect-ratio: 1 / 1;
        width: 100%;
    }
    
    .hero-image-item {
        border-radius: 15px;
        aspect-ratio: 1 / 1;
    }
    
    .hero-image-main {
        opacity: 1 !important; /* Tablet'te ana görsel görünür */
    }
    
    .hero-image-secondary,
    .hero-image-tertiary {
        display: block; /* Tablet'te göster */
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2.5rem;
        --spacing-md: 1.5rem;
    }
    
    /* Typography */
    h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    
    h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    h3 {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
    }
    
    /* Hero Section */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content {
        padding-top: 85px;
        padding-bottom: var(--spacing-md);
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }
    
    .hero-text {
        text-align: center;
        padding: var(--spacing-md);
        max-width: 100%;
    }
    
    .hero-description {
        font-size: clamp(1rem, 2vw, 1.125rem);
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-xs);
    }
    
    .hero-image {
        padding: var(--spacing-md);
        padding-top: var(--spacing-sm);
        min-height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-images-container {
        max-width: 350px;
        max-height: 350px;
        aspect-ratio: 1 / 1;
        width: 100%;
        margin: 0 auto;
    }
    
    .hero-image-item {
        border-radius: 15px;
        aspect-ratio: 1 / 1;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .hero-image-main {
        opacity: 1 !important; /* Mobilde ana görsel her zaman görünür */
        animation: none; /* Mobilde animasyonu kapat */
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }
    
    .service-card {
        padding: var(--spacing-md);
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }
    
    /* Why Choose Us */
    .rotating-images {
        width: 280px;
        height: 280px;
    }
    
    .rotating-image-item {
        width: 180px;
        height: 180px;
    }
    
    .feature-item {
        padding: var(--spacing-md);
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .info-item {
        padding: var(--spacing-md);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--spacing-md);
    }
    
    /* Lightbox */
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2.25rem;
    }
    
    /* Sections */
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .section-header {
        padding: 0 var(--spacing-sm);
    }
}

/* ============================================
   Mobile Optimizations (480px and below)
   ============================================ */
@media (max-width: 480px) {
    :root {
        --spacing-xl: 2.5rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
        --spacing-sm: 0.75rem;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    h3 {
        font-size: clamp(1.25rem, 6vw, 1.5rem);
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Hero Section */
    .hero {
        min-height: auto;
        padding-bottom: var(--spacing-md);
    }
    
    .hero-content {
        padding-top: 80px;
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
        padding-bottom: var(--spacing-sm);
    }
    
    .hero-text {
        padding: var(--spacing-sm);
        margin: 0;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-xs);
        width: 100%;
    }
    
    .hero-image {
        padding: var(--spacing-sm);
        padding-top: var(--spacing-sm);
        min-height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-images-container {
        max-width: 280px;
        max-height: 280px;
        aspect-ratio: 1 / 1;
        width: 100%;
        margin: 0 auto;
    }
    
    .hero-image-item {
        border-radius: 12px;
        aspect-ratio: 1 / 1;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-image-main {
        opacity: 1 !important; /* Küçük mobilde ana görsel her zaman görünür */
        animation: none !important; /* Animasyonu kapat */
        z-index: 10;
    }
    
    .hero-image-secondary,
    .hero-image-tertiary {
        display: none !important; /* Küçük mobilde sadece ana görsel göster */
    }
    
    @media (min-width: 481px) {
        .hero-image-main {
            animation: heroImageFade 12s infinite !important; /* Büyük mobilde animasyonu aç */
        }
        
        .hero-image-secondary,
        .hero-image-tertiary {
            display: block !important; /* Büyük mobilde göster */
        }
    }
    
    /* Navigation */
    .nav-wrapper {
        padding: var(--spacing-xs) var(--spacing-sm);
        min-height: 60px;
    }
    
    .logo {
        gap: 0.5rem;
    }
    
    .logo-img {
        height: 40px;
        width: auto;
    }
    
    .logo-text {
        font-size: 1rem;
        display: none; /* Küçük ekranlarda sadece logo göster */
    }
    
    .nav-call-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .nav-call-text {
        display: none; /* Küçük mobilde sadece ikon göster */
    }
    
    @media (min-width: 481px) {
        .logo-text {
            display: block; /* Büyük mobilde metin göster */
        }
        
        .nav-call-text {
            display: inline; /* Büyük mobilde metin göster */
        }
        
        .nav-call-btn {
            padding: 0.625rem 1rem;
            font-size: 0.875rem;
        }
    }
    
    .nav-menu {
        padding: var(--spacing-md) var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .nav-link {
        font-size: 1rem;
        padding: var(--spacing-xs) 0;
    }
    
    /* Buttons */
    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px; /* Touch-friendly */
    }
    
    /* Services Section */
    .services {
        padding: var(--spacing-lg) 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: var(--spacing-xs);
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-top: var(--spacing-xs);
    }
    
    .services-grid {
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }
    
    .service-card {
        padding: var(--spacing-sm);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: var(--spacing-xs);
    }
    
    .service-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .service-card h3 {
        font-size: 1.15rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Gallery Section */
    .gallery {
        padding: var(--spacing-lg) 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    /* Why Choose Us Section */
    .why-choose-us {
        padding: var(--spacing-lg) 0;
    }
    
    .why-choose-wrapper {
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .rotating-images {
        width: 280px;
        height: 280px;
        perspective: 700px;
        margin: 0 auto;
    }
    
    .rotating-image-item {
        width: 180px;
        height: 180px;
    }
    
    .rotating-image-item:nth-child(1),
    .rotating-image-item:nth-child(2),
    .rotating-image-item:nth-child(3) {
        transform: translate(-50%, -50%) rotateY(0deg) translateZ(80px);
    }
    
    @keyframes rotateAround {
        0% {
            transform: translate(-50%, -50%) rotateY(0deg) translateZ(80px) rotateY(0deg);
        }
        100% {
            transform: translate(-50%, -50%) rotateY(360deg) translateZ(80px) rotateY(-360deg);
        }
    }
    
    .feature-item {
        padding: var(--spacing-sm);
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xs);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-item h3 {
        font-size: 1.15rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* SEO Content Section */
    .seo-content {
        padding: var(--spacing-lg) 0;
    }
    
    .seo-content-wrapper {
        padding: 0 var(--spacing-sm);
    }
    
    .seo-article {
        padding: var(--spacing-sm);
        border-radius: 15px;
    }
    
    .seo-article h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: var(--spacing-sm);
    }
    
    .seo-article h3 {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
        margin-top: var(--spacing-sm);
        margin-bottom: var(--spacing-xs);
    }
    
    .seo-article p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: var(--spacing-sm);
    }
    
    /* Contact Section */
    .contact {
        padding: var(--spacing-lg) 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .contact-info {
        gap: var(--spacing-sm);
    }
    
    .info-item {
        padding: var(--spacing-sm);
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xs);
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }
    
    .info-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .info-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .info-content p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: var(--spacing-sm);
        border-radius: 15px;
    }
    
    .form-group {
        margin-bottom: var(--spacing-xs);
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 44px; /* Touch-friendly */
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    /* Footer */
    .footer {
        padding: var(--spacing-md) 0 var(--spacing-sm);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.15rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .footer-section ul {
        margin-top: var(--spacing-xs);
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: var(--spacing-sm);
        font-size: 0.85rem;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 20px;
    }
    
    .mouse {
        width: 25px;
        height: 40px;
    }
    
    /* Lightbox */
    .lightbox {
        padding: var(--spacing-sm);
    }
    
    .lightbox img {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 5px;
    }
    
    .lightbox-next {
        right: 5px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
    }
    
    /* Container */
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Sections */
    section {
        padding: var(--spacing-lg) 0;
    }
}


