/* Stats Band */
.stats-band {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.stat-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.stat-item p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Add animation for numbers */
.stat-item h3 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

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

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

/* Floating animation for stats */
.stat-item {
    animation: float 6s ease-in-out infinite;
}

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

.stat-item:nth-child(3) {
    animation-delay: -4s;
}

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

/* Add number counter animation */
.stat-number {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    animation: countUp 2s ease forwards;
    animation-delay: 0.5s;
}

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

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 30px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }
}

:root {
    --primary-color: #FFD700;
    --secondary-color: #1A1A1A;
    --accent-color: #FF6B6B;
    --text-color: #2D3436;
    --light-gray: #F8F9FA;
    --border-color: #E9ECEF;
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #FFFFFF;
}

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

/* Header Styles */
.header-top {
    background-color: var(--primary-color);
    padding: 12px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a, .social-media a {
    color: var(--secondary-color);
    text-decoration: none;
    margin-right: 24px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-info a:hover, .social-media a:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.header-bottom {
    background-color: #FFFFFF;
    padding: 20px 0;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo img{
    width:200px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 48px;
}

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    transition: var(--transition);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 16px;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

.btn-outline:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: url('assets/hero.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

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

    .hero::before {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Section Title Styles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.8;
}

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

.about-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.about-features li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.2rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: -20px;
    left: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    z-index: 0;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        max-width: 100%;
    }

    .about-text {
        text-align: center;
    }

    .about-features li {
        justify-content: center;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 48px;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

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

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

/* Shipping Fees Section */
.shipping-fees {
    padding: 100px 0;
    background-color: white;
}

.search-container {
    max-width: 500px;
    margin: 0 auto 40px;
}

#citySearch {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

#citySearch:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

table {
    width: 100%;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

th {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 20px;
    font-weight: 600;
}

td {
    padding: 16px 20px;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

tr:last-child td {
    border-bottom: none;
}

/* Signup Form */
.signup {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFF 100%);
}

.signup-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.signup-form {
    flex: 1;
    max-width: 500px;
}

.signup-image {
    flex: 1;
    position: relative;
}

.signup-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.signup-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    z-index: -1;
}

.signup-image:hover img {
    transform: translate(-5px, -5px);
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.form-group select {
    cursor: pointer;
}

.signup .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(0, 200, 0, 0.1);
    color: #008000;
    border: 1px solid #008000;
}

.form-message.error {
    display: block;
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid #ff0000;
}

@media (max-width: 991px) {
    .signup-wrapper {
        flex-direction: column-reverse;
    }

    .signup-form {
        max-width: 100%;
    }

    .signup-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .signup-image::before {
        right: 0;
        left: 0;
    }
}

/* Thank You Page */
.thankyou-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0.05) 100%);
}

.thankyou-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thankyou-content i.fa-check-circle {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.thankyou-content h1 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.thankyou-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.next-steps {
    text-align: left;
    background: rgba(255,215,0,0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.next-steps h2 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    margin: 15px 0;
    color: var(--text-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.next-steps li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .thankyou-section {
        padding: 60px 0;
    }

    .thankyou-content {
        padding: 30px 20px;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .next-steps {
        padding: 20px;
    }
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.footer-section a {
    color: #CCC;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 12px;
}

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

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-right {
        display: none;
    }
    
    .header-bottom .container {
        padding: 16px;
    }
    
    .header-bottom .container {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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