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


html {
    
    scroll-behavior: smooth;
    
    
    -webkit-font-smoothing: antialiased;
    
    
    -moz-osx-font-smoothing: grayscale;
    
    
    text-rendering: optimizeLegibility;
    
    
    -webkit-text-size-adjust: 100%;
}


body {
    min-height: 100vh;
    line-height: 1.5;
    
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}


img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}


input, button, textarea, select {
    font: inherit;
    outline: none;
}


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


ul, ol {
    list-style: none;
}

:root {
    --primary-green: #4ade80;
    --fresh-grass: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    --bg-dark: #0a0a0a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
}


.upper-header {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-border);
    padding: 8px 0;
}

.upper-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    padding: 0 20px;
}

.upper-header-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.upper-header-item img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(84%) sepia(29%) saturate(836%) hue-rotate(85deg) brightness(97%) contrast(88%);
}

.upper-header-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.upper-header-item a:hover {
    color: var(--primary-green);
}


header {
    max-width: 1200px;
    margin: 15px auto;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    position: sticky;
    top: 20px;
    z-index: 1000;
}

.header-logo img {
    height: 55px;
    display: block;
}


.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list li {
    position: relative;
}

.nav-list li a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list li a:hover {
    color: var(--primary-green);
}


.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 15px;
    display: none;
}

.nav-list li:hover .dropdown {
    display: block;
}

.dropdown-list {
    background: #151515;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    list-style: none;
    padding: 10px;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown-list li a {
    padding: 10px 15px;
    display: block;
    font-size: 14px;
    border-radius: 8px;
}

.dropdown-list li a:hover {
    background: rgba(74, 222, 128, 0.1);
}


.header-rent-btn {
    background: var(--fresh-grass);
    color: #000;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.header-rent-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.4);
}


.burger {
    display: none;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-main);
    margin: 5px 0;
}


@media (max-width: 992px) {
    header {
        margin: 10px;
        border-radius: 20px;
    }

    .nav {
        display: none; 
    }

    .upper-header-container {
        justify-content: center;
    }

    .header-rent-btn {
        display: none; 
    }

    .burger {
        display: block;
    }
}

@media (max-width: 480px) {
    .upper-header-item:last-child {
        display: none;
    }
}

@media (max-width: 992px) {
    .nav.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    .nav.active .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .nav.active .nav-list li a {
        font-size: 24px;
    }

    .burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


.hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), 
                url('/assets/img/hero.jpg') center/cover no-repeat; 
    overflow: hidden;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}


.hero-left h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-left h2 {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-left p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}


.hero-left-btn {
    display: flex;
    gap: 20px;
}

.hero-left-btn a {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero-left-btn a:first-child {
    background: var(--fresh-grass);
    color: #000;
}

.hero-left-btn a:last-child {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
}

.hero-left-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-left-btn a:first-child:hover {
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.4);
}


.hero-right-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-right-list li {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-right-list li:hover {
    transform: translateX(-10px);
    border-color: rgba(74, 222, 128, 0.5);
}

.hero-right-list img {
    width: 40px;
    height: 40px;
}

.hero-right-list p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}


@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-left-btn {
        justify-content: center;
    }

    .hero-right-list {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-right-list li:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
    }

    .hero-left-btn {
        flex-direction: column;
        gap: 12px;
    }
}


.about-container {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.about-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


.about-container-wrapper img:first-of-type {
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    object-fit: cover;
}


.about-container-text h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.2;
}

.about-container-text p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}


.about-container-list {
    list-style: none;
    margin: 35px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-container-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: var(--glass-bg);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: background 0.3s ease;
}

.about-container-list li:hover {
    background: rgba(74, 222, 128, 0.05);
}

.about-container-list img {
    width: 22px;
    height: 22px;
}

.about-container-list p {
    margin-bottom: 0;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}


