@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Performance Optimizations */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Optimize repaints and reflows */
*,
*::before,
*::after {
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.4;
}

/* Thailand flag stripes animation - OPTIMIZED */
.flag-stripes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0.03;
    will-change: transform;
    pointer-events: none;
}

.stripe {
    width: 100%;
    height: 20%;
    animation: slideStripes 30s infinite linear;
    transform: translateZ(0); /* Hardware acceleration */
}

.stripe:nth-child(1), .stripe:nth-child(5) { background: #ED1C24; }
.stripe:nth-child(2), .stripe:nth-child(4) { background: #fff; }
.stripe:nth-child(3) { background: #241D4F; }

@keyframes slideStripes {
    0% { transform: translate3d(-100%, 0, 0); }
    100% { transform: translate3d(100%, 0, 0); }
}

/* Header with magazine-style layout */
.header {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #f1f5f9 100%);
}

.header-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Top navigation stripe */
.top-stripe {
    height: 8px;
    background: linear-gradient(90deg, #ED1C24 0%, #ED1C24 20%, #fff 20%, #fff 40%, #241D4F 40%, #241D4F 60%, #fff 60%, #fff 80%, #ED1C24 80%, #ED1C24 100%);
    animation: waveStripe 4s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0); /* Hardware acceleration */
}

@keyframes waveStripe {
    0%, 100% { transform: translate3d(0, 0, 0) scaleX(1); }
    50% { transform: translate3d(0, 0, 0) scaleX(1.02); }
}

/* Main title layout */
.title-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
    align-items: start;
}

.title-left {
    font-family: 'Playfair Display', serif;
}

.title-main {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
}

.title-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: #ED1C24;
    animation: expandLine 2s ease-out;
}

@keyframes expandLine {
    0% { width: 0; }
    100% { width: 60%; }
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.steering-icon {
    width: 80px;
    height: 80px;
    border: 3px solid #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: rotate 15s linear infinite;
    will-change: transform;
    transform: translateZ(0); /* Hardware acceleration */
}

@keyframes rotate {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    100% { transform: translate3d(0, 0, 0) rotate(360deg); }
}

.rental-tag {
    background: #1a1a1a;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    align-self: flex-start;
}

/* Neon Thai banner section - OPTIMIZED */
.banner-section {
    background: linear-gradient(45deg, #FF00FF, #00FFFF, #F7DC6F, #FF6B6B, #4ECDC4);
    background-size: 300% 300%;
    animation: neonGradient 8s ease-in-out infinite;
    color: white;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    will-change: background-position;
    transform: translateZ(0); /* Hardware acceleration */
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 6s infinite;
    will-change: transform;
    transform: translateZ(0);
}

@keyframes neonGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(50%, 0, 0); }
}

.banner-text {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.origin-text {
    font-size: 1.2rem;
    text-align: right;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #e5e7eb;
    margin: 2rem 0;
}

.service-item {
    background: white;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    background: #f8fafc;
    transform: translateY(-5px);
}

.service-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-subtitle {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

/* Main tuk-tuk image section */
.tuktuk-showcase {
    position: relative;
    margin: 4rem 0;
    text-align: center;
}

.info-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: #2563eb;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    z-index: 5;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tuktuk-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 2rem auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: tuktukBounce 8s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    will-change: transform;
    transform: translateZ(0); /* Hardware acceleration */
}

.tuktuk-image:hover {
    transform: translate3d(0, 0, 0) scale(1.05) rotate(2deg);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.25));
}

@keyframes tuktukBounce {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    25% { transform: translate3d(0, -10px, 0) rotate(1deg); }
    50% { transform: translate3d(0, -5px, 0) rotate(0deg); }
    75% { transform: translate3d(0, -15px, 0) rotate(-1deg); }
}

/* Price badge */
.price-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #ED1C24;
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    animation: pulse 3s infinite;
    cursor: pointer;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
    will-change: transform;
    transform: translateZ(0); /* Hardware acceleration */
}

@keyframes pulse {
    0% { transform: translate3d(0, 0, 0) scale(1); box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.4); }
    70% { transform: translate3d(0, 0, 0) scale(1.05); box-shadow: 0 0 0 10px rgba(237, 28, 36, 0); }
    100% { transform: translate3d(0, 0, 0) scale(1); box-shadow: 0 0 0 0 rgba(237, 28, 36, 0); }
}

