/* ==========================================
   Elements - Rzemiosło Stolarskie
   Styl: Vintage / Klasyczny Stolarski
   ========================================== */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Vintage Warm Colors */
    --bg-cream: #faf8f5;
    --bg-warm-white: #fffdf9;
    --bg-paper: #f5f1eb;
    --bg-wood-light: #e8dfd3;

    /* Accent Colors - Warm Orange */
    --accent-orange: #d4732c;
    --accent-orange-dark: #b85d1f;
    --accent-orange-light: #e8944d;
    --accent-copper: #c47d4a;

    /* Wood & Natural Tones */
    --wood-dark: #3d2b1f;
    --wood-medium: #5c4033;
    --wood-light: #8b6914;

    /* Text Colors */
    --text-dark: #2c2016;
    --text-warm: #4a3c2e;
    --text-muted: #7a6b5a;
    --text-light: #fefefe;

    /* Border & Decorative */
    --border-warm: rgba(212, 115, 44, 0.2);
    --border-wood: rgba(93, 64, 51, 0.15);
    --shadow-warm: rgba(60, 43, 31, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==========================================
   Loading Screen
   ========================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

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

.loader-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 56px;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-wood);
    border-top-color: var(--accent-orange);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(250, 248, 245, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px var(--shadow-warm);
    padding: 18px 60px;
}

.logo {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header.scrolled .logo {
    color: var(--text-dark);
    text-shadow: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav a {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header.scrolled .nav a {
    color: var(--text-warm);
    text-shadow: none;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

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

.nav a:hover,
.nav a.active {
    color: var(--accent-orange);
}

.header.scrolled .nav a:hover,
.header.scrolled .nav a.active {
    color: var(--accent-orange);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.header.scrolled .mobile-menu-toggle span {
    background: var(--accent-orange);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(44, 32, 22, 0.35) 0%,
            rgba(44, 32, 22, 0.45) 50%,
            rgba(44, 32, 22, 0.65) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 1;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 76px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-orange);
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(212, 115, 44, 0.3);
}

.btn-primary:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 115, 44, 0.4);
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    background: var(--bg-cream);
    padding: 120px 60px;
    position: relative;
    z-index: 10;
}

/* Decorative wood grain pattern */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='none' stroke='%23d4732c' stroke-width='0.3' opacity='0.07' d='M0,50 Q25,45 50,50 T100,50 M0,30 Q25,25 50,30 T100,30 M0,70 Q25,65 50,70 T100,70'/%3E%3C/svg%3E");
    pointer-events: none;
}

.services-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto 100px;
    background: var(--bg-warm-white);
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 8px 40px var(--shadow-warm);
    border: 1px solid var(--border-wood);
    position: relative;
}

/* Vintage corner decorations */
.services-header::before,
.services-header::after {
    content: '✦';
    position: absolute;
    font-size: 14px;
    color: var(--accent-orange);
    opacity: 0.6;
}

.services-header::before {
    top: 20px;
    left: 25px;
}

.services-header::after {
    bottom: 20px;
    right: 25px;
}

.wood-chip {
    width: 160px;
    flex-shrink: 0;
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

/* Na ciemnym tle - wtopienie w tło */
.pricing-header .wood-chip {
    width: 120px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.25),
        0 0 60px rgba(255, 255, 255, 0.08);
}

.services-intro {
    text-align: left;
}

/* Logo na jasnym tle */
.services-header .wood-chip {
    background: var(--bg-warm-white);
    padding: 12px;
    box-shadow:
        0 6px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
}

.services-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.services-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
}

.services-intro p {
    font-size: 17px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.9;
    margin-top: 25px;
}

.signature {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    color: var(--accent-orange);
    margin-top: 20px;
    font-style: normal;
}

/* Feature Cards */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.feature-card {
    background: var(--bg-warm-white);
    padding: 50px 40px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid var(--border-wood);
    box-shadow: 0 4px 25px var(--shadow-warm);
    transition: all 0.4s ease;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 45px rgba(60, 43, 31, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    margin-bottom: 30px;
}

.feature-icon svg {
    width: 65px;
    height: 65px;
    stroke: var(--accent-orange);
    stroke-width: 1.2;
    fill: none;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.85;
}

/* ==========================================
   Warsztat Section
   ========================================== */
.warsztat {
    background: var(--wood-dark);
    padding: 120px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Vintage wood texture overlay */
.warsztat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1' d='M0,100 Q250,80 500,100 T1000,100'/%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1' d='M0,120 Q250,100 500,120 T1000,120'/%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1' d='M0,80 Q250,60 500,80 T1000,80'/%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1' d='M0,140 Q250,120 500,140 T1000,140'/%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1' d='M0,60 Q250,40 500,60 T1000,60'/%3E%3C/svg%3E");
    background-size: cover;
}

.warsztat-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.warsztat h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.warsztat h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-orange);
}