.about-container-text a {
    display: inline-block;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.about-container-text a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--fresh-grass);
    transition: width 0.3s ease;
}

.about-container-text a:hover {
    color: #fff;
}

.about-container-text a:hover::after {
    width: 100%;
}


@media (max-width: 992px) {
    .about-container-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-container-wrapper img:first-of-type {
        order: 2; 
    }

    .about-container-text {
        order: 1;
        text-align: center;
    }

    .about-container-list {
        align-items: center;
    }

    .about-container-list li {
        width: 100%;
        max-width: 450px;
    }
}


.why-we {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-we h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 15px;
    color: #fff;
}

.why-we > p {
    font-size: 18px;
    color: var(--primary-green);
    margin-bottom: 60px;
    font-weight: 500;
}


.why-we-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
}


.why-we-list li {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px 25px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-we-list li:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    background: rgba(74, 222, 128, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}


.why-we-list img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.why-we-list h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-we-list p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}


@media (max-width: 1100px) {
    .why-we-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-we-list {
        grid-template-columns: 1fr;
    }
    
    .why-we {
        padding: 60px 15px;
    }
    
    .why-we-list li {
        padding: 30px 20px;
    }
}


.packet-game {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.packet-game-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.packet-game-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 120px; 
}

.packet-game-list li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.packet-game-list li:nth-child(even) .packet-game-text {
    order: 2;
}
.packet-game-list li:nth-child(even) .packet-game-img {
    order: 1;
}


.packet-game-text h3 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
}

.packet-game-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--fresh-grass);
}

.packet-game-text p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.packet-game-text a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.packet-game-text a:hover {
    background: var(--fresh-grass);
    color: #000;
    box-shadow: 0 10px 20px rgba(74, 222, 128, 0.3);
}


.packet-game-img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 450px;
    border: 1px solid var(--glass-border);
}

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

.packet-game-img:hover img {
    transform: scale(1.1);
}


.packet-game-img-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.packet-game-img-text h4 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
}

.packet-game-img-text p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

.packet-game-img-text a {
    font-size: 13px;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 700;
}


@media (max-width: 992px) {
    .packet-game-list {
        gap: 80px;
    }
    
    .packet-game-list li {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .packet-game-list li:nth-child(even) .packet-game-text {
        order: 1;
    }
    .packet-game-list li:nth-child(even) .packet-game-img {
        order: 2;
    }

    .packet-game-text h3::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .packet-game-img {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .packet-game {
        padding: 60px 15px;
    }
    
    .packet-game-text h3 {
        font-size: 28px;
    }
}


.contact-main-rent {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-main-rent h2 {
    font-size: clamp(32px, 5vw, 42px);
    color: #fff;
    margin-bottom: 15px;
}

.contact-main-rent > p {
    color: var(--text-muted);
    margin-bottom: 50px;
}


.reservation-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 30px;
    text-align: left;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-green);
    margin-left: 5px;
}


.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.reservation-form select option {
    background: #1a1a1a;
    color: #fff;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    border-color: var(--primary-green);
    background: rgba(74, 222, 128, 0.05);
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.1);
}


.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.form-checkbox input {
    margin-top: 4px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.form-checkbox a {
    color: var(--primary-green);
    text-decoration: none;
}


.reservation-btn {
    width: 100%;
    padding: 18px;
    background: var(--fresh-grass);
    border: none;
    border-radius: 15px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reservation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.4);
}


.success-message {
    padding: 60px 40px;
    text-align: center;
    background: var(--glass-bg);
    border-radius: 30px;
    border: 1px solid var(--primary-green);
    animation: fadeIn 0.5s ease;
}

.success-message h3 {
    color: var(--primary-green);
    font-size: 28px;
    margin-bottom: 15px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .reservation-form {
        padding: 25px;
    }
}


