/* ========================================
   FLEURA NAILS - Premium Nail Salon
   Elegant & Modern Design System
   ======================================== */

/* CSS Custom Properties */
:root {
    /* Color Palette - Soft Rose & Champagne */
    --color-primary: #c4a484;
    --color-primary-light: #d4c4a8;
    --color-primary-dark: #a08060;
    --color-accent: #e8d5c4;
    --color-accent-light: #f5ebe0;
    --color-rose: #d4a5a5;
    --color-rose-light: #e8c4c4;
    --color-rose-dark: #b88888;
    
    /* Neutrals */
    --color-dark: #1a1614;
    --color-dark-soft: #2d2926;
    --color-text: #3d3835;
    --color-text-light: #6b6360;
    --color-light: #faf8f5;
    --color-white: #ffffff;
    --color-cream: #f9f6f2;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-rose) 100%);
    --gradient-soft: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-cream) 100%);
    --gradient-dark: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 22, 20, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 22, 20, 0.08);
    --shadow-lg: 0 16px 48px rgba(26, 22, 20, 0.12);
    --shadow-xl: 0 24px 64px rgba(26, 22, 20, 0.16);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    position: relative;
}

body.no-scroll {
    overflow: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

main {
    overflow-x: hidden;
    width: 100%;
}

section {
    overflow: hidden;
    width: 100%;
}

/* Prevent horizontal overflow globally */
.hero,
.about,
.services,
.gallery,
.testimonials,
.faq,
.contact,
.why-us,
.process,
.new-year-section,
.appointment-cta {
    overflow: hidden;
}

/* ========================================
   Preloader
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-flower {
    font-size: 4rem;
    color: var(--color-primary);
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-text {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-top: var(--space-sm);
    letter-spacing: 0.1em;
}

@keyframes preloaderPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 1;
    }
    50% { 
        transform: scale(1.1) rotate(10deg); 
        opacity: 0.8;
    }
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: var(--transition-base);
    overflow: hidden;
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
}

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

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

.logo-icon {
    font-size: 1.75rem;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.logo-img {
    width: auto;
    height: 40px;
    object-fit: cover;
}

.logo:hover .logo-icon,
.logo:hover .logo-img {
    transform: rotate(15deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: var(--space-xs) 0;
}

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

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

.nav-cta {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition-base);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-light);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: var(--space-lg);
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-dark);
}

.mobile-cta {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--color-white) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    margin-top: var(--space-md);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(196, 164, 132, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(196, 164, 132, 0.4);
}

.btn-primary svg {
    transition: var(--transition-base);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

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

.btn-secondary:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.btn-full {
    width: 100%;
}

/* ========================================
   Hero Section - MOBILE FIRST
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: calc(70px + var(--space-md)) var(--space-sm) var(--space-lg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(232, 213, 196, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(212, 165, 165, 0.4) 0%, transparent 50%),
        var(--gradient-soft);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(196, 164, 132, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 165, 0.1) 0%, transparent 50%);
}

/* Mobile First - Single Column Layout */
.hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--color-white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-sm);
}

.badge-icon {
    color: var(--color-primary);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--color-primary);
    font-style: italic;
}

.hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
    max-width: 100%;
    margin: 0 0 var(--space-md);
    padding: 0 var(--space-xs);
}

.hero-ctas {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-xs);
    width: 100%;
    margin-bottom: var(--space-md);
    justify-content: center;
}

.hero-ctas .btn {
    flex: 1 1 auto;
    min-width: 140px;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.85rem;
}

/* Hero Visual - Mobile First */
.hero-visual {
    margin-top: var(--space-md);
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    order: 2;
}

