:root {
    --primary: #5f0f40;
    --primary-dark: #d7641e;
    --bg-light: #fffaf5;
    --text-dark: #0F4C5C;
    --card-bg: #fff;
    --highlight-bg: #fff1e6;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2 {
    font-family: "Marhey", sans-serif;
}
a {
    text-decoration:none;
    color:var(--text-dark);
}

header {
    text-align: center;
    padding: 5rem 1rem 4rem;
    background: url("hero.jpg") no-repeat center center/cover;
    color: white;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

header p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: auto;
}

section {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1rem;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-dark);
}

.steps,
.packages,
.addons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
}

#packages .card:hover {
    cursor: pointer;
}

.card h3 {
    margin-top: 0;
}

/* About Us split section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.about-text h2 {
    text-align: left;
}

/* Highlight Medium Package */
.best-value {
    border: 2px solid var(--primary);
    position: relative;
    background: var(--highlight-bg);
    transform: scale(1.05);
    z-index: 2;
}

.badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--primary);
    color: white;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.why-choose {
    padding: 4rem 1rem;
}

.card .btn-primary {
    display: block;
    margin: 1.5rem auto 0;
    /* top margin, auto left/right */
    text-align: center;
    width: fit-content;
    /* shrink to content */
}

section .btn-primary {
    display: block;
    margin: 1.5rem auto 0;
    /* top margin, auto left/right */
    text-align: center;
    width: fit-content;
    /* shrink to content */
}


.why-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.why-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d35400;
}

.why-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.why-text ul {
    margin-bottom: 1.5rem;
    list-style: none;
    padding: 0;
}

.why-text ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.price {
    text-align: center;
}

.why-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #e67e22;
}

.how-it-works {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.steps {
    position: relative;
    padding-left: 40px;
    /* space for the numbers */
}

.steps::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
}

.step {
    position: relative;
    margin-bottom: 40px;
}

.number {
    position: absolute;
    left: -20px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1;
}

.content {
    margin-left: 40px;
    /* push content away from the number */
}

.content h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    font-weight: 600;
}

.content p {
    margin: 0;
    line-height: 1.5;
}



@media (max-width: 768px) {
    .about {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        text-align: center;
    }
}