.faq {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.faq h2 {
    font-size: clamp(32px, 5vw, 42px);
    color: #fff;
    margin-bottom: 15px;
}

.faq > p {
    color: var(--primary-green);
    margin-bottom: 60px;
    font-weight: 500;
}


.faq-list {
    display: grid;
    gap: 30px;
    list-style: none;
    padding: 0;
    text-align: left;
}


.faq-list li {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 35px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-list li:hover {
    border-color: rgba(74, 222, 128, 0.4);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
}

.faq-list h4 {
    font-size: 20px;
    color: #fff;
    line-height: 1.4;
    position: relative;
    padding-left: 25px;
}


.faq-list h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--fresh-grass);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-green);
}

.faq-list p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 15px;
    }
    
    .faq-list {
        grid-template-columns: 1fr;
    }
    
    .faq-list li {
        padding: 25px;
    }
}


footer {
    background: #050505;
    padding: 80px 20px 40px;
    border-top: 1px solid var(--glass-border);
    color: #fff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}


.footer-first .footer-logo img {
    height: 40px;
    margin-bottom: 25px;
}

.footer-first p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 400px;
}


footer h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
}

.footer-second-list,
.footer-third-list {
    list-style: none;
    padding: 0;
}

.footer-second-list li,
.footer-third-list li {
    margin-bottom: 12px;
}

.footer-second-list a,
.footer-third-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-second-list a:hover,
.footer-third-list a:hover {
    color: var(--primary-green);
}


.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    margin-bottom: 40px;
}


.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
}

.footer-disclaimer span {
    display: inline-block;
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-disclaimer h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-first {
        grid-column: span 2;
        text-align: center;
    }
    .footer-first p {
        margin: 0 auto;
    }
}

@media (max-width: 550px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-first {
        grid-column: span 1;
    }
    .footer-disclaimer {
        text-align: center;
    }
}


.services {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-wrapper h1 {
    font-size: clamp(36px, 5vw, 52px);
    color: #fff;
    margin-bottom: 20px;
}

.services-wrapper p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}


.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
}


.services-list li {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.services-list li:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}


.services-list img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.5s ease;
}

.services-list li:hover img {
    transform: scale(1.05);
}


.services-list h3 {
    font-size: 22px;
    color: #fff;
    padding: 25px 25px 10px;
}

.services-list p {
    font-size: 15px;
    color: var(--text-muted);
    padding: 0 25px 25px;
    line-height: 1.6;
    flex-grow: 1;
}


.services-list a {
    display: block;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--primary-green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    border-top: 1px solid var(--glass-border);
}

.services-list li:hover a {
    background: var(--fresh-grass);
    color: #000;
}


@media (max-width: 1024px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .services-wrapper h1 {
        font-size: 32px;
    }

    .services {
        padding: 60px 15px;
    }
}


.services-description {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-description h2 {
    font-size: clamp(32px, 5vw, 42px);
    color: #fff;
    margin-bottom: 15px;
}

.services-description > p {
    color: var(--primary-green);
    margin-bottom: 60px;
    font-weight: 500;
}


.services-description-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    text-align: left;
}


.services-description-list li {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.services-description-list li:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.06);
}


.services-description-list span {
    font-size: 80px;
    font-weight: 900;
    position: absolute;
    top: -4px;
    right: -10px;
    line-height: 1;
    color: var(--primary-green);
    opacity: 0.1; 
    transition: opacity 0.3s ease;
}

.services-description-list li:hover span {
    opacity: 0.25;
}


.services-description-list h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.services-description-list h4 {
    font-size: 14px;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.services-description-list p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}


@media (max-width: 1024px) {
    .services-description-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .services-description-list {
        grid-template-columns: 1fr;
    }
    
    .services-description {
        padding: 60px 15px;
    }

    .services-description-list li {
        padding: 30px;
    }
}


.game-rent {
    padding: 100px 20px;
    background-color: var(--bg-dark); 
}

.game-rent h1 {
    text-align: center;
    font-size: clamp(36px, 5vw, 52px);
    color: #fff;
    margin-bottom: 20px;
}

