* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #e63946;
    --secondary-color: #457b9d;
    --dark-blue: #1d3557;
    --light-bg: #f8f9fa;
    --text-color: #333;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

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

/* Header & Navbar */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

nav a {
    text-decoration: none;
    color: #555;
    margin-left: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 25px;
}

.btn-nav:hover {
    background: #c32f3a;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(29, 53, 87, 0.85), rgba(29, 53, 87, 0.95)), url('https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 140px 0 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.3;
}

.hero-content h1 span {
    color: #a8dadc;
}

.hero-content p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: #c32f3a;
}

.btn-secondary {
    background: #25d366;
    color: #fff;
}

.btn-secondary:hover {
    background: #1ebd58;
}

/* General Section Styles */
.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* Grid System */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Features */
.features {
    background: var(--light-bg);
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #666;
}

/* Packages */
.packages {
    background: #fff;
}

.pkg-card {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.pkg-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(230,57,70,0.15);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 4px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.pkg-header h3 {
    font-size: 20px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.pkg-header .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.pkg-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.pkg-features li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.pkg-features li::before {
    content: '✓';
    color: #2b9348;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pkg-features li.disabled {
    color: #aaa;
    text-decoration: line-through;
}

.pkg-features li.disabled::before {
    content: '✕';
    color: #e63946;
}

.btn-pkg {
    background: #f1faee;
    color: var(--dark-blue);
    border: 1px solid var(--secondary-color);
    width: 100%;
}

.btn-pkg:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Steps */
.steps {
    background: var(--light-bg);
}

.step-card {
    text-align: center;
    position: relative;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.step-card p {
    font-size: 14px;
    color: #666;
}

/* CTA Section / Form */
.cta-section {
    background: var(--dark-blue);
    color: #fff;
    text-align: center;
}

.cta-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-container p {
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    width: 100%;
}

.cta-form button {
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 30px;
}

/* Footer */
footer {
    background: #111;
    color: #777;
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    border-top: 1px solid #222;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    nav a {
        margin: 0 10px;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-content p {
        font-size: 15px;
    }
    .pkg-card.popular {
        transform: scale(1);
    }
}
