@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-red: #DC2626;
    --secondary-red: #B91C1C;
    --primary-silver: #9CA3AF;
    --secondary-silver: #6B7280;
    --dark-black: #44484f;
    --pure-white: #ffffffcd;
    --light-gray: #F8FAFC;
    --medium-gray: #64748B;
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    --gradient-secondary: linear-gradient(135deg, var(--primary-silver), var(--secondary-silver));
    --gradient-hero: linear-gradient(135deg, #373f4b, var(--dark-black));
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-red: 0 10px 25px -5px rgba(220, 38, 38, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: white;
    overflow-x: hidden;
    padding-top: 70px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--pure-white);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled,
.navbar.page-navbar {
    background: var(--pure-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo .logo {
    display: block;
    text-decoration: none;
}

.nav-logo .logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--secondary-red);
}

.login-btn {
    background: var(--gradient-primary);
    color: var(--pure-white) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    font-size: 0.9rem;
}

.admin-login-btn {
    background: linear-gradient(135deg, #44484f, #2d3035) !important;
    border: 1px solid var(--primary-red);
    font-size: 0.85rem !important;
    padding: 0.5rem 0.8rem !important;
}

.admin-login-btn:hover {
    background: var(--gradient-primary) !important;
    border-color: var(--secondary-red);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--pure-white);
    max-width: 800px;
    padding: 2rem;
    margin: 0 auto;
}

.video-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.video-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1s forwards;
    color: rgba(255, 255, 255, 0.9);
}

.video-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Page Hero */
.page-hero {
    background: var(--gradient-hero);
    color: var(--pure-white);
    padding: 8rem 0 4rem 0;
    text-align: center;
    margin-top: 0;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--pure-white);
    box-shadow: var(--shadow-red);
    border: none;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, var(--secondary-red), var(--primary-red));
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.btn-secondary:hover {
    background: var(--pure-white);
    color: var(--primary-silver);
}

.btn-outline {
    background: transparent;
    color: var(--primary-silver);
    border: 2px solid var(--primary-silver);
}

.btn-outline:hover {
    background: var(--primary-silver);
    color: var(--pure-white);
}

/* Hero Carousel */
.hero-carousel {
    flex: 1;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    transition: all 0.8s ease;
    animation: imageFloat 6s ease-in-out infinite;
}

.carousel-slide.active img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

@keyframes imageFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1) rotate(0deg);
        filter: brightness(1);
    }
    25% { 
        transform: translateY(-5px) scale(1.01) rotate(0.5deg);
        filter: brightness(1.05);
    }
    75% { 
        transform: translateY(-8px) scale(1.02) rotate(-0.5deg);
        filter: brightness(1.1);
    }
}

.slide-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: var(--pure-white);
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.carousel-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--pure-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-nav button:hover {
    background: var(--primary-red);
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-red);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--light-gray);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin: 1rem 0;
    text-align: center;
}

/* Contact Form Container */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.contact-form-container h2 {
    text-align: center;
    color: var(--dark-black);
    margin-bottom: 1rem;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.contact-form-container p {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-black);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: var(--gradient-secondary);
    color: var(--pure-white);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: var(--pure-white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* New Arrivals Enhancements */
.arrival-features {
    margin: 1.5rem 0;
}

.arrival-features ul {
    list-style: none;
    padding: 0;
}

.arrival-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.arrival-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: var(--primary-red);
    font-weight: 600;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
}

.product-card {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.card-image {
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    padding: 10px;
}

.product-card:hover .card-image img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.1) saturate(1.2);
}

.card-image img {
    animation: productPulse 4s ease-in-out infinite;
}

@keyframes productPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: brightness(1) saturate(1);
    }
    33% { 
        transform: scale(1.01) rotate(0.5deg);
        filter: brightness(1.03) saturate(1.1);
    }
    66% { 
        transform: scale(1.02) rotate(-0.5deg);
        filter: brightness(1.05) saturate(1.2);
    }
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-black);
}

.card-content p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.specs {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
    width: 100%;
}

.specs li {
    padding: 0.25rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1rem;
}

.specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* New Arrivals Section */
.new-arrivals {
    padding: 5rem 0;
    background: var(--light-gray);
    color: var(--dark-black);
}

.new-arrivals h2 {
    color: var(--dark-black);
}

.arrival-card {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    max-width: 500px;
    width: 100%;
}

.arrival-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.arrival-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.arrival-content {
    padding: 2rem;
    color: var(--dark-black);
}

.arrival-content h3 {
    color: var(--dark-black);
    margin: 1rem 0 0.5rem 0;
}

.arrival-content p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.new-arrivals h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.arrival-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.arrival-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arrival-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: var(--pure-white);
}

.badge {
    background: var(--primary-red);
    color: var(--pure-white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.arrival-content h3 {
    margin: 1rem 0 0.5rem 0;
    font-size: 1.3rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light-gray);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-black);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.enquiry-form {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.enquiry-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-black);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 100%;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-black);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

.info-item i {
    color: var(--primary-red);
    width: 20px;
}