.game-rent > p {
    text-align: center;
    font-size: 18px;
    color: var(--primary-green); 
    margin-bottom: 60px;
    font-weight: 500;
}

.game-rent-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.game-rent-img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
    border: 1px solid var(--glass-border); 
}

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

.game-rent-img:hover img {
    transform: scale(1.05);
}

.game-rent-img-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.game-rent-img-text-overlay h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 8px;
}

.game-rent-img-text-overlay p {
    color: var(--primary-green); 
    font-size: 14px;
    font-weight: 600;
}


.game-rent-text h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 25px;
}

.game-rent-text p {
    font-size: 17px;
    color: var(--text-muted); 
    line-height: 1.7;
    margin-bottom: 20px;
}

.game-rent-text a {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 35px;
    background: var(--fresh-grass); 
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.game-rent-text a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.4);
}


@media (max-width: 992px) {
    .game-rent-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .game-rent-img {
        height: 400px;
        order: 2;
    }
    
    .game-rent-text {
        order: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .game-rent {
        padding: 60px 15px;
    }
}


.game-rent-advantages {
    padding: 60px 20px 100px;
    background-color: var(--bg-dark);
}

.game-rent-advantages-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
}


.game-rent-advantages-list li {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 25px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-rent-advantages-list li:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
}


.game-rent-advantages-list span {
    font-size: 14px;
    font-weight: 800;
    color: #000;
    background: var(--fresh-grass);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.3);
}

.game-rent-advantages-list h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}

.game-rent-advantages-list p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 992px) {
    .game-rent-advantages-list {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .game-rent-advantages-list li {
        text-align: center;
        align-items: center;
    }
}


.rent {
    padding: 100px 20px;
    background-color: #0a0a0a;
    text-align: center;
}

.rent h1 {
    font-size: clamp(36px, 5vw, 52px);
    color: #ffffff;
    margin-bottom: 20px;
}

.rent > p {
    font-size: 18px;
    color: #a1a1aa;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}


.rent-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
}


.rent-list li {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rent-list li:hover {
    transform: translateY(-12px);
    border-color: #4ade80;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(74, 222, 128, 0.1);
}


.rent-list img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.rent-list li:hover img {
    transform: scale(1.08);
}


.rent-list h3 {
    font-size: 24px;
    color: #ffffff;
    padding: 30px 25px 15px;
    font-weight: 700;
}

.rent-list p {
    font-size: 15px;
    color: #a1a1aa;
    padding: 0 25px 30px;
    line-height: 1.6;
    flex-grow: 1;
}


.rent-list a {
    margin: 0 25px 30px;
    padding: 15px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.rent-list a:hover {
    box-shadow: 0 10px 20px rgba(74, 222, 128, 0.4);
    filter: brightness(1.1);
}


@media (max-width: 1024px) {
    .rent-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .rent-list {
        grid-template-columns: 1fr;
    }
    
    .rent {
        padding: 60px 15px;
    }
    
    .rent-list li {
        max-width: 400px;
        margin: 0 auto;
    }
}


.why-need-rent-with-us {
    padding: 100px 20px;
    background-color: #0a0a0a;
    text-align: center;
}

.why-need-rent-with-us h2 {
    font-size: clamp(32px, 5vw, 42px);
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-need-rent-with-us > p {
    color: #4ade80; 
    font-size: 18px;
    margin-bottom: 60px;
    font-weight: 500;
}


.why-need-rent-with-us-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    text-align: left;
}


.why-need-rent-with-us-list li {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-need-rent-with-us-list li:hover {
    transform: translateY(-8px);
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.03);
}


.why-need-rent-with-us-list span {
    font-size: 13px;
    font-weight: 800;
    color: #000000;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(74, 222, 128, 0.2);
}

.why-need-rent-with-us-list h3 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

.why-need-rent-with-us-list p {
    font-size: 14px;
    color: #a1a1aa;
    line-height: 1.6;
}


@media (max-width: 1100px) {
    .why-need-rent-with-us-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-need-rent-with-us-list {
        grid-template-columns: 1fr;
    }
    
    .why-need-rent-with-us {
        padding: 60px 15px;
    }
}


.gallery {
    padding: 100px 20px;
    background-color: #050505;
    text-align: center;
    overflow: hidden;
}

.gallery h1 {
    font-size: clamp(36px, 5vw, 52px);
    color: #ffffff;
    margin-bottom: 20px;
}

.gallery > p {
    font-size: 18px;
    color: #a1a1aa;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}


.gallery-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    perspective: 1000px; 
}


.gallery-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    filter: grayscale(0.3) brightness(0.8);
}


.gallery-wrapper img:hover {
    filter: grayscale(0) brightness(1.1);
    transform: scale(1.02) rotateX(2deg) rotateY(-2deg);
    border-color: #4ade80; 
    box-shadow: 
        0 0 20px rgba(74, 222, 128, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.6);
}


@media (max-width: 1024px) {
    .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .gallery-wrapper {
        grid-template-columns: 1fr;
    }
    .gallery-wrapper img {
        height: 300px;
    }
}


.gallery-wrapper img {
    background-image: linear-gradient(
        135deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.05) 50%, 
        rgba(255,255,255,0) 100%
    );
    background-size: 200% 200%;
    animation: shine 5s infinite linear;
}

@keyframes shine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.privacy-policy {
    padding: 90px 1% 100px; 
    max-width: 1000px;
    margin: 0 auto;
    background: #0a0a0a;
    color: var(--text-muted);
    line-height: 1.8;
}

.privacy-policy h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: #fff;
    margin-bottom: 40px;
    font-family: var(--font-heading);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2); 
    padding-bottom: 20px;
}