.hero-image-container {
    position: relative;
    max-width: 320px;
    width: 85%;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

.hero-image-decoration {
    display: none;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: none; /* Hidden on mobile */
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { 
        opacity: 1;
        transform: scaleY(1);
    }
    50% { 
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

/* ========================================
   Section Styles
   ======================================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-md);
}

.section-label.light {
    color: var(--color-accent);
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.section-title.centered {
    text-align: center;
}

.section-title.light {
    color: var(--color-white);
}

.section-title .highlight {
    color: var(--color-primary);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

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

.section-header .section-label {
    justify-content: center;
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

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

.about-visual {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

.about-image-main .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 45%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-white);
}

.about-image-secondary .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

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

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.about-content {
    padding-left: var(--space-lg);
}

.about-text {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

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

.feature-icon {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.feature .feature-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(196, 164, 132, 0.3));
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon-img {
    transform: scale(1.15);
}

.feature span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    position: relative;
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.services-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(196, 164, 132, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(212, 165, 165, 0.1) 0%, transparent 30%);
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.service-card {
    background: var(--color-white);
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card .service-title,
.service-card .service-desc,
.service-card .service-features,
.service-card .service-link {
    padding: 0 var(--space-lg);
}

.service-card .service-title {
    padding-top: var(--space-md);
}

.service-card .service-link {
    padding-bottom: var(--space-lg);
    margin-bottom: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-base);
}

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

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

.service-card.featured {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.service-card.featured::before {
    display: none;
}

.featured-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon {
    width: 64px;
    height: 64px;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.service-card.featured .service-icon {
    color: rgba(255, 255, 255, 0.9);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-dark);
}

.service-card.featured .service-title {
    color: var(--color-white);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.service-card.featured .service-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* Service Features List */
.service-features {
    list-style: none;
    margin: var(--space-md) 0;
    padding: 0;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.8);
}

.service-card.featured .service-features li::before {
    color: rgba(255, 255, 255, 0.9);
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.services-cta p {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-primary-dark);
}

.service-card.featured .service-link {
    color: var(--color-white);
}

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

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

/* ========================================
   Gallery Section
   ======================================== */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: scale(1.1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay .gallery-label {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: var(--transition-base);
}

.gallery-item:nth-child(2) .gallery-placeholder {
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-dark) 100%);
}

.gallery-item:nth-child(3) .gallery-placeholder {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
}

.gallery-item:nth-child(4) .gallery-placeholder {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
}

.gallery-item:nth-child(5) .gallery-placeholder {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-rose) 100%);
}

.gallery-item:nth-child(6) .gallery-placeholder {
    background: linear-gradient(135deg, var(--color-rose-light) 0%, var(--color-primary) 100%);
}

.gallery-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-base);
}

.gallery-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

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

.gallery-item:hover .gallery-label {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    position: relative;
    padding: var(--space-3xl) 0;
    background: var(--gradient-dark);
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(196, 164, 132, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 165, 165, 0.1) 0%, transparent 50%);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.testimonial-stars {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-md);
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-white);
    font-size: 1.25rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-white);
}

.author-service {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

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

.contact-info {
    padding-right: var(--space-lg);
}

.contact-text {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.7);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    text-align: left;
}

.contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    flex-shrink: 0;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-item-content {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-light);
    margin-bottom: 1px;
}

.contact-value {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.4;
}

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

