:root {
    --customs-primary: #1a472a;
    --customs-secondary: #2d7a4f;
    --customs-accent: #f59e0b;
    --customs-light: #f8f9fa;
    --customs-dark: #0f2419;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: var(--customs-light);
}



/* Hero Section */
.customs-hero-section {
    background: linear-gradient(135deg, rgba(0,40,85,0.65) 0%, rgba(0,61,130,0.9) 100%),
                url('../../main.PNG');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.customs-hero-content {
    position: relative;
    z-index: 2;
    animation: customsFadeInUp 1s ease-out;
}

.customs-hero-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.customs-hero-description {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Tracking Form */
.customs-tracking-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    animation: customsScaleIn 0.8s ease-out;
}

.customs-tracking-input {
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.customs-tracking-input:focus {
    border-color: var(--customs-secondary);
    box-shadow: 0 0 0 4px rgba(0,102,204,0.1);
    outline: none;
}

.customs-tracking-button {
    background: linear-gradient(135deg, var(--customs-secondary) 0%, #0052a3 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,102,204,0.3);
}

.customs-tracking-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,102,204,0.4);
}

.customs-help-links {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.customs-help-link {
    color: var(--customs-secondary);
    text-decoration: none;
    margin-right: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.customs-help-link:hover {
    color: var(--customs-primary);
    transform: translateX(5px);
}

/* Alert Banner */
.customs-alert-banner {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    padding: 1rem;
    border-left: 4px solid var(--customs-accent);
    border-radius: 8px;
    margin: 2rem 0;
    animation: customsPulse 2s infinite;
}

.customs-alert-text {
    color:rgb(133, 75, 4);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Service Cards */
.customs-services-section {
    padding: 4rem 0;
}

.customs-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--customs-primary);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

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

.customs-service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    animation: customsFadeInUp 0.6s ease-out;
}

.customs-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--customs-secondary);
}

.customs-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--customs-secondary) 0%, #0052a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.customs-service-card:hover .customs-service-icon {
    transform: rotate(360deg) scale(1.1);
}

.customs-service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--customs-primary);
    text-align: center;
    margin-top: 1rem;
    text-transform: capitalize;
}

/* News Section */
.customs-news-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.customs-news-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--customs-secondary);
    animation: customsSlideInLeft 0.6s ease-out;
}

.customs-news-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.customs-news-date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.customs-news-category {
    color: var(--customs-secondary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.customs-news-title {
    color: var(--customs-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.customs-news-title:hover {
    color: var(--customs-secondary);
}

/* Social Feed */
.customs-social-feed {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    max-height: 600px;
    overflow-y: auto;
}

.customs-social-post {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    animation: customsFadeIn 0.6s ease-out;
}

.customs-social-post:last-child {
    border-bottom: none;
}

.customs-social-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.customs-social-author {
    font-weight: 700;
    color: var(--customs-primary);
}

.customs-social-time {
    color: #6c757d;
    font-size: 0.85rem;
}

.customs-social-content {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.customs-social-hashtag {
    color: var(--customs-secondary);
    text-decoration: none;
    font-weight: 600;
}

.customs-social-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Featured Content */
.customs-featured-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    animation: customsScaleIn 0.6s ease-out;
}

.customs-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.customs-featured-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--customs-primary) 0%, var(--customs-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.customs-featured-content {
    padding: 1.5rem;
}

.customs-featured-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--customs-primary);
    margin-bottom: 1rem;
}

.customs-featured-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.customs-featured-button {
    background: var(--customs-secondary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.customs-featured-button:hover {
    background: var(--customs-primary);
    color: white;
    transform: translateX(5px);
}

/* Quick Links */
.customs-quicklinks-section {
    padding: 3rem 0;
    background: white;
}

.customs-quicklink-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: customsFadeInUp 0.6s ease-out;
}

.customs-quicklink-card:hover {
    background: linear-gradient(135deg, var(--customs-secondary) 0%, #0052a3 100%);
    color: white;
    transform: scale(1.05);
}

.customs-quicklink-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.customs-quicklink-card:hover .customs-quicklink-icon {
    animation: customsBounce 0.6s ease;
}

.customs-quicklink-title {
    font-size: 1rem;
    font-weight: 600;
}

/* Animations */
@keyframes customsSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes customsSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes customsScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes customsFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes customsPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .customs-nav-menu {
        display: none;
    }

    .customs-mobile-toggle {
        display: block;
    }

    .customs-hero-title {
        font-size: 2rem;
    }

    .customs-tracking-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .customs-hero-title {
        font-size: 1.8rem;
    }

    .customs-hero-description {
        font-size: 1rem;
    }

    .customs-section-title {
        font-size: 1.6rem;
    }

    .customs-service-card {
        margin-bottom: 1.5rem;
    }

    .customs-contact-floating {
        bottom: 1rem;
        right: 1rem;
    }

    .customs-contact-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .customs-hero-section {
        padding: 2rem 0;
    }

    .customs-tracking-card {
        padding: 1rem;
    }

    .customs-tracking-input,
    .customs-tracking-button {
        font-size: 0.9rem;
    }

    .customs-help-link {
        display: block;
        margin: 0.5rem 0;
    }

    .customs-logo-text {
        font-size: 1rem;
    }

    .customs-gov-text {
        font-size: 0.8rem;
    }
}