.price-text {
    font-size: 0.8rem;
    line-height: 1.2;
    text-align: center;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-title {
    text-align: center;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
}

.pricing-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #ED1C24;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ED1C24, #241D4F);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid #ED1C24;
    transform: scale(1.05);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-category {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    color: #ED1C24;
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: #666;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: #10b981;
    font-weight: 900;
}

.pricing-btn {
    width: 100%;
    background: linear-gradient(135deg, #ED1C24, #dc2626);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(237, 28, 36, 0.3);
}

/* Cennik Section */
.cennik-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.cennik-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cennik-title {
    text-align: center;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
}

.cennik-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #FF00FF, #00FFFF);
}

.cennik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cennik-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.cennik-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, #FF00FF, #00FFFF, #F7DC6F);
}

.cennik-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.cennik-card.featured {
    border: 3px solid #FF00FF;
    transform: scale(1.05);
}

.cennik-header {
    text-align: center;
    margin-bottom: 1rem;
}

.cennik-category {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cennik-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ED1C24;
    margin-bottom: 0.5rem;
}

.vat {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.cennik-period {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.cennik-purpose {
    background: linear-gradient(45deg, #FF00FF, #00FFFF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cennik-features {
    list-style: none;
    margin-bottom: 2rem;
}

.cennik-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cennik-features li:last-child {
    border-bottom: none;
}

.cennik-features .check {
    color: #10b981;
    font-weight: 900;
}

.cennik-btn {
    width: 100%;
    background: linear-gradient(45deg, #FF00FF, #00FFFF);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cennik-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 255, 0.3);
}

/* Nasz TukTuk Section */
.nasz-tuktuk-section {
    background: linear-gradient(135deg, #fff 0%, #f1f5f9 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.nasz-tuktuk-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ED1C24 0%, #ED1C24 20%, #fff 20%, #fff 40%, #241D4F 40%, #241D4F 60%, #fff 60%, #fff 80%, #ED1C24 80%, #ED1C24 100%);
}

.nasz-tuktuk-container {
    max-width: 1200px;
    margin: 0 auto;
}

.nasz-tuktuk-title {
    text-align: center;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    position: relative;
}

.nasz-tuktuk-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #FF00FF, #00FFFF);
    margin: 0.75rem auto 0;
}

.nasz-tuktuk-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 3rem;
}

.specs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.specs-image {
    position: relative;
    text-align: center;
    position: sticky;
    top: 100px;
}

.specs-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: tuktukBounce 8s ease-in-out infinite;
    transform: translateZ(0);
}

.specs-badge {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #FF00FF, #00FFFF);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
    white-space: nowrap;
}

.badge-icon {
    font-size: 1.3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.spec-card {
    background: white;
    border-radius: 15px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FF00FF, #00FFFF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: transparent;
}

.spec-card:hover::before {
    opacity: 1;
}

.spec-card-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: #86efac;
}

.spec-card-highlight .spec-value {
    color: #16a34a;
    font-weight: 700;
}

.spec-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 45px;
    text-align: center;
}

.spec-info {
    flex: 1;
    min-width: 0;
}

.spec-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.spec-value small {
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
}

/* O nas Section */
.onas-section {
    background: #1a1a1a;
    color: #f1f5f9;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.onas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF00FF, #00FFFF, #F7DC6F, #FF6B6B, #4ECDC4);
}

.onas-container {
    max-width: 900px;
    margin: 0 auto;
}

.onas-title {
    text-align: center;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #ED1C24;
    margin-bottom: 0.5rem;
}

.onas-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #FF00FF, #00FFFF);
    margin: 0.75rem auto 0;
}

.onas-lead {
    text-align: center;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.onas-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.onas-block {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.onas-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FF00FF, #00FFFF);
}

.onas-block:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(5px);
    border-color: rgba(255,255,255,0.15);
}

.onas-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1rem;
}

.onas-block p:last-child {
    margin-bottom: 0;
}

.onas-intro {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: white !important;
    font-style: italic;
}

.onas-block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.onas-block-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.onas-block-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(45deg, #FF00FF, #00FFFF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.onas-block strong {
    color: #F7DC6F;
}

.onas-block-cta {
    background: linear-gradient(135deg, rgba(237,28,36,0.1), rgba(255,0,255,0.1));
    border-color: rgba(237,28,36,0.2);
    text-align: center;
}