.social-link {
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.social-link svg {
    width: 22px;
    height: 22px;
    color: var(--color-text);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-link:hover svg {
    color: var(--color-white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-lg);
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1.5px solid #e5e1dc;
    border-radius: var(--radius-md);
    background: var(--color-cream);
    color: var(--color-dark);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(196, 164, 132, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6360' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

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

.contact-form .btn {
    margin-top: var(--space-sm);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-dark);
    padding: var(--space-xl) 0 var(--space-lg);
    overflow: hidden;
    width: 100%;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-logo .logo-icon {
    color: var(--color-primary);
}

.footer-logo .logo-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.footer-logo .logo-text {
    color: var(--color-white);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-xs);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Fixed Action Buttons - MOBILE FIRST
   ======================================== */

/* WhatsApp/Randevu Button - Sol Taraf */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 16px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: pulseWhatsapp 2s ease-in-out infinite;
}

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

.whatsapp-float img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

@keyframes pulseWhatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* Scroll to Top Button - Sağ Taraf */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(196, 164, 132, 0.4);
    z-index: 100;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(196, 164, 132, 0.5);
}

.scroll-top-btn:active {
    transform: translateY(0) scale(0.95);
}

.scroll-top-btn svg {
    width: 28px;
    height: 28px;
    color: white;
    animation: bounceArrow 2s ease-in-out infinite;
}

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

/* ========================================
   Animations - Base Styles for Animated Elements
   ======================================== */
[data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

/* Default animation: fade up */
[data-animate] {
    transform: translateY(30px);
}

/* Mobile: Faster, smoother animations */
@media (max-width: 768px) {
    [data-animate] {
        transform: translateY(20px);
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }
}

/* Fade in only (for subtle elements) */
[data-animate="fade"] {
    transform: none;
}

/* Fade from left - disabled on mobile to prevent overflow */
[data-animate="fade-left"] {
    transform: translateY(40px);
}

/* Fade from right - disabled on mobile to prevent overflow */
[data-animate="fade-right"] {
    transform: translateY(40px);
}

/* Enable horizontal animations only on desktop */
@media (min-width: 1024px) {
    [data-animate="fade-left"] {
        transform: translateX(-40px);
    }
    
    [data-animate="fade-right"] {
        transform: translateX(40px);
    }
}

/* Scale up */
[data-animate="scale"] {
    transform: scale(0.9);
}

/* ========================================
   Animations - Visible State
   ======================================== */
[data-animate].visible {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* ========================================
   Responsive Design - MOBILE FIRST
   ======================================== */

/* ===== TABLET (min-width: 768px) ===== */
@media (min-width: 768px) {
    .hero {
        padding: calc(100px + var(--space-xl)) var(--space-lg) var(--space-2xl);
    }
    
    .hero-badge {
        font-size: 0.875rem;
        padding: var(--space-xs) var(--space-md);
        margin-bottom: var(--space-md);
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: var(--space-md);
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        max-width: 550px;
        margin-bottom: var(--space-lg);
        padding: 0;
    }
    
    .hero-ctas {
        gap: var(--space-sm);
    }
    
    .hero-ctas .btn {
        flex: 0 1 auto;
        min-width: auto;
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .hero-image-container {
        max-width: 380px;
        width: 100%;
    }
    
    .hero-image-decoration {
        display: block;
        inset: -8px;
    }
    
    .hero-trust-badges {
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }
    
    .trust-item {
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .trust-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .scroll-indicator {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
}

/* ===== DESKTOP (min-width: 1024px) ===== */
@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        padding: var(--space-3xl) var(--space-xl) var(--space-2xl);
        gap: var(--space-xl);
    }
    
    .hero-content {
        text-align: left;
        align-items: flex-start;
        max-width: 50%;
        order: 1;
        padding: 0;
    }
    
    .hero-visual {
        order: 2;
        max-width: 45%;
        padding: 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        margin-left: 0;
    }
    
    /* Contact Section - Desktop */
    .contact-info {
        text-align: left;
    }
    
    .contact-item {
        background: transparent;
        padding: 0;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: var(--radius-md);
    }
    
    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-label {
        font-size: 0.8rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    .hero-ctas {
        justify-content: flex-start;
    }
    
    .hero-trust-badges {
        justify-content: flex-start;
    }
    
    .hero-image-container {
        max-width: 420px;
    }
    
    .hero-image-decoration {
        display: block;
        inset: -10px;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    
    .about-content {
        text-align: left;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-steps::before {
        display: block;
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== LARGE DESKTOP (min-width: 1200px) ===== */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-image-container {
        max-width: 500px;
    }
}

/* ===== LEGACY MAX-WIDTH QUERIES FOR SPECIFIC FIXES ===== */
@media (max-width: 1024px) {
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-details {
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .contact-item {
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        background: rgba(255, 255, 255, 0.7);
        padding: 12px 16px;
        border-radius: var(--radius-md);
        gap: 12px;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: var(--radius-sm);
    }
    
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-label {
        font-size: 0.65rem;
        margin-bottom: 0;
    }
    
    .contact-value {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .contact-value br {
        display: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 1;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }
    
    .hero-stats {
        gap: var(--space-sm);
    }
    
    .stat-card {
        min-width: 100px;
        padding: var(--space-sm) var(--space-md);
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-ctas {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        gap: 8px;
    }
    
    .hero-ctas .btn {
        flex: 1;
        min-width: 0;
        padding: 10px 12px;
        font-size: 0.75rem;
    }
    
    .contact-form-wrapper {
        padding: var(--space-lg);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 16px;
        left: 12px;
    }
    
    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
    
    .scroll-top-btn {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 12px;
    }
    
    .scroll-top-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .preloader,
    .scroll-top-btn,
    .scroll-indicator {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-lg) 0;
    }
}

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

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

/* ========================================
   Hero Trust Badges - MOBILE FIRST
   ======================================== */
.hero-trust-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: var(--space-md);
    width: 100%;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    color: var(--color-text-light);
    white-space: nowrap;
}

.trust-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 0.55rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-us {
    padding: var(--space-2xl) 0;
    background: var(--color-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.why-card {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

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

.why-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(196, 164, 132, 0.3));
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon img {
    transform: scale(1.1);
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ========================================
   Process Section
   ======================================== */
.process {
    padding: var(--space-3xl) 0;
    background: var(--color-light);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    position: relative;
}

.process-step {
    position: relative;
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(145deg, var(--color-white) 0%, var(--color-cream) 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    z-index: 1;
    border: 1px solid rgba(196, 164, 132, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(196, 164, 132, 0.25);
    transition: all 0.4s ease;
}

.step-icon-wrap img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.process-step:hover .step-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(196, 164, 132, 0.35);
}

.process-step:hover .step-icon-wrap img {
    transform: scale(1.1);
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(196, 164, 132, 0.3));
    transition: transform 0.3s ease;
}

.process-step:hover .step-icon img {
    transform: scale(1.15) rotate(5deg);
}

.process-step h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ========================================
   Gallery CTA
   ======================================== */
.gallery-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

.gallery-cta p {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.gallery-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

/* ========================================
   Testimonials Stats
   ======================================== */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-sm);
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    background: var(--color-cream);
    transition: var(--transition-base);
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question span {
    font-weight: 500;
    color: var(--color-dark);
    padding-right: var(--space-md);
}

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-item[open] .faq-question {
    background: var(--color-primary);
}

.faq-item[open] .faq-question span {
    color: var(--color-white);
}

.faq-item[open] .faq-icon {
    color: var(--color-white);
}

.faq-answer {
    padding: var(--space-md) var(--space-lg);
    background: var(--color-white);
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--color-dark);
}

.faq-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

.faq-cta p {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

/* ========================================
   Enhanced Contact Form
   ======================================== */
.form-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.form-note {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-align: center;
    margin-top: var(--space-md);
}

.required {
    color: var(--color-rose);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    text-decoration: none;
    transition: var(--transition-base);
}

a.contact-item:hover {
    transform: translateX(5px);
}

a.contact-item:hover .contact-icon {
    background: var(--color-primary);
}

a.contact-item:hover .contact-icon svg {
    color: var(--color-white);
}

/* ========================================
   Enhanced Footer
   ======================================== */
.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-md);
    line-height: 1.7;
}

.footer-nav h4,
.footer-services h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer-nav nav,
.footer-services nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav a,
.footer-services a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-service-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-services a:hover .footer-service-icon {
    opacity: 1;
    transform: scale(1.15);
}

.footer-nav a:hover,
.footer-services a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

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

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition-base);
}

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

.footer-social a:hover svg {
    color: var(--color-white);
}

.footer-social a:hover .footer-social-icon {
    opacity: 1;
}

.footer-bottom {
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p:last-child {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ========================================
   Scroll Top Button - Tablet/Desktop
   ======================================== */
@media (min-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 24px;
        left: 24px;
    }
    
    .whatsapp-float img {
        width: 34px;
        height: 34px;
    }
    
    .scroll-top-btn {
        width: 56px;
        height: 56px;
        bottom: 24px;
        right: 24px;
    }
    
    .scroll-top-btn svg {
        width: 28px;
        height: 28px;
    }
}

@media (min-width: 1024px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 32px;
        left: 32px;
    }
    
    .whatsapp-float img {
        width: 38px;
        height: 38px;
    }
    
    .scroll-top-btn {
        width: 60px;
        height: 60px;
        bottom: 32px;
        right: 32px;
    }
    
    .scroll-top-btn svg {
        width: 30px;
        height: 30px;
    }
}

/* ========================================
   Responsive - New Sections
   ======================================== */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-trust-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-nav nav,
    .footer-services nav {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .hero-trust-badges {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 12px;
    }
    
    .trust-item {
        font-size: 0.65rem;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .testimonials-stats {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: var(--space-sm) var(--space-md);
    }
    
    .faq-answer {
        padding: var(--space-sm) var(--space-md);
    }
}

/* ========================================
   APPOINTMENT CTA SECTION - MOBILE FIRST
   ======================================== */
.appointment-cta {
    position: relative;
    padding: var(--space-2xl) var(--space-md);
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.appointment-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(196, 164, 132, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 164, 132, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.appointment-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.appointment-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-lg);
    animation: floatCalendar 3s ease-in-out infinite;
}

.appointment-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(196, 164, 132, 0.4));
}

@keyframes floatCalendar {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

.appointment-title {
    margin-bottom: var(--space-md);
}

.appointment-title .title-small {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.appointment-title .title-big {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
}

.appointment-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.appointment-desc strong {
    color: var(--color-primary);
}

.appointment-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.appointment-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.appointment-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.appointment-feature .feature-icon {
    color: var(--color-primary);
    font-weight: 700;
}

.feature-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.appointment-feature:hover .feature-icon-img {
    transform: scale(1.1);
}

.btn-appointment {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(196, 164, 132, 0.4);
    transition: all 0.3s ease;
    animation: pulseBtn 2s infinite;
}

.btn-appointment:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(196, 164, 132, 0.5);
}

.btn-appointment .btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 10px 40px rgba(196, 164, 132, 0.4); }
    50% { box-shadow: 0 10px 50px rgba(196, 164, 132, 0.6), 0 0 0 10px rgba(196, 164, 132, 0.1); }
}

/* Appointment Section - Tablet */
@media (min-width: 768px) {
    .appointment-cta {
        padding: var(--space-3xl) var(--space-xl);
    }
    
    .appointment-icon {
        width: 120px;
        height: 120px;
    }
    
    .appointment-features {
        gap: var(--space-md);
    }
}

/* Appointment Section - Desktop */
@media (min-width: 1024px) {
    .appointment-cta {
        padding: var(--space-4xl) var(--space-2xl);
    }
    
    .appointment-icon {
        width: 140px;
        height: 140px;
    }
    
    .appointment-content {
        max-width: 700px;
    }
}

/* ========================================
   NEW YEAR SPECIAL SECTION - MOBILE FIRST
   ======================================== */
.new-year-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-xl) var(--space-sm);
}

/* Background GIF - Full Cover */
.new-year-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.new-year-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.new-year-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 22, 20, 0.6) 0%,
        rgba(26, 22, 20, 0.4) 50%,
        rgba(26, 22, 20, 0.7) 100%
    );
}

/* Content */
.new-year-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 100%;
    padding: var(--space-lg);
}

/* Badge */
.new-year-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sparkle {
    animation: sparkle 1.5s ease-in-out infinite;
}

.sparkle:nth-child(3) {
    animation-delay: 0.75s;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Title */
.new-year-title {
    font-family: var(--font-display);
    margin-bottom: var(--space-md);
}

.year-text {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1;
    background: linear-gradient(135deg, #ffd700, #ffec8b, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.wish-text {
    display: block;
    font-size: 1.75rem;
    font-weight: 500;
    color: #fff;
    font-style: italic;
    margin-top: var(--space-xs);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Message */
.new-year-message {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 100%;
    margin: 0 auto var(--space-lg);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.new-year-message strong {
    color: #ffd700;
    font-weight: 600;
}

/* CTA Button */
.new-year-cta {
    margin-bottom: var(--space-lg);
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c41e3a, #8b0000);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 4px 15px rgba(196, 30, 58, 0.4),
        0 0 30px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4), 0 0 30px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 4px 25px rgba(196, 30, 58, 0.6), 0 0 50px rgba(255, 215, 0, 0.4); }
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 6px 25px rgba(196, 30, 58, 0.5),
        0 0 50px rgba(255, 215, 0, 0.4);
}

.btn-sparkle {
    font-size: 1.2rem;
    animation: btnSparkle 1s ease-in-out infinite alternate;
}

@keyframes btnSparkle {
    0% { transform: rotate(-10deg) scale(1); }
    100% { transform: rotate(10deg) scale(1.1); }
}

/* Snowflakes */
.snowflakes {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
}

.snowflake {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: snowfall 3s ease-in-out infinite;
}

.snowflake:nth-child(1) { animation-delay: 0s; }
.snowflake:nth-child(2) { animation-delay: 0.5s; }
.snowflake:nth-child(3) { animation-delay: 1s; }
.snowflake:nth-child(4) { animation-delay: 1.5s; }
.snowflake:nth-child(5) { animation-delay: 2s; }

@keyframes snowfall {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-15px) rotate(180deg); 
        opacity: 1;
    }
}

/* ===== TABLET (min-width: 768px) - New Year ===== */
@media (min-width: 768px) {
    .new-year-section {
        padding: var(--space-2xl);
    }
    
    .new-year-content {
        max-width: 600px;
        padding: var(--space-xl);
    }
    
    .new-year-badge {
        font-size: 1rem;
        padding: 10px 24px;
    }
    
    .year-text {
        font-size: 6rem;
    }
    
    .wish-text {
        font-size: 2.25rem;
    }
    
    .new-year-message {
        font-size: 1.1rem;
    }
    
    .btn-glow {
        padding: 16px 36px;
        font-size: 1.1rem;
    }
    
    .snowflake {
        font-size: 2rem;
    }
}

/* ===== DESKTOP (min-width: 1024px) - New Year ===== */
@media (min-width: 1024px) {
    .new-year-content {
        max-width: 700px;
        padding: var(--space-2xl);
    }
    
    .year-text {
        font-size: 8rem;
    }
    
    .wish-text {
        font-size: 2.75rem;
    }
    
    .new-year-message {
        font-size: 1.2rem;
    }
}

/* ========================================
   Instagram Section - Gerçek Instagram UI
   ======================================== */
.instagram-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-light) 100%);
    overflow: hidden;
}