.warsztat p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 2;
    margin-top: 40px;
    font-style: italic;
}

/* ==========================================
   Rzemiosło Section
   ========================================== */
.rzemioslo {
    background: var(--bg-paper);
}

/* First Row */
.rzemioslo-row-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.rzemioslo-cta-wrapper {
    position: relative;
    overflow: hidden;
}

.rzemioslo-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.rzemioslo-cta-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(61, 43, 31, 0.88), rgba(92, 64, 51, 0.8));
}

.rzemioslo-cta-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 35px;
}

.rzemioslo-header-wrapper {
    display: flex;
    flex-direction: column;
}

.rzemioslo-header {
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-paper);
}

.rzemioslo-header h2 {
    font-size: 44px;
    font-weight: 700;
    font-style: italic;
    color: var(--text-dark);
}

.rzemioslo-header .wood-chip {
    width: 100px;
}

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

/* Second Row */
.rzemioslo-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
}

.rzemioslo-quote-wrapper {
    position: relative;
    overflow: hidden;
}

.rzemioslo-quote-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(61, 43, 31, 0.92), rgba(44, 32, 22, 0.88));
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.rzemioslo-text-wrapper {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-paper);
    overflow: hidden;
}

.rzemioslo-text-wrapper p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 30px;
}

.rzemioslo-small-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   O cenach Section
   ========================================== */
.pricing {
    background: var(--wood-medium);
    position: relative;
    padding: 120px 60px;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 100px;
    pointer-events: none;
}

.pricing-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header .wood-chip {
    width: 100px;
    margin-bottom: 30px;
    filter: brightness(1.1);
}

.pricing-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

.pricing-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-orange);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.pricing-card {
    text-align: center;
    padding: 45px 35px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.pricing-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    font-style: italic;
}

.pricing-cta {
    text-align: center;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery {
    background: var(--bg-cream);
    padding: 120px 60px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 70px;
}

.gallery-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.gallery-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-orange);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 20px var(--shadow-warm);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(60, 43, 31, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(61, 43, 31, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 32, 22, 0.97);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

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

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 38px;
    color: var(--text-light);
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.lightbox-close:hover {
    color: var(--accent-orange);
    opacity: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 45px;
    color: var(--text-light);
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease;
    user-select: none;
    opacity: 0.7;
}

.lightbox-nav:hover {
    color: var(--accent-orange);
    opacity: 1;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

/* ==========================================
   Footer Cards Section
   ========================================== */
.footer-cards {
    background: var(--wood-dark);
    padding: 100px 60px;
}

.footer-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-card {
    text-align: left;
}

.footer-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 400;
    font-style: italic;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.footer-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 25px;
    font-style: italic;
}

.footer-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   Why Us Section
   ========================================== */
.why-us {
    background: var(--bg-cream);
    padding: 100px 60px;
    position: relative;
}

.why-us-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    font-style: italic;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.why-us h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-orange);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.why-us-card {
    background: var(--bg-warm-white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border-wood);
    box-shadow: 0 4px 20px var(--shadow-warm);
    transition: all 0.4s ease;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(60, 43, 31, 0.15);
}

.why-us-icon {
    margin-bottom: 25px;
}

.why-us-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--accent-orange);
    stroke-width: 1.5;
    fill: none;
}

.why-us-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.why-us-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.why-us-cta {
    text-align: center;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-phone svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-light);
    stroke-width: 2;
    fill: none;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq {
    background: var(--wood-dark);
    padding: 100px 60px;
}

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

.faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-orange);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-orange);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    font-style: italic;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-orange);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

