/* CSS Variables */
:root {
    --fire-engine-red: #d62828;
    --prussian-blue: #003049;
    --orange-wheel: #f77f00;
    --xanthous: #fcbf49;
    --vanilla: #eae2b7;
    --charcoal: #37474f;
    --eire-black: #1e1e1e;
    --offwhite: #ffffff;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--offwhite);
    color: var(--eire-black);
    line-height: 1.6;
    overflow-x: hidden;
}

button, input, select, textarea {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.cover {
    background-image: url(../img/bg2.png), url(../img/bg.jpg);
    background-position: center, left top;	
    background-size: cover, cover;	
    background-repeat: no-repeat, no-repeat;
}

.text-white {
    color: white !important;
}
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--fire-engine-red);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fire-engine-red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--fire-engine-red), var(--orange-wheel));
    color: var(--offwhite);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(214, 40, 40, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-toggle.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--fire-engine-red);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Menu Close Button */
.menu-close {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--fire-engine-red);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1002;
}

.menu-close:hover {
    background: var(--orange-wheel);
    transform: rotate(90deg);
}

.menu-close::before,
.menu-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--offwhite);
}

.menu-close::before {
    transform: rotate(45deg);
}

.menu-close::after {
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--prussian-blue) 0%, var(--charcoal) 100%);
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/4393426/pexels-photo-4393426.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--offwhite);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-text h1 span {
    color: var(--xanthous);
    display: block;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--vanilla);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn-primary {
    background: linear-gradient(135deg, var(--fire-engine-red), var(--orange-wheel));
    color: var(--offwhite);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(214, 40, 40, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--offwhite);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--offwhite);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--offwhite);
    color: var(--prussian-blue);
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Benefits Section */
.benefits {
    padding: 6rem 5%;
    background: var(--offwhite);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--prussian-blue);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--charcoal);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--offwhite);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 48, 73, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--fire-engine-red), var(--orange-wheel));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--prussian-blue);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--charcoal);
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--vanilla) 0%, var(--offwhite) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.pricing-card {
    background: var(--offwhite);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    transform: scale(1.08);
    background: linear-gradient(135deg, var(--prussian-blue), var(--charcoal));
    color: var(--offwhite);
    border: 2px solid var(--xanthous);
}

.pricing-card.featured:hover {
    transform: scale(1.12) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--fire-engine-red), var(--orange-wheel));
    color: var(--offwhite);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--prussian-blue);
}

.pricing-card.featured h3 {
    color: var(--xanthous);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--fire-engine-red);
    margin: 1.5rem 0;
}

.pricing-card.featured .pricing-price {
    color: var(--xanthous);
}

.pricing-price span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
}

.pricing-card.featured .pricing-price span {
    color: var(--vanilla);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--charcoal);
}

.pricing-card.featured .pricing-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--vanilla);
}

.pricing-features li::before {
    content: '✓';
    color: var(--fire-engine-red);
    font-weight: 700;
    margin-right: 0.8rem;
}

.pricing-card.featured .pricing-features li::before {
    color: var(--xanthous);
}

.pricing-button {
    margin-top: 2rem;
    width: 100%;
    background: linear-gradient(135deg, var(--fire-engine-red), var(--orange-wheel));
    color: var(--offwhite);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pricing-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.4);
}

.pricing-card.featured .pricing-button {
    background: linear-gradient(135deg, var(--xanthous), var(--orange-wheel));
    color: var(--eire-black);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 5%;
    background: var(--offwhite);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--offwhite);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--fire-engine-red);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--xanthous);
}

.testimonial-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--prussian-blue);
    margin-bottom: 0.3rem;
}

.testimonial-info p {
    color: var(--charcoal);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--charcoal);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-rating {
    color: var(--xanthous);
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* CTA Final Section */
.cta-final {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--fire-engine-red), var(--orange-wheel));
    text-align: center;
    color: var(--offwhite);
}

.cta-final h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-final p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-final-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--offwhite);
    color: var(--fire-engine-red);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--eire-black);
    color: var(--vanilla);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-section h3 {
    color: var(--xanthous);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: var(--vanilla);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--xanthous);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(234, 226, 183, 0.2);
    color: var(--vanilla);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--offwhite);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--fire-engine-red);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 350px;
        background: var(--offwhite);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links.active .menu-close {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-final h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