/* Phone Mockup */
.ig-phone {
    background: #000;
    border-radius: 40px;
    padding: 12px;
    max-width: 380px;
    margin: 0 auto var(--space-xl);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
}

.ig-phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.ig-phone-notch::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 3px;
}

.ig-app {
    background: #000;
    border-radius: 32px;
    overflow: hidden;
}

/* Header Bar */
.ig-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    padding-top: 40px;
    background: #000;
    color: #fff;
}

.ig-header-title {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Profile Section */
.ig-profile {
    padding: 16px;
    background: #000;
}

.ig-profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.ig-avatar-wrapper {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    flex-shrink: 0;
}

.ig-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #000;
}

.ig-stats {
    display: flex;
    gap: 16px;
    flex: 1;
    justify-content: space-around;
}

.ig-stat {
    text-align: center;
}

.ig-stat-num {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.ig-stat-label {
    color: #fff;
    font-size: 0.8rem;
}

/* Bio */
.ig-bio {
    margin-bottom: 16px;
}

.ig-name {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.ig-category {
    display: block;
    color: #a8a8a8;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.ig-bio-text {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Buttons */
.ig-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.ig-btn {
    flex: 1;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ig-btn-primary {
    background: #0095f6;
    color: #fff;
}

.ig-btn-primary:hover {
    background: #1aa1f7;
}

.ig-btn-secondary {
    background: #363636;
    color: #fff;
}

.ig-btn-secondary:hover {
    background: #4a4a4a;
}

/* Highlights */
.ig-highlights {
    display: flex;
    gap: 16px;
    padding-bottom: 8px;
}

.ig-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ig-highlight-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 2px;
    border: 2px solid #363636;
    background: #000;
}

.ig-highlight-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.ig-highlight-label {
    color: #fff;
    font-size: 0.7rem;
    max-width: 64px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tabs */
.ig-tabs {
    display: flex;
    border-top: 1px solid #262626;
}

.ig-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: #8e8e8e;
    cursor: pointer;
    border-bottom: 1px solid transparent;
}

.ig-tab.active {
    color: #fff;
    border-bottom: 1px solid #fff;
}

/* Posts Grid */
.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #262626;
}

.ig-post {
    aspect-ratio: 1;
    overflow: hidden;
}

.ig-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.ig-post:hover img {
    opacity: 0.7;
}

/* CTA Button */
.ig-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.3);
    margin: 0 auto;
    display: flex;
}

.ig-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 39, 67, 0.5);
}

/* Responsive */
@media (min-width: 480px) {
    .ig-phone {
        max-width: 420px;
    }
}

@media (min-width: 768px) {
    .instagram-section {
        padding: var(--space-3xl) 0;
    }
    
    .ig-phone {
        max-width: 440px;
    }
}

@media (min-width: 1024px) {
    .instagram-section {
        padding: var(--space-4xl) 0;
    }
    
    .ig-cta-btn {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}