/* ==========================================
   Sticky CTA Bar (Mobile)
   ========================================== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--wood-dark);
    padding: 12px 15px;
    z-index: 998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    gap: 10px;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.sticky-cta-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    fill: none;
}

.sticky-cta-call {
    background: var(--accent-orange);
    color: var(--text-light);
}

.sticky-cta-call svg {
    stroke: var(--text-light);
}

.sticky-cta-quote {
    background: var(--bg-warm-white);
    color: var(--text-dark);
    border: 1px solid var(--border-wood);
}

.sticky-cta-quote svg {
    stroke: var(--accent-orange);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    background: var(--bg-cream);
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
}

.contact-info>p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-top: 30px;
    margin-bottom: 40px;
    font-style: italic;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 17px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-orange);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--accent-orange);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-orange-dark);
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: var(--bg-warm-white);
    padding: 50px;
    border-radius: 4px;
    border: 1px solid var(--border-wood);
    box-shadow: 0 8px 40px var(--shadow-warm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: var(--text-warm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group label span {
    color: var(--accent-orange);
}

.form-group input,
.form-group textarea {
    background: var(--bg-cream);
    border: 1px solid var(--border-wood);
    padding: 16px 20px;
    font-size: 15px;
    color: var(--text-dark);
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(212, 115, 44, 0.1);
}

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

.btn-submit {
    align-self: flex-start;
    padding: 16px 40px;
    background: var(--accent-orange);
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(212, 115, 44, 0.25);
}

.btn-submit:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 115, 44, 0.35);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: #1f1610;
    padding: 35px 60px;
    text-align: center;
    border-top: 3px solid var(--accent-orange);
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-style: italic;
}

/* ==========================================
   WhatsApp Floating Button
   ========================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all 0.4s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
    color: white;
}

/* ==========================================
   Success Toast
   ========================================== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--accent-orange);
    color: white;
    padding: 18px 35px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 6px 30px rgba(212, 115, 44, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

/* ==========================================
   Scroll Animations
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .header {
        padding: 18px 40px;
    }

    .services {
        padding: 100px 40px;
    }

    .services-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        margin-bottom: 70px;
    }

    .services-intro {
        text-align: center;
    }

    .services-intro h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .features {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .rzemioslo-row-1,
    .rzemioslo-row-2 {
        grid-template-columns: 1fr;
    }

    .rzemioslo-header-wrapper {
        order: -1;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 80px 40px;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-us {
        padding: 80px 40px;
    }

    .faq {
        padding: 80px 40px;
    }

    .faq h2 {
        font-size: 36px;
    }

    .faq-question span {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 25px;
    }

    .header.scrolled {
        padding: 12px 25px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: none;
        height: 100vh;
        background: var(--bg-cream);
        flex-direction: column;
        justify-content: center;
        gap: 35px;
        transition: right 0.4s ease;
        box-shadow: none;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        color: var(--text-warm);
        text-shadow: none;
        font-size: 16px;
    }

    .hero-title {
        font-size: 44px;
    }

    .btn-primary {
        padding: 15px 32px;
        font-size: 12px;
    }

    .wood-chip {
        width: 130px;
    }

    .services-intro h2 {
        font-size: 34px;
    }

    .contact-info h2 {
        font-size: 34px;
    }

    .warsztat {
        padding: 80px 30px;
    }

    .warsztat h2 {
        font-size: 38px;
    }

    .rzemioslo-header {
        padding: 30px;
        flex-direction: column;
        gap: 20px;
    }

    .rzemioslo-header h2 {
        font-size: 34px;
    }

    .rzemioslo-cta-overlay {
        padding: 40px;
    }

    .rzemioslo-cta-overlay h3 {
        font-size: 26px;
    }

    .rzemioslo-quote-overlay {
        padding: 40px;
    }

    .quote-text {
        font-size: 24px;
    }

    .pricing {
        padding: 80px 30px;
    }

    .pricing-header h2 {
        font-size: 38px;
    }

    .gallery {
        padding: 80px 30px;
    }

    .gallery-header h2 {
        font-size: 38px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 18px;
    }

    .footer-cards {
        padding: 60px 30px;
    }

    .footer-card h3 {
        font-size: 26px;
    }

    .contact-form {
        padding: 35px;
    }

    .lightbox-nav {
        font-size: 35px;
        padding: 15px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 32px;
    }

    /* Why Us mobile */
    .why-us {
        padding: 60px 30px;
    }

    .why-us h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-us-card {
        padding: 30px 25px;
    }

    /* FAQ mobile */
    .faq {
        padding: 60px 25px;
    }

    .faq h2 {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    /* Sticky CTA - show on mobile */
    .sticky-cta {
        display: flex;
    }

    /* Adjust WhatsApp button position */
    .whatsapp-btn {
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }

    .services {
        padding: 60px 20px;
    }

    .feature-card {
        padding: 40px 28px;
    }

    .gallery {
        padding: 60px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 60px 20px;
    }

    .contact-form {
        padding: 28px;
    }

    .footer {
        padding: 28px 20px;
    }

    .pricing-card {
        padding: 35px 25px;
    }
}