/* ================================================
   DEMIRBEY AHŞAP - PREMIUM VITRINE WEBSITE
   Production-Ready CSS
   ================================================ */

/* ================================================
   CSS RESET & BASE
   ================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #0f0f0f;
    --color-surface: #1e1e1e;
    --color-accent: #d4b996;
    --color-text: #f5f5f5;
    --color-text-muted: #b5b5b5;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --radius: 8px;
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ================================================
   UTILITIES
   ================================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.7;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
}

.btn-primary {
    background-color: #d4b996;
    color: #1a1a1a;
    border: none;
}

.btn-primary:hover {
    background-color: #e6caa5;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 185, 150, 0.35);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 185, 150, 0.6);
    color: #d4b996;
}

/* HERO CTA - WhatsApp Button */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border: none;
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #2EE370 0%, #159A8A 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.45);
}

/* HERO CTA - Phone Button */
.btn-phone {
    background: linear-gradient(135deg, #d4b996 0%, #c4a67e 100%);
    color: #1a1a1a;
    border: none;
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(212, 185, 150, 0.25);
}

.btn-phone:hover {
    background: linear-gradient(135deg, #e6caa5 0%, #d4b996 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 185, 150, 0.5);
}

/* HERO CTA - Instagram Button */
.btn-instagram {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.2) 0%, rgba(253, 29, 29, 0.2) 50%, rgba(252, 176, 69, 0.2) 100%);
    border: 1px solid rgba(253, 29, 29, 0.3);
    color: #ffffff;
    font-weight: 500;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-instagram:hover {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.35) 0%, rgba(253, 29, 29, 0.35) 50%, rgba(252, 176, 69, 0.35) 100%);
    border-color: rgba(252, 176, 69, 0.6);
    color: #fcb045;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(253, 29, 29, 0.2);
}

.btn-primary-large,
.btn-outline-large {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}

.btn-primary-large {
    background-color: var(--color-accent);
    color: #000;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 185, 150, 0.4);
}

.btn-outline-large {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
}

.btn-outline-large:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
}

/* ================================================
   HEADER
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 1rem 0;
    background: rgba(15, 15, 15, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-text);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75));
    opacity: 0.85;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.85);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: #e6e6e6;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    max-width: 620px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ================================================
   WHAT WE CREATE SECTION
   ================================================ */
.section-create {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.container-lg {
    max-width: 1400px;
}

.create-slider-wrapper {
    position: relative;
    margin-top: var(--spacing-lg);
}

.create-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

@media (min-width: 1200px) {
    .create-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.create-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(212, 185, 150, 0.1);
    border: 1px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

.create-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
    stroke-width: 2px;
}

.create-nav:hover {
    background-color: var(--color-accent);
}

.create-nav:hover svg {
    stroke: #000;
}

.create-prev {
    left: -60px;
}

.create-next {
    right: -60px;
}

@media (max-width: 1500px) {
    .create-prev {
        left: 10px;
    }

    .create-next {
        right: 10px;
    }

    .create-nav {
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    .create-slider-wrapper {
        padding: 0 45px;
    }

    .create-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        scroll-behavior: smooth;
        scrollbar-width: none;
        padding-bottom: 10px;
        margin-top: var(--spacing-md);
    }

    .create-grid::-webkit-scrollbar {
        display: none;
    }

    .create-card {
        min-width: 85%;
        scroll-snap-align: center;
    }

    .create-card-image {
        aspect-ratio: 1 / 1;
        height: auto !important;
    }

    .create-nav {
        display: flex;
        opacity: 1;
        pointer-events: auto;
        width: 45px;
        height: 45px;
        background-color: rgba(30, 30, 30, 0.9);
        border: 1px solid var(--color-accent);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }

    .create-nav svg {
        width: 20px;
        height: 20px;
        stroke: var(--color-accent);
    }

    .create-prev {
        left: -10px;
    }

    .create-next {
        right: -10px;
    }
}

.create-card {
    background-color: var(--color-surface);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 185, 150, 0.1);
}

.create-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--color-accent);
}

.create-card-image {
    position: relative;
    width: 100%;
    height: 320px;
    /* Enlarged from 260px */
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(135deg, #2a2520 0%, #1a1410 100%);
}

.create-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.create-card:hover .create-card-image img {
    transform: scale(1.05);
}

.create-card-content {
    padding: var(--spacing-md);
    text-align: left;
}

.create-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-accent);
}

.create-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ================================================
   GALLERY SECTION
   ================================================ */
.section-gallery {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-surface);
    text-align: center;
}

