* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #fffaf3;
}

.site-header {
    background: #fff;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    height: 70px;
    width: auto;
}

.brand h1 {
    font-size: 26px;
    color: #8b2c13;
}

.brand p {
    font-size: 13px;
    color: #6b4a38;
    margin-top: 4px;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 700;
}

.main-nav a:hover {
    color: #c94a1a;
}

.hero {
    min-height: 520px;
    padding: 90px 8%;
    background: linear-gradient(rgba(102,35,15,.75), rgba(102,35,15,.75)),
        url('../img/banner.png') center/cover no-repeat;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h2 {
    font-size: 54px;
    max-width: 760px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 620px;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    width: fit-content;
    background: #f6b23b;
    color: #3a1607;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 800;
}

.btn-primary:hover {
    background: #fff;
}

.site-footer {
    background: #3a1607;
    color: #fff;
    text-align: center;
    padding: 22px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 18px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .brand {
        flex-direction: column;
        text-align: center;
    }

    .hero h2 {
        font-size: 36px;
    }
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    padding: 60px 8%;
}

.stat-box {
    background: #fff;
    text-align: center;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.stat-box h3 {
    font-size: 40px;
    color: #c94a1a;
}

.about-preview,
.package-preview {
    padding: 70px 8%;
}

.content-wrap {
    max-width: 800px;
}

.content-wrap h2,
.package-preview h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #3a1607;
}

.content-wrap p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 30px;
}

.package-card {
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.package-card h3 {
    margin-bottom: 12px;
    color: #c94a1a;
}

@media(max-width:768px){
    .stats-section,
    .package-grid {
        grid-template-columns: 1fr;
    }
}

.page-hero {
    padding: 70px 8%;
    background: linear-gradient(135deg, #7b2d12, #c94a1a);
    color: #fff;
    text-align: center;
}

.page-hero h2 {
    font-size: 44px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 18px;
}

.public-packages {
    padding: 70px 8%;
}

.public-card {
    overflow: hidden;
    padding: 0;
}

.public-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.package-info {
    padding: 24px;
}

.package-info .price {
    color: #c94a1a;
    font-size: 22px;
    font-weight: 800;
    margin: 12px 0;
}

.contact-section {
    padding: 70px 8%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 35px;
}

.contact-info,
.contact-form {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.contact-info h2,
.contact-form h2 {
    color: #7b2d12;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 14px;
    font-size: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.contact-form textarea {
    height: 130px;
}

@media(max-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.cta-section {
    margin: 40px 8% 70px;
    padding: 60px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #7b2d12, #c94a1a);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-section .btn-primary {
    background: #fff;
    color: #7b2d12;
}

.about-page {
    padding: 70px 8%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    gap: 35px;
    align-items: start;
}

.about-text,
.about-highlight {
    background: #fff;
    padding: 34px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.about-text h2,
.about-highlight h3 {
    color: #7b2d12;
    margin-bottom: 18px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-highlight ul {
    padding-left: 20px;
}

.about-highlight li {
    margin-bottom: 14px;
    line-height: 1.5;
    font-weight: 600;
}

@media(max-width:768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.float-btn {
    color: #fff;
    padding: 12px 18px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0,0,0,.2);
    text-align: center;
}

.call-btn {
    background: #2f80ed;
}

.whatsapp-btn {
    background: #25D366;
}

.float-btn:hover {
    transform: translateY(-2px);
}

@media(max-width:768px) {
    .floating-actions {
        right: 12px;
        bottom: 12px;
    }

    .float-btn {
        padding: 10px 14px;
        font-size: 14px;
    }
}

.package-search-section {
    padding: 35px 8% 0;
}

.package-search-form {
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    display: flex;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.package-search-form input {
    flex: 1;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.package-search-form button,
.package-search-form a {
    padding: 14px 22px;
    border: none;
    border-radius: 10px;
    background: #c94a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
}

.package-search-form a {
    background: #555;
}

@media(max-width:768px) {
    .package-search-form {
        flex-direction: column;
    }
}

.testimonials-section {
    padding: 70px 8%;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-card h3 {
    color: #7b2d12;
    margin-bottom: 6px;
}

.testimonial-card span {
    color: #c94a1a;
    font-weight: 700;
}

@media(max-width:768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
.testimonial-image{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:16px;
}

.testimonial-rating{
    margin-bottom:14px;
    font-size:18px;
}