/* --- 1. GLOBAL STYLES & RESET --- */
:root {
    --color-primary: #D9001D; /* A bold, strong red/crimson for attention */
    --color-secondary: #2C3E50; /* A deep navy/charcoal for professionalism */
    --color-text-dark: #333333;
    --color-text-light: #ffffff;
    --color-bg-light: #f9f9f9;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
}

/* --- 2. BUTTONS & CTA --- */
.button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
}

.primary-cta {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border: 2px solid var(--color-primary);
    font-size: 1.1em;
}

.primary-cta:hover {
    background-color: #A00015; /* Darker Red */
    transform: translateY(-2px);
}

.secondary-cta {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    border: 2px solid var(--color-secondary);
    font-size: 1.1em;
}

.secondary-cta:hover {
    background-color: #1a2734; /* Darker Navy */
    transform: translateY(-2px);
}

/* --- 3. HERO SECTION STYLES --- */
.hero {
    background: var(--color-secondary); /* Dark background for high contrast */
    color: var(--color-text-light);
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    color: var(--color-text-light);
    font-size: 3em;
    margin-bottom: 15px;
}

.hero .tagline {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1em;
    margin-bottom: 10px;
}

.hero .sub-tagline {
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 30px;
}

/* --- 4. CORE BENEFITS SECTION STYLES --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.benefit-card {
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 1.4em;
    margin-top: 15px;
}

.icon-large {
    font-size: 3em;
    color: var(--color-primary);
}

/* --- 5. PACKAGES SECTION STYLES --- */
.package-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.package-card h3 {
    font-size: 1.6em;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.package-ideal {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.package-card ul {
    list-style: none;
    padding-left: 0;
}

.package-card ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.package-card ul li:last-child {
    border-bottom: none;
}

.featured-package {
    border: 3px solid var(--color-secondary); /* Highlight the most appealing package */
    box-shadow: 0 0 15px rgba(44, 62, 80, 0.1);
}

/* --- 6. LOGISTICS SECTION STYLES --- */
.logistics-section {
    text-align: center;
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.logistics-grid i {
    font-size: 2.5em;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

/* --- 7. FINAL CTA BAR --- */
.cta-bar {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 30px 0;
}

.cta-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}

.cta-content p {
    font-size: 1.3em;
    font-weight: 700;
    margin: 10px;
}

.contact-number {
    font-size: 1.1em !important;
    font-weight: 400 !important;
}

/* --- 8. FOOTER --- */
footer {
    background: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* --- 9. MOBILE RESPONSIVENESS (Media Query) --- */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2.2em;
    }

    .hero .sub-tagline {
        font-size: 1.2em;
    }

    .cta-content {
        flex-direction: column;
    }

    .cta-content a, .cta-content p {
        width: 100%;
        margin: 10px 0;
    }
}