.enquiry-form {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.enquiry-form h3 {
    margin-bottom: 2rem;
    color: var(--dark-black);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #D1D5DB;
    background: var(--pure-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239CA3AF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
}

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

.radio-group {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 2rem;
    margin-bottom: 1rem;
    cursor: pointer;
    padding: 0.6rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    background: #FAFAFA;
    transition: all 0.3s ease;
}

.radio-group:hover {
    border-color: var(--primary-red);
    background: var(--pure-white);
}

.radio-group input[type="radio"] {
    width: auto;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-red);
}

.radio-group input[type="radio"]:checked + span {
    color: var(--primary-red);
    font-weight: 600;
}

.radio-group span {
    color: var(--medium-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.enquiry-form .btn-primary {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
}

.enquiry-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Footer */
.footer {
    background: var(--dark-black);
    color: var(--pure-white);
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section h3 span {
    color: var(--primary-red);
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
    max-width: 180px;
    object-fit: contain;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid #676c74;
    padding-top: 1rem;
    text-align: center;
    color: var(--medium-gray);
}

/* Parallax Effect */
.parallax {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-title {
        font-size: 2.5rem;
    }
    
    .video-subtitle {
        font-size: 1.1rem;
    }
    
    .video-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--pure-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-carousel {
        height: 50vh;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        margin: 1rem;
        padding: 2rem;
    }
    
    .contact-content {
        margin: 1rem;
    }
    
    .enquiry-form {
        padding: 1.5rem;
    }
    
    .arrivals-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-row,
    .benefit-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .benefit-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* PPF Features Section */
.ppf-features {
    padding: 5rem 0;
    background: var(--pure-white);
}

.ppf-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: var(--pure-white);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-black);
    font-weight: 600;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* PPF Benefits Section */
.ppf-benefits {
    padding: 5rem 0;
    background: var(--light-gray);
}

.ppf-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-black);
}

.benefits-list {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--pure-white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.benefit-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--pure-white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.benefit-row:hover .benefit-icon {
    transform: scale(1.05);
}

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-black);
    font-weight: 600;
}

.benefit-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 1.1rem;
}

.benefits-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Enhanced Animation Classes - HoHo Film Style */
* {
    scroll-behavior: smooth;
}

/* Smooth Page Transitions */
body {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Parallax and Scroll Effects */
.parallax-element {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Smooth Reveal Animations */
[data-aos] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Fade Up Animation */
[data-aos="fade-up"] {
    transform: translateY(60px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Slide Animations */
[data-aos="slide-left"] {
    transform: translateX(-60px);
}

[data-aos="slide-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="slide-right"] {
    transform: translateX(60px);
}

[data-aos="slide-right"].aos-animate {
    transform: translateX(0);
}

/* Scale Animation */
[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Flip Animation */
[data-aos="flip-up"] {
    transform: perspective(1000px) rotateX(45deg);
}

[data-aos="flip-up"].aos-animate {
    transform: perspective(1000px) rotateX(0deg);
}

/* Stagger Animation for Grid Items */
.products-grid .product-card {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.products-grid .product-card:nth-child(1) { transition-delay: 0.1s; }
.products-grid .product-card:nth-child(2) { transition-delay: 0.2s; }
.products-grid .product-card:nth-child(3) { transition-delay: 0.3s; }
.products-grid .product-card:nth-child(4) { transition-delay: 0.4s; }
.products-grid .product-card:nth-child(5) { transition-delay: 0.5s; }
.products-grid .product-card:nth-child(6) { transition-delay: 0.6s; }
.products-grid .product-card:nth-child(7) { transition-delay: 0.7s; }
.products-grid .product-card:nth-child(8) { transition-delay: 0.8s; }

/* Enhanced Hover Effects */
.product-card {
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Smooth Navigation Animation */
.navbar {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-menu a {
    position: relative;
    overflow: visible;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Scrolling Text Animation */
.scrolling-text {
    overflow: hidden;
    white-space: nowrap;
    animation: typewriter 3s steps(40) 0.5s both;
}

@keyframes typewriter {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Text Change Animation */
.text-change {
    opacity: 0;
    transform: translateY(20px);
    animation: textFadeIn 0.8s ease-out forwards;
}

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

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Smooth Carousel Transitions */
.carousel-slide {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide img {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Enhanced Video Hero Animation */
.video-content {
    animation: heroContentFloat 6s ease-in-out infinite;
}

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

/* Smooth Scroll Indicator */
.scroll-indicator {
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-50%) scale(1.1);
        opacity: 1;
    }
}

/* Enhanced Form Animations */
.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
}

/* Magnetic Effect for Interactive Elements */
.btn, .product-card, .feature-card {
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Smooth Page Transitions */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-transition.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Intersection Observer Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Smooth Image Loading */
img {
    transition: opacity 0.3s ease;
}

img.loading {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Enhanced Mobile Animations */
@media (max-width: 768px) {
    [data-aos] {
        transition-duration: 0.6s;
    }
    
    .product-card:hover {
        transform: translateY(-10px);
    }
    
    .btn:hover {
        transform: translateY(-2px) scale(1.01);
    }
}