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

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #000 0%, #a20908 100%);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(162, 9, 8, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2.2rem;
    font-weight: 900;
    color: #a20908;
    text-decoration: none;
    background: linear-gradient(45deg, #a20908, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-menu a:hover {
    color: #ffff00;
    background: rgba(255, 255, 0, 0.1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background: linear-gradient(45deg, #ffff00, #a20908);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Main Content */
.main-content {
    padding-top: 100px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #000 0%, #a20908 50%, #000 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,0,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,0,0.1)"/><circle cx="75" cy="25" r="1" fill="rgba(255,255,0,0.1)"/><circle cx="25" cy="75" r="1" fill="rgba(255,255,0,0.1)"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffff00, #ffffff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 30px rgba(255, 255, 0, 0.3);
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 255, 0, 0.5));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(255, 255, 0, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: white;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, #ffff00, #a20908, #ffff00);
    margin: 2rem auto;
    border-radius: 2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn.primary {
    background: linear-gradient(45deg, #ffff00, #ffd700);
    color: #000;
    border: 2px solid transparent;
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid #ffff00;
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 0, 0.4);
}

.hero-btn.secondary:hover {
    background: #ffff00;
    color: #000;
}

/* Services Container */
.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    gap: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="20" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ffff00;
    box-shadow: 0 25px 50px rgba(162, 9, 8, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.card-content {
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 0, 0.1);
    border: 3px solid #ffff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffff00;
    margin: 0 auto 2rem auto;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(162, 9, 8, 0.2);
    border-color: #a20908;
    color: #a20908;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffff00;
    text-align: center;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
    text-align: center;
    line-height: 1.7;
}

/* Delivery Card Specific */
.delivery-card {
    background: linear-gradient(135deg, rgba(162, 9, 8, 0.3), rgba(255, 68, 68, 0.2));
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #ffff00;
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: #ffff00;
    min-width: 40px;
}

.feature-item strong {
    display: block;
    color: #ffff00;
    font-size: 1.1rem;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Pickup Card Specific */
.pickup-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(51, 51, 51, 0.3));
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pickup-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 0, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ffff00;
}

.benefit-item i {
    color: #ffff00;
    font-size: 1.5rem;
    min-width: 30px;
}

.pickup-visual {
    height: 400px;
    position: relative;
}

.pickup-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #a20908, #ff4444);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.floating-icons {
    position: absolute;
    z-index: 2;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    animation: floatIcon 6s ease-in-out infinite;
}

.floating-icons i:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-icons i:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.logo-background {
    position: absolute;
    font-size: 12rem;
    opacity: 0.1;
    font-weight: 900;
    color: white;
    z-index: 1;
}

/* About Card Specific */
.about-card {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.1), rgba(255, 102, 0, 0.2));
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: #ffff00;
    transform: scale(1.05);
}

.highlight-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffff00;
    margin-bottom: 0.5rem;
}

.highlight-item span {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.video-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #ffff00;
    height: 200px;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: rgba(0, 0, 0, 0.7);
}

.video-play-content {
    text-align: center;
    color: white;
}

.video-play-content i {
    font-size: 3rem;
    color: #ffff00;
    margin-bottom: 0.5rem;
    display: block;
}

/* Service Button */
.service-btn {
    background: linear-gradient(45deg, #ffff00, #ffd700);
    color: #000;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 2rem auto;
}

.service-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 0, 0.4);
    background: linear-gradient(45deg, #a20908, #ff0000);
    color: white;
}

/* Popular Section */
.popular-section {
    background: rgba(0, 0, 0, 0.4);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.popular-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffff00;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: white;
    opacity: 0.8;
    margin-bottom: 3rem;
}

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

.popular-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.popular-item:hover {
    transform: translateY(-10px);
    border-color: #ffff00;
    box-shadow: 0 20px 40px rgba(162, 9, 8, 0.3);
}

.popular-item .item-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #a20908, #ff4444);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
}

.item-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffff00;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.popular-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffff00;
    margin: 1rem;
}

.popular-item p {
    color: white;
    opacity: 0.8;
    margin: 0 1rem 1rem;
    font-size: 0.9rem;
}

.item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #a20908;
    margin: 1rem;
}

.view-menu-btn {
    background: linear-gradient(45deg, #a20908, #ff0000);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.view-menu-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(162, 9, 8, 0.4);
    background: linear-gradient(45deg, #ffff00, #ffd700);
    color: #000;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 4rem 2rem 2rem;
    border-top: 3px solid #ffff00;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,0,0.1)"/><circle cx="90" cy="90" r="1" fill="rgba(255,255,0,0.1)"/><circle cx="90" cy="10" r="0.5" fill="rgba(255,255,0,0.1)"/><circle cx="10" cy="90" r="0.5" fill="rgba(255,255,0,0.1)"/></svg>');
    opacity: 0.5;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.footer-section h3 {
    color: #ffff00;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #a20908;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section i {
    color: #ffff00;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 0, 0.1);
    color: #ffff00;
    border: 2px solid rgba(255, 255, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #ffff00;
    color: #000;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 255, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .popular-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .card-content {
        padding: 2rem;
    }
    
    .pickup-visual {
        height: 300px;
    }
    
    .highlight-number {
        font-size: 2.5rem;
    }
    
    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Additional Animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:nth-child(odd) {
    animation: slideInFromLeft 0.8s ease forwards;
}

.service-card:nth-child(even) {
    animation: slideInFromRight 0.8s ease forwards;
}

.popular-item {
    animation: fadeInUp 0.8s ease forwards;
}

.popular-item:nth-child(2) {
    animation-delay: 0.2s;
}

.popular-item:nth-child(3) {
    animation-delay: 0.4s;
}