.privacy-policy h3 {
    font-size: 1.4rem;
    color: var(--accent-color); 
    margin: 45px 0 20px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-policy p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 300;
}

.privacy-policy strong {
    color: #fff; 
    font-weight: 600;
}


.privacy-policy br + strong {
    display: inline-block;
    margin-top: 10px;
}


.privacy-policy a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
}

.privacy-policy a:hover {
    border-bottom-color: var(--accent-color);
    filter: brightness(1.2);
}


@media (max-width: 768px) {
    .privacy-policy {
        padding: 70px 5% 60px;
    }
    
    .privacy-policy h1 {
        font-size: 1.8rem;
    }

    .privacy-policy h3 {
        font-size: 1.2rem;
    }
}

.contact {
    padding: 90px 5% 100px;
    
    max-width: 1400px;
    margin: 0 auto;
}

.contact h1 {
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.contact > p {
    text-align: center;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}


.contact-left h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 40px;
    font-family: var(--font-heading);
}

.contact-left-list {
    list-style: none;
    padding: 0;
}

.contact-left-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-left-list img {
    width: 45px;
    height: 45px;
    padding: 10px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 12px;
    filter: invert(1); 
}

.contact-left-list-text h4 {
    color: var(--accent-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.contact-left-list-text p {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-nip-and-regon {
    margin-top: 50px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
}


.contact-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

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

.form-group label {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.form-checkbox {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.form-checkbox a { color: var(--accent-color); }

.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #000;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
}


.form-success-message {
    text-align: center;
    padding: 40px 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.form-success-message h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 60px; }
    .contact-form { padding: 30px; }
}

.contact-map {
    width: 100%;
    padding: 0;
    line-height: 0; 
    background: #000;
}

.map-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.map-wrapper iframe {
    transition: all 0.5s ease;
    display: block;
}


.contact-map::before,
.contact-map::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

.contact-map::before {
    top: 0;
    background: linear-gradient(to bottom, #0a0a0a, transparent);
}

.contact-map::after {
    bottom: 0;
    background: linear-gradient(to top, #0a0a0a, transparent);
}


@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 350px;
    }
}

.about {
    padding: 120px 5%;
    background: #0a0a0a;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.about h1 {
    font-size: clamp(2.1rem, 6vw, 4rem);
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.about > p {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 80px;
    font-weight: 300;
}

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


.about-cont img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 
                0 0 40px rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease;
}

.about-cont img:hover {
    transform: scale(1.02);
}


.about-cont-text h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.about-cont-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.about-cont-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}


@media (max-width: 992px) {
    .about-cont {
        grid-template-columns: 1fr;
    }
    
    .about-cont-text {
        order: 2;
    }
    
    .about-cont img {
        order: 1;
        max-height: 400px;
        object-fit: cover;
    }
}

.safety {
    padding: 80px 5%;
    background: #0a0a0a;
    position: relative;
}

.safety-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.safety-list li {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}


.safety-list li::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.safety-list li:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(197, 160, 89, 0.05);
}

.safety-list li:hover::before {
    opacity: 1;
}

.safety-list img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.safety-list li:hover img {
    transform: scale(1.1) rotate(5deg);
}

.safety-list h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.safety-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}


