:root {
    --primary-color: #2E5A88;
    --secondary-color: #FF6B35;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color), #1a365d);
    --wave-color: #2E5A88;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.call-button {
    display: flex;
    align-items: center;
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.call-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.phone-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.phone-number {
    font-weight: 600;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 8px;
    font-weight: 600;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Header Styles */
.header {
    background: var(--gradient);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 36px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-call {
    display: none;
}

/* Hero Section Base Styles */
.hero-section {
    padding: 8rem 5% 5rem;
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}

.floating-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    opacity: 0.1;
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--white);
    background: var(--secondary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button i {
    font-size: 1.2rem;
}

.cta-button.call-now {
    background: linear-gradient(135deg, var(--primary-color), #1a365d);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1),
                -20px -20px 60px rgba(255, 255, 255, 0.8);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image img:hover {
    transform: translateY(-10px);
    box-shadow: 25px 25px 70px rgba(0, 0, 0, 0.15),
                -25px -25px 70px rgba(255, 255, 255, 0.9);
}

.shipping-badge {
    background: linear-gradient(135deg, var(--secondary-color), #ff8f35);
    color: var(--white);
    padding: 1.2rem 2rem;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
    animation: pulse 2s infinite;
    width: auto;
    text-align: left;
}

.shipping-badge span {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.shipping-badge p {
    font-size: 1rem;
    margin: 0.5rem 0 0;
    opacity: 0.9;
}

/* Products Section */
.products-section {
    padding: 5rem 5%;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.section-shape {
    position: absolute;
    width: 100%;
    height: 150px;
    background: var(--light-bg);
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.products-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1) translateZ(20px);
}

.product-info {
    padding: 1rem;
}

.product-card h3 {
    padding: 1rem;
    color: var(--primary-color);
}

.product-card p {
    padding: 0 1rem;
    color: #666;
}

.product-actions {
    display: flex;
    justify-content: center;
    padding: 0;
    margin-top: 1rem;
}

.product-call {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: var(--secondary-color);
    color: var(--white);
    width: 100%;
}

.product-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.product-call i {
    margin-right: 5px;
}

.price-tag, .shipping-tag {
    position: absolute;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    z-index: 1;
}

.price-tag {
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
}

.shipping-tag {
    top: 4rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.8rem;
}

/* Features Section */
.features-section {
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.curved-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.05;
    clip-path: circle(70% at 50% 50%);
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 5%;
    background: var(--white);
    position: relative;
}

.contact-methods {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-call {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 15px;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

.contact-call:hover {
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Footer Waves */
.footer {
    position: relative;
    background: var(--gradient);
    padding-top: 150px;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"></path></svg>') repeat-x;
    background-size: 1200px 100px;
    animation: wave 10s linear infinite;
    opacity: 0.2;
}

.wave1 {
    animation: wave 10s linear infinite;
    z-index: 1000;
    opacity: 0.2;
    animation-delay: 0s;
    bottom: 0;
}

.wave2 {
    animation: wave 8s linear infinite;
    z-index: 999;
    opacity: 0.1;
    animation-delay: -5s;
    bottom: 10px;
}

.wave3 {
    animation: wave 6s linear infinite;
    z-index: 998;
    opacity: 0.05;
    animation-delay: -2s;
    bottom: 15px;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1200px);
    }
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(255,107,53,0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(255,107,53,0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(255,107,53,0.3);
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .announcement-bar {
        display: none;
    }

    .header {
        position: fixed;
        top: 0;
        padding: 0.8rem 5%;
        clip-path: none;
        background: var(--gradient);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav {
        padding: 0;
    }

    .logo {
        font-size: 1.4rem;
        letter-spacing: 0.3px;
    }

    .mobile-call-button {
        display: inline-block;
        padding: 0.6rem 1.2rem;
        background: var(--secondary-color);
        color: var(--white);
        text-decoration: none;
        border-radius: 50px;
        font-size: 0.9rem;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
        transition: all 0.3s ease;
    }

    .mobile-call-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    }

    .hero-section {
        padding: 8rem 5% 5rem;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        order: 2;
        padding: 0;
    }

    .hero-image {
        order: 1;
        margin: 0 -5%;
    }

    .hero-image img {
        border-radius: 0;
        max-height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .hero-content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-links {
        display: none;
    }

    .mobile-call {
        display: block;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .floating-call {
        bottom: 20px;
        right: 20px;
    }

    .call-button {
        padding: 10px 20px;
    }

    .phone-number {
        display: none;
    }

    .product-card {
        margin-bottom: 2rem;
    }

    .price-tag, .shipping-tag {
        font-size: 0.8rem;
        padding: 3px 8px;
    }

    .footer {
        padding-top: 100px;
    }

    .wave {
        height: 50px;
        background-size: 600px 50px;
    }

    .product-actions {
        display: flex;
        justify-content: center;
    }

    .product-call {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
    }

    .form-group input, .form-group textarea {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    }

    .form-group i {
        font-size: 0.9rem;
    }

    .shipping-badge {
        width: auto;
        text-align: left;
        padding: 1rem 1.5rem;
        margin: 0 auto 2rem;
    }

    .shipping-badge span {
        justify-content: flex-start;
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.7rem 1rem;
    }

    .logo {
        font-size: 0.9rem;
        letter-spacing: 0.2px;
    }

    .mobile-call-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero-section {
        padding: 6rem 1rem 3rem;
        min-height: auto;
    }

    .hero-content {
        padding: 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        margin: 0 -1rem;
    }

    .hero-image img {
        max-height: 250px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem;
        justify-content: center;
    }

    .shipping-badge {
        padding: 0.8rem 1.2rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .shipping-badge span {
        font-size: 1rem;
    }

    .shipping-badge p {
        font-size: 0.9rem;
        margin: 0.3rem 0 0;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .floating-shape {
        width: 150px;
        height: 150px;
        top: -30px;
        right: -30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-card {
        margin: 0.5rem 0;
    }

    .product-image {
        height: 200px;
    }

    .price-tag, .shipping-tag {
        font-size: 0.75rem;
        padding: 3px 6px;
    }

    .features-section {
        padding: 3rem 1rem;
        grid-template-columns: 1fr;
    }

    .feature {
        padding: 1.5rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .form-group input, .form-group textarea {
        padding: 0.7rem 0.7rem 0.7rem 2.2rem;
        font-size: 0.9rem;
    }

    .form-group i {
        font-size: 0.8rem;
        left: 0.8rem;
    }

    .submit-button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .footer {
        padding-top: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .wave {
        height: 30px;
        background-size: 480px 30px;
    }

    .product-call {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .header {
        padding: 0.6rem 0.8rem;
    }

    .logo {
        font-size: 1rem;
        letter-spacing: 0.1px;
    }

    .mobile-call-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .hero-section {
        padding: 5rem 1rem 2rem;
    }

    .hero-content {
        padding: 0.5rem 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-image img {
        max-height: 200px;
    }

    .shipping-badge {
        padding: 0.7rem 1rem;
    }

    .shipping-badge span {
        font-size: 0.9rem;
    }

    .shipping-badge p {
        font-size: 0.8rem;
    }
}

/* Fix for devices with notches */
@supports (padding: env(safe-area-inset_top)) {
    .header {
        padding-top: calc(1rem + env(safe-area-inset-top));
        padding-left: calc(5% + env(safe-area-inset-left));
        padding-right: calc(5% + env(safe-area-inset-right));
    }
}

/* Animation Enhancements */
.feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Form Styling */
.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    padding-top: 2rem;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(46, 90, 136, 0.1);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer Links Enhancement */
.footer-section {
    color: rgba(255, 255, 255, 0.9);
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-section i {
    color: var(--secondary-color);
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-section a:hover {
    color: var(--secondary-color);
    transform: translateX(8px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Add loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: circle(150% at 50% 50%);
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.loading.hide {
    clip-path: circle(0% at 50% 50%);
}

/* Add scroll indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
    border: 2px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    z-index: 1000;
}

.scroll-indicator::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scrollIndicator 2s infinite;
}

@keyframes scrollIndicator {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

@media (max-width: 360px) {
    .logo {
        font-size: 1.2rem;
        letter-spacing: 0.1px;
    }

    .hero-section {
        padding: 5rem 1rem 2rem;
    }

    .hero-content {
        margin-top: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-top: 0.5rem;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .product-card {
        margin: 0.3rem 0;
    }

    .product-image {
        height: 180px;
    }

    .feature {
        padding: 1.2rem;
    }

    .form-group input, .form-group textarea {
        padding: 0.6rem 0.6rem 0.6rem 2rem;
        font-size: 0.85rem;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .wave {
        height: 30px;
        background-size: 480px 30px;
    }

    .product-call {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Brands Section */
.brands-section {
    padding: 3rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.brands-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
}

.brands-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    background: linear-gradient(90deg, var(--white) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, var(--white) 100%);
}

.brands-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200px * 14);
}

.brand-item {
    width: 200px;
    padding: 1rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-logo {
    width: 120px;
    height: 120px;
    background: var(--light-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.brand-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.brand-name {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    text-align: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 7));
    }
}

/* Add hover pause effect */
.brands-container:hover .brands-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .brands-section {
        padding: 2rem 0;
    }

    .brands-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .brand-item {
        width: 160px;
    }

    .brand-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .brands-section {
        padding: 1.5rem 0;
    }

    .brands-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .brand-item {
        width: 140px;
    }

    .brand-logo {
        width: 90px;
        height: 90px;
    }

    .brand-name {
        font-size: 0.8rem;
    }
}

/* About Section */
.about-section {
    padding: 5rem 5%;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-highlights {
    display: grid;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.highlight-text h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.highlight-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 145px;
    right: 12px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 5%;
    }

    .about-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-description {
        text-align: center;
        font-size: 1rem;
    }

    .highlight-item {
        padding: 1.2rem;
        gap: 1rem;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
    }

    .highlight-icon i {
        font-size: 1.2rem;
    }

    .highlight-text h3 {
        font-size: 1.1rem;
    }

    .highlight-text p {
        font-size: 0.9rem;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 1.2rem;
    }

    .experience-badge .years {
        font-size: 2rem;
    }

    .experience-badge .text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 1rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .highlight-item {
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }

    .highlight-icon {
        width: 35px;
        height: 35px;
    }

    .highlight-icon i {
        font-size: 1rem;
    }

    .experience-badge {
        bottom: 120px;
        right: 10px;
        padding: .6rem;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }

    .experience-badge .text {
        font-size: 0.8rem;
    }
}

/* Policy Pages Styles */
.policy-page {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--light-bg);
}

.policy-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.policy-container h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.policy-container h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.policy-section h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.policy-section p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul, 
.policy-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-section li {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.policy-section .contact-info {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.policy-section .contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.policy-section .contact-info i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Policy Pages Responsive Styles */
@media (max-width: 768px) {
    .policy-page {
        padding-top: 60px;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: var(--gradient);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .policy-container {
        margin: 1rem;
        padding: 1.5rem;
        border-radius: 10px;
    }

    .policy-container h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-page {
        padding-top: 50px;
    }

    .policy-container {
        margin: 0.8rem;
        padding: 1rem;
    }

    .policy-container h1 {
        font-size: 1.8rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
    }

    .policy-section ul, 
    .policy-section ol {
        margin-left: 1rem;
    }

    .policy-section .contact-info {
        padding: 1rem;
    }
}

/* Fix for devices with notches */
@supports (padding: env(safe-area-inset-top)) {
    .policy-page {
        padding-top: calc(80px + env(safe-area-inset-top));
    }
    
    .header {
        padding-top: max(1rem, env(safe-area-inset-top));
    }
}

/* Parts Categories Section */
.parts-categories-section {
    padding: 5rem 5%;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.category-content {
    padding: 2rem;
    position: relative;
}

.category-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.category-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.category-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-content ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #555;
}

.category-content ul li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.category-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.savings-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.used-parts .category-content {
    background: linear-gradient(135deg, rgba(46,90,136,0.05) 0%, rgba(255,107,53,0.05) 100%);
}

.bulk-orders .category-content {
    background: linear-gradient(135deg, rgba(46,90,136,0.03) 0%, rgba(255,255,255,1) 100%);
}

@media (max-width: 768px) {
    .parts-categories-section {
        padding: 3rem 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .category-content {
        padding: 1.5rem;
    }

    .category-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .parts-categories-section {
        padding: 2rem 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-content {
        padding: 1.2rem;
    }

    .category-content h3 {
        font-size: 1.3rem;
    }

    .category-content ul li {
        font-size: 0.9rem;
    }

    .category-cta {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
} 