.gallery-slider-wrapper {
    position: relative;
    margin-top: var(--spacing-lg);
    padding: 0 60px;
}

.gallery-slider {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: var(--spacing-sm) 0;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    min-width: 320px;
    height: 420px;
    scroll-snap-align: center;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, #2a2520 0%, #1a1410 100%);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
}

.gallery-placeholder img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(212, 185, 150, 0.1);
    border: 1px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.gallery-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(212, 185, 150, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-dot.active {
    background-color: var(--color-accent);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .gallery-slider-wrapper {
        padding: 0 16px;
    }

    .gallery-slider {
        gap: 10px;
        padding-bottom: 0;
    }

    .gallery-item {
        /* Show 3 items: 100% / 3 minus gap adjustment */
        min-width: calc((100% - 20px) / 3);
        height: 120px;
        scroll-snap-align: start;
        border-radius: 8px;
    }

    .gallery-nav {
        display: none !important;
    }

    .gallery-dots {
        display: flex;
    }
}

.gallery-nav:hover {
    background-color: var(--color-accent);
}

.gallery-nav:hover svg {
    stroke: #000;
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
    stroke-width: 2px;
    fill: none;
}

.gallery-prev {
    left: 0;
}

.gallery-next {
    right: 0;
}

/* ================================================
   PROCESS SECTION
   ================================================ */
.section-process {
    padding: var(--spacing-xl) 0;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.process-content {
    text-align: left;
}

.process-steps {
    margin-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.process-step {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.step-marker {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-accent);
    margin-top: 5px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.step-content p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

.process-image {
    height: 480px;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, #2a2520 0%, #1a1410 100%);
}

.process-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-surface);
    overflow: hidden;
}

.process-placeholder img,
.process-image img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* ================================================
   CONTACT CTA BUTTONS (CUSTOM GRADIENTS)
   ================================================ */

/* WhatsApp Button (Soft Green Gradient) */
.contact-ctas a[href*="wa.me"] {
    background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.contact-ctas a[href*="wa.me"]:hover {
    background: linear-gradient(135deg, #2EE370 0%, #159A8A 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.45);
}

/* Phone Button (Premium Gold Gradient) */
.contact-ctas a[href^="tel:"] {
    background: linear-gradient(135deg, #F5C400 0%, #E0B200 100%) !important;
    color: #1a1a1a !important;
    /* Dark text for contrast */
    border: none !important;
    box-shadow: 0 6px 20px rgba(245, 196, 0, 0.3);
}

.contact-ctas a[href^="tel:"]:hover {
    background: linear-gradient(135deg, #FFD700 0%, #CCA300 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 196, 0, 0.45);
    color: #000000 !important;
}

/* Instagram Button (Multi-color Gradient) */
.contact-ctas a[href*="instagram.com"] {
    background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 75%, #515BD4 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(221, 42, 123, 0.3);
}

.contact-ctas a[href*="instagram.com"]:hover {
    background: linear-gradient(135deg, #FF9E4D 0%, #EE408F 50%, #9B4CC7 75%, #636DE6 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(221, 42, 123, 0.45);
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.section-testimonials {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-surface);
    text-align: center;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    min-height: 200px;
}

.testimonial {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.testimonial.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.testimonial-author {
    display: block;
    font-size: 1rem;
    color: var(--color-accent);
    font-weight: 500;
    letter-spacing: 1px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(212, 185, 150, 0.3);
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--color-accent);
    transform: scale(1.3);
}

.dot:hover {
    background-color: var(--color-accent);
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.section-contact {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg);
    text-align: center;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.contact-desc {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.7;
}

.contact-ctas {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background-color: var(--color-bg);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-xs);
}

.footer-tagline {
    color: var(--color-text-muted);
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    opacity: 0.6;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .menu-toggle {
        display: flex;
        padding: 8px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-bg);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.125rem;
    }

    .hero {
        height: 100svh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .btn,
    .btn-whatsapp,
    .btn-phone,
    .btn-instagram,
    .btn-primary-large,
    .btn-outline-large {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }

    .create-grid {
        grid-template-columns: 1fr;
    }

    .create-card-image {
        height: 200px;
    }

    .gallery-slider-wrapper {
        padding: 0 50px;
    }

    .gallery-item {
        min-width: 280px;
        height: 360px;
    }

    .gallery-nav {
        width: 36px;
        height: 36px;
    }

    .gallery-prev {
        left: 8px;
    }

    .gallery-next {
        right: 8px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-image {
        height: 280px;
        order: -1;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 375px) {
    .gallery-item {
        flex: 0 0 260px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}