.onas-block-cta::before {
    background: linear-gradient(180deg, #ED1C24, #FF00FF);
}

.onas-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.onas-list li {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2.5rem;
}

.onas-list li::before {
    content: '🛺';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
}

.onas-list li:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.onas-list li span {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.onas-statement {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    border: 2px solid rgba(237,28,36,0.3);
}

.onas-statement p {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: rgba(255,255,255,0.9) !important;
}

.onas-highlight {
    background: linear-gradient(45deg, #ED1C24, #FF00FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
}

.onas-invite {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: white !important;
    margin-top: 1.5rem;
}

/* Gallery Section */
.gallery-section {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-title {
    text-align: center;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    margin-bottom: 3rem;
    color: #ED1C24;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 16/10;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact section */
.contact-section {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ED1C24;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-details {
    font-size: 1.1rem;
    line-height: 1.8;
}

.website-info {
    text-align: right;
}

.social-links {
    margin-top: 1.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-fb {
    background: #1877F2;
    color: #fff;
}

.social-fb:hover {
    background: #0d65d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.social-ig:hover {
    background: linear-gradient(45deg, #e08020, #d45a30, #c91f38, #b81e5a, #a81580);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.social-links span {
    font-size: 1.2rem;
    margin-left: 1rem;
}

/* Floating elements - OPTIMIZED */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

.floating-element {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.05;
    animation: floatAround 40s infinite linear;
    transform: translateZ(0); /* Hardware acceleration */
    will-change: transform;
}

.floating-element:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { left: 20%; animation-delay: -8s; }
.floating-element:nth-child(3) { left: 30%; animation-delay: -16s; }
.floating-element:nth-child(4) { left: 70%; animation-delay: -24s; }
.floating-element:nth-child(5) { left: 80%; animation-delay: -32s; }

@keyframes floatAround {
    0% { transform: translate3d(0, 100vh, 0) rotate(0deg); }
    25% { transform: translate3d(100px, 75vh, 0) rotate(90deg); }
    50% { transform: translate3d(-50px, 50vh, 0) rotate(180deg); }
    75% { transform: translate3d(150px, 25vh, 0) rotate(270deg); }
    100% { transform: translate3d(0, -100px, 0) rotate(360deg); }
}

/* Interactive hover effects - OPTIMIZED */
.interactive {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.interactive:hover {
    transform: translate3d(0, -3px, 0);
}

/* Navigation Bar */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.nav-logo .logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu li a {
    text-decoration: none;
    color: #241D4F;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.nav-menu li a:hover {
    color: #ED1C24;
}

/* Custom button styling */
.cta-button {
    background: linear-gradient(135deg, #ED1C24, #dc2626);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 2rem auto;
    display: block;
    border-radius: 10px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 28, 36, 0.4);
}

/* Map styling */
.contact-map {
    width: 100%;
    height: 300px;
    margin: 1.5rem 0;
    border-radius: 10px;
    overflow: hidden;
}

/* OLD FORM STYLES - COMMENTED OUT */
/*
.contact-form {
    background: #2d3748;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #ED1C24;
    text-align: center;
}

.contact-form label {
    font-size: 1rem;
    color: #edf2f4;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #edf2f4;
    border-radius: 5px;
    background: #4a5568;
    color: #fff;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ED1C24;
    outline: none;
}

.contact-form .form-error {
    color: #f56565;
    font-size: 0.875rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.contact-form .form-success {
    color: #48bb78;
    font-size: 0.875rem;
    margin-top: 1rem;
    text-align: center;
}
*/

/* NEW MODERN FORM STYLES */
.contact-form {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.contact-form h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
    text-align: center;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
    z-index: 1;
}

.contact-form label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    background: rgba(255,255,255,0.95);
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-error {
    color: #fff;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    background: rgba(239, 68, 68, 0.85);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    display: none;
}

.form-error:not(:empty) {
    display: block;
}

.form-success {
    color: #bbf7d0;
    font-size: 1rem;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 1;
    background: rgba(34, 197, 94, 0.2);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* RODO Checkbox */
.form-group-rodo {
    margin-bottom: 1.5rem;
}

.rodo-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
    padding-left: 2.5rem;
    line-height: 1.5;
}

.rodo-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.rodo-checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.95);
    border-radius: 5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.rodo-label input[type="checkbox"]:checked ~ .rodo-checkmark {
    background: #ED1C24;
}

.rodo-checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.rodo-label input[type="checkbox"]:checked ~ .rodo-checkmark::after {
    display: block;
}

.rodo-text {
    font-size: 0.88rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
    text-transform: uppercase;
}

.rodo-text a {
    color: #F7DC6F;
    text-decoration: underline;
    font-weight: 800;
    transition: color 0.2s;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.rodo-text a:hover {
    color: #fff;
}

.rodo-info {
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.rodo-info small {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    display: block;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.contact-form .cta-button {
    background: linear-gradient(135deg, #ED1C24, #dc2626);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
    width: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(237, 28, 36, 0.3);
}

.contact-form .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(237, 28, 36, 0.4);
}

/* Phone input with country prefix */

.phone-input-container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.country-prefix {
    flex: 0 0 120px; /* Do not grow, do not shrink, base width 120px */
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.95);
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.custom-prefix-input {
    flex: 0 0 80px; /* Do not grow, do not shrink, base width 80px */
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.95);
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.phone-main-input {
    flex: 1 1 auto; /* Grow, shrink, and base on available space */
}

.country-prefix:focus,
.custom-prefix-input:focus {
    outline: none;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


/* Update contact form background with neon colors */
.contact-form {
    background: linear-gradient(135deg, #FF00FF 0%, #00FFFF 50%, #F7DC6F 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

/* Directions link styling */
.directions-link {
    text-align: center;
    margin-top: 1.5rem;
}

.directions-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ED1C24, #dc2626);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(237, 28, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.directions-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.directions-btn:hover::before {
    left: 100%;
}

.directions-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(237, 28, 36, 0.4);
}

.directions-btn i {
    margin-right: 0.5rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 90%;
    width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.4rem 0;
    }
    
    .nav-container { 
        flex-direction: column; 
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .nav-menu { 
        gap: 0.4rem;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
    }
    
    .nav-menu li a {
        font-size: 0.75rem;
        white-space: nowrap;
        padding: 0.25rem 0.3rem;
    }
    
    .nav-logo .logo-img { 
        height: 32px; 
    }
    
    .title-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Hide elements on mobile */
    .steering-icon,
    .rental-tag {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cennik-grid {
        grid-template-columns: 1fr;
    }
    
    .nasz-tuktuk-section {
        padding: 3rem 1rem;
    }
    
    .nasz-tuktuk-title {
        font-size: 2.2rem;
    }
    
    .nasz-tuktuk-subtitle {
        font-size: 0.95rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }
    
    .specs-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .specs-image {
        position: static;
    }
    
    .specs-image img {
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
    
    .specs-badge {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 1rem auto 0;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .spec-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
        gap: 0.5rem;
    }
    
    .spec-card::before {
        width: 100%;
        height: 3px;
        top: 0;
        left: 0;
    }
    
    .spec-icon {
        font-size: 1.5rem;
        width: auto;
    }
    
    .spec-info {
        text-align: center;
    }
    
    .spec-label {
        font-size: 0.7rem;
    }
    
    .spec-value {
        font-size: 1rem;
        word-break: break-word;
    }
    
    .spec-value small {
        display: block;
        font-size: 0.8rem;
    }
    
    /* O nas mobile */
    .onas-section {
        padding: 3rem 1rem;
    }
    
    .onas-title {
        font-size: 2.2rem;
    }
    
    .onas-lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .onas-block {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .onas-block:hover {
        transform: none;
    }
    
    .onas-block p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .onas-intro {
        font-size: 1.1rem !important;
    }
    
    .onas-block-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .onas-block-header h3 {
        font-size: 1.3rem;
    }
    
    .onas-block-icon {
        font-size: 2rem;
    }
    
    .onas-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .onas-list li {
        font-size: 0.95rem;
        padding: 0.6rem 0.75rem 0.6rem 2.25rem;
    }
    
    .onas-statement {
        padding: 1.25rem;
    }
    
    .onas-statement p {
        font-size: 1rem !important;
    }
    
    .onas-highlight {
        font-size: 1.1rem !important;
    }
    
    .onas-invite {
        font-size: 1.1rem !important;
    }
    
    .onas-content {
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .phone-input-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .country-prefix {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-menu li a {
        font-size: 0.65rem;
        padding: 0.2rem 0.2rem;
    }
    
    .nav-logo .logo-img {
        height: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured,
    .cennik-card.featured {
        transform: none;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .nasz-tuktuk-section {
        padding: 2rem 0.75rem;
    }
    
    .nasz-tuktuk-title {
        font-size: 1.8rem;
    }
    
    .nasz-tuktuk-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .specs-image img {
        max-width: 220px;
    }
    
    .spec-card {
        padding: 1rem 0.75rem;
    }
    
    .spec-icon {
        font-size: 1.3rem;
    }
    
    .spec-value {
        font-size: 0.95rem;
    }
    
    .onas-section {
        padding: 2rem 0.75rem;
    }
    
    .onas-title {
        font-size: 1.8rem;
    }
    
    .onas-lead {
        font-size: 1rem;
    }
    
    .onas-block {
        padding: 1.25rem 1rem;
    }
    
    .onas-block-header h3 {
        font-size: 1.15rem;
    }
    
    .onas-statement {
        padding: 1rem;
    }
}
