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

body {
    font-family: Arial, sans-serif;
    color: #222;
    line-height: 1.6;
    background: #fff;
}

.container {
    width: min(1200px, 92%);
    margin: auto;
}

/* ================= HEADER ================= */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #111;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
}

.nav-call {
    background: #111;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
}

/* ================= HERO ================= */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("images/hero.webp");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-content {
    max-width: 760px;
}

.eyebrow {
    color: #c9974b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

h1 {
    font-size: clamp(42px, 8vw, 78px);
    line-height: 1.05;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(30px, 5vw, 46px);
    margin-bottom: 18px;
}

.hero-text {
    font-size: 20px;
    max-width: 650px;
    margin-bottom: 28px;
}

.hero-buttons,
.contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
}

.primary {
    background: #c9974b;
    color: #111;
}

.whatsapp {
    background: #25D366;
    color: #111;
}

.secondary {
    background: #fff;
    color: #111;
    border: 1px solid #ddd;
}

/* ================= SECTIONS ================= */
.section {
    padding: 80px 0;
}

.light {
    background: #faf7f1;
}

/* ================= TITLES ================= */
.menu-group-title {
    margin: 50px 0 20px;
    font-size: 22px;
    font-weight: bold;
}

/* ================= MENU GRID ================= */
.menu-grid {
    display: grid;
    gap: 22px;
    
}

/* MAIN PACKAGES (4 per row) */
.main-packages {
    grid-template-columns: repeat(4, 1fr);
}

/* BUDGET PACKAGES (3 per row) */
.budget-packages {
    grid-template-columns: repeat(3, 1fr);
}

/* ================= MENU CARD ================= */
.menu-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: 0.3s ease;
}

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

.menu-card.wide {
    display: flex;
    flex-direction: row;
    grid-column: 1 / -1;
    width: 350px;
}

.menu-card.wide img {
   
    height: auto;
}

.menu-card.wide .menu-content {
    flex: 1;
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-content {
    padding: 18px;
}

.menu-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.menu-content ul {
    padding-left: 18px;
    margin: 12px 0;
}

.menu-content li {
    font-size: 14px;
    margin-bottom: 6px;
}

.price {
    font-size: 18px;
    font-weight: 800;
    color: #c9974b;
    margin-top: 10px;
}

.tag {
    font-size: 13px;
    color: #e8751a;
    font-weight: 700;
}

/* WIDE CARD */
.menu-card.wide {
    display: flex;
    flex-direction: column;
}

.menu-card.wide img {
    height: 260px;
}

/* ================= ADD ONS ================= */
.addon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.addon-list span {
    background: #fff4e5;
    padding: 10px 15px;
    border-radius: 20px;
}

/* ================= AREAS ================= */
.areas p {
    max-width: 760px;
    font-size: 18px;
}

.area-tags {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.area-tags span {
    background: #fff;
    border: 1px solid #eadcc5;
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: 600;
}

/* ================= CONTACT ================= */
.contact-box {
    text-align: center;
    background: #111;
    color: #fff;
    padding: 60px 25px;
    border-radius: 28px;
}

.contact-box p {
    margin-bottom: 26px;
}

/* ================= FOOTER ================= */
.site-footer {
    padding: 28px 0;
    text-align: center;
    background: #080808;
    color: #ccc;
}

/* ================= WHATSAPP FLOAT ================= */
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
    z-index: 20;
}

.floating-whatsapp img {
    width: 28px;
}

/* ================= LOCATION SECTION ================= */

.location {
    background: #f8f8f8;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.map-box {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.location-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 860px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .map-box,
    .location-image img {
        height: 300px;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .main-packages {
        grid-template-columns: repeat(2, 1fr);
    }

    .budget-packages {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .main-packages,
    .budget-packages {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 40px;
    }

    .menu-card.wide {
   
    width: auto;
}

.menu-card.wide img {
   
    height: auto;
}
}