/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --white: #FFFFFF;
    --black: #111111;
    --yellow: #F4C542;
    --yellow-dark: #d4a832;
    --yellow-light: #fdf0c4;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    height: 72px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--black);
    z-index: 10;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--yellow);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.logo-icon .nav-icon {
    width: 22px;
    height: 22px;
    color: var(--black);
}

.nav-logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
}

.logo-text {
    letter-spacing: -1px;
}

.logo-accent {
    color: var(--yellow);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.nav-cta .cta-icon {
    width: 16px;
    height: 16px;
}

.nav-cta:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 197, 66, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow-dark);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

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

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 17, 17, 0.85) 0%,
        rgba(17, 17, 17, 0.6) 50%,
        rgba(17, 17, 17, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 197, 66, 0.15);
    border: 1px solid rgba(244, 197, 66, 0.3);
    color: var(--yellow);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-title-accent {
    color: var(--yellow);
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.scroll-icon {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.4);
}

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

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 24px 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat:hover {
    background: var(--yellow-light);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    display: inline;
    letter-spacing: -1px;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -1px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 4px;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 4px solid var(--yellow);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--yellow-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

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

.service-icon {
    width: 28px;
    height: 28px;
    color: var(--yellow-dark);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--black);
}

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.service-desc {
    font-size: 0.925rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   EQUIPMENT
   ============================================ */
.equipment {
    padding: 120px 0;
    background: var(--white);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.equipment-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.equipment-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.equipment-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--yellow);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
}

.equipment-info {
    padding: 24px;
}

.equipment-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.equipment-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 120px 0;
    background: var(--gray-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-icon {
    width: 28px;
    height: 28px;
    color: var(--yellow);
}

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

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

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: 120px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.why-us-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.why-us-card:hover {
    background: var(--yellow-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-us-icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--yellow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.why-us-icon {
    width: 24px;
    height: 24px;
    color: var(--black);
}

.why-us-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-us-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star-icon {
    width: 18px;
    height: 18px;
    color: var(--yellow);
    fill: var(--yellow);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.85));
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-bottom: 16px;
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--yellow-light);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--yellow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon {
    width: 22px;
    height: 22px;
    color: var(--black);
}

.contact-card-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.contact-card-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
}

.contact-link {
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--yellow-dark);
}

.contact-map {
    margin-top: 16px;
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray-400);
    border: 2px dashed var(--gray-200);
    transition: var(--transition);
}

.map-placeholder:hover {
    border-color: var(--yellow);
    color: var(--yellow-dark);
}

.map-icon {
    width: 32px;
    height: 32px;
}

/* Form */
/* Wrapper dla całego komponentu */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

/* Główny przycisk dropdowna */
.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    height: 54px; /* Dopasuj do wysokości swoich inputów */
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-500);
    background: #ffffff;
    border: 2px solid #e2e8f0; /* Twój domyślny jasnoszary border */
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover i Focus na triggerze */
.custom-select:hover .custom-select-trigger {
    border-color: var(--yellow);
}

.custom-select.open .custom-select-trigger {
    border-color: var(--yellow);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 4px 12px rgba(244, 197, 66, 0.1);
}

/* Stylowanie strzałki (zamiast obrazka) */
.custom-select-trigger .arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s ease;
}

.custom-select.open .arrow {
    transform: translateY(2px) rotate(-135deg);
}

/* Kontener z opcjami do wyboru */
.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 2px solid var(--yellow);
    border-top: none;
    background: #fff;
    transition: all 0.2s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-5px);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

/* Otwarty stan listy */
.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

/* Pojedyncza opcja */
.custom-option {
    position: relative;
    display: block;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    transition: all 0.15s ease;
}

/* Najważniejsze: podświetlenie hover (Zamiast niebieskiego - Twój żółty!) */
.custom-option:hover {
    background-color: rgba(244, 197, 66, 0.15); /* Delikatny żółty */
    color: #000;
    padding-left: 22px; /* Lekki, elegancki efekt przesunięcia */
}

/* Wybrana opcja na liście */
.custom-option.selected {
    background-color: var(--yellow);
    color: #000;
}

/* Ukrycie placeholder-opcji na liście rozwijanej */
.custom-option.placeholder {
    display: none;
}

.contact-form {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 1rem;
    color: var(--black);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 4px rgba(244, 197, 66, 0.15);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 48px;
    cursor: pointer;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    color: var(--yellow);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-links span {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--yellow);
    transform: translateX(4px);
}

.footer-contact-icon {
    width: 14px;
    height: 14px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ============================================
   FLOATING CALL BUTTON
   ============================================ */
.floating-call {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 30px rgba(244, 197, 66, 0.4);
    transition: var(--transition);
    animation: pulse-ring 2s infinite;
    cursor: pointer;
}

.floating-call:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(244, 197, 66, 0.5);
}

.floating-icon {
    width: 20px;
    height: 20px;
}

.floating-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--black);
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(244, 197, 66, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(244, 197, 66, 0); }
    100% { box-shadow: 0 0 0 0 rgba(244, 197, 66, 0); }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(7) { transition-delay: 0.6s; }