@media (max-width: 768px) {
    .safety {
        padding: 60px 20px;
    }
    
    .safety-list li {
        padding: 30px 20px;
    }
}

.go-rent {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #0a0a0a, #000);
    position: relative;
    overflow: hidden;
}


.go-rent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.go-rent-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    backdrop-filter: blur(10px);
}

.go-rent-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.go-rent-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.go-rent-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.go-rent-text p:last-of-type {
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}


.go-rent-text a {
    display: inline-block;
    padding: 20px 45px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.go-rent-text a:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.4);
    background: #fff; 
}


@media (max-width: 992px) {
    .go-rent-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
        text-align: center;
    }

    .go-rent-wrapper img {
        height: 300px;
    }

    .go-rent-text a {
        width: 100%;
    }
}


:root {
    --accent: #c5a059; 
    --dark-bg: #0a0a0a;
    --glass-bg: rgba(20, 20, 20, 0.95);
}


.age-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(15px);
}

.age-popup {
    background: var(--dark-bg);
    border: 1px solid #4ade80;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 0 50px rgba(197, 160, 89, 0.1);
}

.age-logo img { width: 150px; margin-bottom: 20px; }

.age-popup h2 { color: #fff; margin-bottom: 15px; font-family: serif; }

.age-popup p { color: #ccc; margin-bottom: 30px; }

.age-buttons { display: flex; gap: 15px; }

.age-btn-yes, .age-btn-no, .cookie-btn-accept, .cookie-btn-reject {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid #4ade80;
}

.age-btn-yes, .cookie-btn-accept { background: #4ade80; color: #000; }

.age-btn-no, .cookie-btn-reject { background: transparent; color: #4ade80; }

.age-btn-yes:hover, .cookie-btn-accept:hover { filter: brightness(1.2); }

.age-btn-no:hover, .cookie-btn-reject:hover { background: rgba(197, 160, 89, 0.1); }


.cookie-overlay {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9998;
    display: none; 
}

.cookie-content {
    background: var(--glass-bg);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cookie-text h4 { color: #fff; margin-bottom: 5px; }

.cookie-text p { color: #aaa; font-size: 14px; margin: 0; }

.cookie-text a { color: #4ade80; text-decoration: none; }

.cookie-buttons { display: flex; gap: 10px; min-width: 250px; }

@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-buttons { width: 100%; }
}

.logo {
  border-radius: 8px;
}

@media (max-width: 385px) {
    .age-buttons {
        flex-direction: column;
    }
}

.age-logo img {
    margin: 0 auto;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .footer-logo img {
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .about-container-wrapper img:first-of-type {
        margin: 0 auto;
    }

    .about-container-list p {
        text-align: left;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}