:root {
    --primary-red: #E21E26;
    --dark-red: #B5171D;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    background: transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    height: 70px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.menu-toggle {
    display: none;
}

.logo {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo span {
    font-weight: 300;
    opacity: 0.9;
}

nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

nav a:hover {
    color: var(--primary-red);
}

.nav-cta {
    background: var(--white);
    color: var(--black) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-red);
    color: var(--white) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('assets/img/shop pic.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

/* Subtle motion effect for hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: drift 20s infinite alternate linear;
}

@keyframes drift {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.2) translate(5%, 5%);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 600px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-align: center;
}

.btn-white {
    background: var(--white);
    color: var(--primary-red);
}

.btn-white:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Rental Section */
.rentals {
    padding: 10rem 0;
    background: var(--white);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-title.left {
    text-align: left;
}

.section-title.white {
    color: var(--white);
}

.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.rental-card {
    background: var(--white);
    border: 1px solid #EEE;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.rental-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.card-img {
    height: 300px;
    overflow: hidden;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

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

.card-content {
    padding: 2.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.card-content p {
    color: #666;
    margin-bottom: 2rem;
}

.btn-text {
    text-decoration: none;
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 10rem 0;
    background: var(--light-gray);
}

.about-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-left: 5px solid var(--primary-red);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 800;
}

.feature-item h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 10rem 0;
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 3rem;
    position: relative;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: serif;
    opacity: 0.2;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #444;
}

.customer-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--black);
}

.customer-info span {
    font-size: 0.85rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Section */
.contact {
    padding: 10rem 0;
    background: var(--primary-red);
    color: var(--white);
    text-align: center;
}

.contact-sub {
    font-size: 1.25rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    background: var(--white);
    color: var(--black);
    padding: 3rem 2rem;
    text-decoration: none;
    min-width: 300px;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.contact-card:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info span {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.contact-info strong {
    font-size: 1.4rem;
    font-weight: 700;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--primary-red);
    color: var(--white);
    text-align: center;
}

.section-title.white {
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-sub {
    margin-bottom: 4rem;
    opacity: 0.9;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: var(--black);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
}

.contact-info span {
    display: block;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info strong {
    font-size: 1.2rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

.footer-map h4 {
    margin-bottom: 1.5rem;
}

.map-link {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.map-link:hover {
    border-color: var(--primary-red);
    transform: scale(1.02);
}

.map-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(226, 30, 38, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.map-overlay span {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.map-link:hover .map-overlay {
    opacity: 1;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--black);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-brand p {
    color: #999;
    font-size: 0.95rem;
}

.footer h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    color: #999;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.footer-map .map-link {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.footer-map img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--white);
        position: absolute;
        transition: var(--transition-smooth);
    }

    .menu-toggle span:nth-child(1) { top: 0; }
    .menu-toggle span:nth-child(2) { top: 8px; }
    .menu-toggle span:nth-child(3) { top: 16px; }

    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 8px; }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 8px; }

    .navbar nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--black);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-smooth);
        z-index: 1000;
    }

    .navbar nav.active {
        right: 0;
    }

    .navbar nav a {
        margin: 1.5rem 0;
        font-size: 1.5rem;
    }

    .nav-cta {
        background: var(--primary-red) !important;
        color: var(--white) !important;
    }

    .hero {
        padding-top: 120px;
        align-items: flex-start;
        height: auto;
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .about-flex {
        grid-template-columns: 1fr;
    }

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

    .contact-card {
        min-width: 100%;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
}

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

/* Custom Nut Scrollbar */
.custom-scrollbar {
    position: fixed;
    top: 20px;
    right: 15px;
    bottom: 20px;
    width: 40px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.scroll-track {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.scroll-nut {
    position: absolute;
    width: 35px;
    height: 35px;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.1s linear;
}

.scroll-nut svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transition: filter 0.3s ease;
}

.scroll-nut:hover svg {
    filter: drop-shadow(0 6px 16px rgba(226, 30, 38, 0.5));
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .custom-scrollbar {
        right: 5px;
        width: 30px;
    }

    .scroll-nut {
        width: 25px;
        height: 25px;
    }
}