.animate-on-scroll:nth-child(8) { transition-delay: 0.7s; }

.why-us-card {
    display: flex;
    align-items: center; /* To wyśrodkuje ikonę w pionie względem całego tekstu obok */
    gap: 20px;
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

/* Nowy styl dla kontenera tekstowego, układa tytuł nad opisem */
.why-us-content {
    display: flex;
    flex-direction: column;
    gap: 6px; /* Odstęp między tytułem a opisem */
    flex: 1;  /* Pozwala tekstowi zająć całą dostępną szerokość */
}

/* Usuwamy ewentualne marginesy domyślne, które mogłyby psuć wyrównanie */
.why-us-title {
    margin: 0;
}

.why-us-desc {
    margin: 0;
}

.equipment-img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #888;
    font-size: 16px;
    font-weight: 500;
}

.placeholder-icon {
    width: 40px;
    height: 40px;
    opacity: 0.5;
}
/* ============================================
   STYLOWANIE MAPY GOOGLE (ZACHOWANIE WYMIARÓW)
   ============================================ */
.contact-map {
    display: flex;
    justify-content: center; /* Centruje mapę w kontenerze */
    align-items: center;
    border-radius: var(--radius); /* Eleganckie zaokrąglenie rogów */
    overflow: hidden; /* Odcina ostre rogi mapy */
    border: 2px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    max-width: 100%; /* Zapobiega rozciąganiu na małych ekranach */
}

/* Efekt najechania myszką – podświetlenie ramki na żółto */
.contact-map:hover {
    border-color: var(--yellow);
    box-shadow: 0 4px 12px rgba(244, 197, 66, 0.15);
}

/* Styl dla iframe z zachowaniem Twoich wymiarów (600x450) */
.contact-map iframe {
    display: block;
    width: 600px;
    height: 450px;
    max-width: 100%; /* Sprawia, że na telefonach mapa zmniejszy się automatycznie, żeby nie popsuć wyglądu strony */
    border: 0;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 5;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .nav-link {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--black);
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .about-img {
        height: 400px;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .about {
        padding: 80px 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services {
        padding: 80px 0;
    }

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

    .equipment {
        padding: 80px 0;
    }

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

    .gallery {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

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

    .testimonials {
        padding: 80px 0;
    }

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

    .cta-section {
        padding: 80px 0;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-form {
        padding: 24px;
    }

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

    .floating-text {
        display: none;
    }

    .floating-call {
        padding: 16px;
        border-radius: 50%;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* ============================================
   EXTRA - SELECTION & SCROLLBAR
   ============================================ */
::selection {
    background: var(--yellow);
    color: var(--black);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* ============================================
   COOKIE CONSENT BANNER STYLES
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(150%); /* Domyślnie ukryty pod ekranem */
    width: calc(100% - 48px);
    max-width: 900px;
    background: #ffffff;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg, 16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 99999; /* Nad wszystkim, nawet nad menu */
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
}

/* Klasa aktywująca pokazanie paska */
.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    gap: 24px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.cookie-icon {
    width: 32px;
    height: 32px;
    color: var(--yellow);
    flex-shrink: 0;
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Przycisk akceptacji w kolorystyce Twojej strony */
.btn-cookie-accept {
    background: var(--black, #111111);
    color: #ffffff;
    border: 2px solid var(--black, #111111);
    padding: 10px 24px;
    border-radius: var(--radius, 12px);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition, all 0.2s ease);
}

.btn-cookie-accept:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black, #111111);
}

/* RWD: Dostosowanie do ekranów telefonów */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 16px;
        width: calc(100% - 32px);
    }
    
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
    }
    
    .btn-cookie-accept {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   FIX DLA MENU MOBILNEGO
   ============================================ */
@media (max-width: 768px) { /* Dopasuj szerokość do swojego breakpointa mobilnego */
    
    /* Główne okno navLinks musi być na wierzchu i mieć pełne, solidne tło */
    #navLinks, .nav-links {
        position: fixed; /* Zmiana z absolute na fixed gwarantuje stabilność */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; /* Zajmuje cały ekran */
        background-color: #ffffff; /* Pełna biel eliminuje prześwitywanie tekstu z tła */
        z-index: 9999; /* Wpycha menu nad absolutnie każdy element na stronie */
        
        /* Flexbox do ładnego wyśrodkowania linków */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        
        /* Płynne otwieranie */
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
    }

    /* Gdy menu jest aktywne - wysuwa się z góry ekranu */
    #navLinks.active, .nav-links.active {
        transform: translateY(0);
    }

    /* Górny pasek z logo i przyciskiem zamknij (X) też musi być widoczny nad menu */
    .navbar, #navbar {
        z-index: 10000; /* Musi być wyżej niż rozwinięte menu, żeby X nie zniknął pod nim */
    }

    /* Przycisk hamburger / X */
    #navToggle, .nav-toggle {
        position: relative;
        z-index: 10001; /* Najwyższa warstwa dla samego przycisku klikalnego */
    }
}