:root {
    --primary-color: #003366;
    /* Deep Blue */
    --primary-dark: #002244;
    --accent-color: #C5A059;
    /* Gold */
    --accent-light: #E5C580;
    --text-color: #333333;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --danger-color: #e74c3c;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

input,
button,
textarea,
select {
    font-family: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

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

.text-white {
    color: var(--white);
}

section {
    padding: 80px 0;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.95), rgba(0, 34, 68, 0.9)), url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 100px;
    /* Offset for missing header if needed */
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.headline {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline .highlight {
    color: var(--accent-color);
    display: block;
    font-size: 4rem;
}

.subheadline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-light));
    color: var(--primary-dark);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.6);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(197, 160, 89, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

.trust-badges {
    margin-top: 3rem;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.badge-item i {
    color: var(--accent-color);
}

/* PROBLEM SECTION */
.problem-section {
    background-color: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.problem-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--danger-color);
}

.icon-cross {
    font-size: 2rem;
    margin-bottom: 15px;
}

.problem-card p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* SOLUTION SECTION */
.solution-section {
    background-color: var(--light-bg);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 1;
}

.solution-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.solution-card h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.solution-card ul {
    list-style: none;
    text-align: left;
}

.solution-card ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.solution-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* RESULTS SECTION */
.results-section {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
}

.results-section .section-title {
    color: var(--white);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 60px;
    text-align: center;
}

.stat-box {
    padding: 20px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author strong {
    display: block;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* PACKAGES SECTION */
.packages-section {
    background-color: var(--white);
}

.table-responsive {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 800px;
}

.pricing-table th,
.pricing-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.pricing-table tr:hover {
    background-color: #f9f9f9;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    background: #fdfdfd;
}

.price-row td {
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.btn-table {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-table:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* BONUS SECTION */
.bonus-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.bonus-content {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.bonus-list {
    list-style: none;
    margin-bottom: 30px;
}

.bonus-list li {
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.bonus-list li:last-child {
    border-bottom: none;
}

.bonus-list .icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.bonus-total {
    background: #fff9e6;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ffeeba;
}

.bonus-total p {
    font-size: 1.3rem;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.new-price {
    color: var(--danger-color);
    font-size: 1.5rem;
}

/* CTA SECTION */
.cta-section {
    background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.9);
}

.cta-wrapper {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkbox-group label {
    display: block;
    margin-bottom: 10px;
}

.checkbox-options {
    display: flex;
    gap: 15px;
}

.checkbox-options label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-family: var(--font-body);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 800;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #d4b06a;
}

.cta-alternative {
    margin-top: 20px;
    color: var(--white);
    font-size: 1.1rem;
}

.cta-alternative a {
    color: var(--accent-light);
    text-decoration: none;
}

/* FAQ SECTION */
.faq-section {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px;
    background: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #eee;
}

.faq-question.active {
    background: var(--primary-color);
    color: var(--white);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.faq-answer p {
    padding: 20px 0;
}

/* FOOTER SECTION */
.footer-section {
    background: var(--primary-dark);
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 20px;
}

.footer-info h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.footer-info ul {
    list-style: none;
}

.footer-info ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-info ul li i {
    color: var(--accent-color);
    width: 20px;
    margin-top: 5px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 5px;
}

.footer-bottom {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    color: #ccc;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Responsive specific adjustments */
@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
    }

    .headline .highlight {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .checkbox-options {
        flex-direction: column;
        gap: 5px;
    }

    .hero-section {
        padding-top: 60px;
    }
}

/* HEADER STYLES */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.site-header.scrolled {
    background: rgba(0, 51, 102, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

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

.logo a {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-header {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-header:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
}

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* RESPONSIVE HEADER */
@media (max-width: 991px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--primary-dark);
        padding-top: 80px;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
        /* Ensure it's clickable */
    }
}