* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #0f0f0f;
    color: #f5f1e8;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.page-wrap {
    min-height: 100vh;
    background: linear-gradient(180deg, #111111 0%, #181818 100%);
}

/* =========================
   HEADER / NAV
========================= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.94);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.nav-left a {
    color: #f5f1e8;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.nav-left a:hover,
.nav-left a.active {
    color: #d4af37;
}

.nav-btn,
.btn-primary,
.btn-secondary,
.package-btn,
.hero-btn,
.service-btn,
.learn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.nav-btn,
.btn-primary,
.package-btn,
.primary-btn,
.service-btn,
.learn-btn {
    background: #d4af37;
    color: #111111;
    padding: 12px 20px;
}

.nav-btn:hover,
.btn-primary:hover,
.package-btn:hover,
.primary-btn:hover,
.service-btn:hover,
.learn-btn:hover {
    transform: translateY(-2px);
    background: #e0bc4d;
}

.btn-secondary,
.secondary-btn {
    border: 1px solid rgba(245, 241, 232, 0.25);
    color: #f5f1e8;
    padding: 12px 20px;
    background: transparent;
}

.btn-secondary:hover,
.secondary-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
}

/* =========================
   HOME HERO
========================= */
.hero {
    min-height: 88vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.72)),
        url("house.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.overlay {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.hero-left {
    max-width: 720px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding: 10px 16px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.08);
}

.hero-tag img {
    width: 22px;
    height: 22px;
}

.hero-tag h5 {
    margin: 0;
    font-size: 12px;
    letter-spacing: 2px;
    color: #d4af37;
}

.hero-left h1 {
    margin: 0 0 20px;
    font-size: clamp(2.5rem, 5vw, 4.75rem);
    line-height: 1.05;
    color: #ffffff;
}

.hero-description {
    max-width: 650px;
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(245, 241, 232, 0.86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-btn {
    padding: 13px 22px;
}

.hero-callout {
    min-width: 280px;
    max-width: 320px;
    background: rgba(18, 18, 18, 0.82);
    border: 1px solid rgba(212, 175, 55, 0.20);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.callout-text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.callout-text img {
    width: 26px;
    height: 26px;
    margin-top: 3px;
}

.callout-text p {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
    color: #ffffff;
}

.hero-callout span {
    display: block;
    color: #d4af37;
    font-weight: 700;
    font-size: 15px;
}

/* =========================
   HOME FEATURES
========================= */
.features {
    max-width: 1200px;
    margin: -60px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(22, 22, 22, 0.96);
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 24px;
    padding: 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20);
}

.feature-card img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #ffffff;
}

.feature-card p {
    margin: 0;
    line-height: 1.65;
    color: rgba(245, 241, 232, 0.74);
    font-size: 15px;
}

/* =========================
   SHARED SECTIONS
========================= */
.services,
.home-cta,
.packages-summary,
.packages-section,
.why-packages,
.packages-cta {
    padding: 90px 20px;
}

.section-heading {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.section-tag,
.eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 800;
    color: #d4af37;
}

.section-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
}

.section-heading p {
    max-width: 760px;
    margin: 0;
    line-height: 1.75;
    color: rgba(245, 241, 232, 0.78);
}

/* =========================
   HOME SERVICES
========================= */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.20);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.38);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.service-icon-wrap {
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-wrap img {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.35;
    color: #ffffff;
}

.service-card p {
    margin: 0 0 24px;
    line-height: 1.7;
    color: rgba(245, 241, 232, 0.76);
    flex-grow: 1;
}

.service-btn {
    align-self: flex-start;
}

/* =========================
   HOME CTA
========================= */
.home-cta-box,
.summary-card,
.packages-cta-box {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 28px;
    padding: 48px 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.home-cta-box,
.packages-cta-box {
    text-align: center;
}

.home-cta-box h2,
.summary-card h2,
.packages-cta-box h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
}

.home-cta-box p,
.summary-card p,
.packages-cta-box p {
    max-width: 720px;
    margin: 0 auto 24px;
    line-height: 1.75;
    color: rgba(245, 241, 232, 0.80);
}

/* =========================
   PACKAGES HERO
========================= */
.packages-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
        url("house.jpg") center/cover no-repeat;
}

.packages-hero-overlay {
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 20px 90px;
}

.packages-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    color: #ffffff;
}

.packages-intro {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(245, 241, 232, 0.88);
    margin: 0 0 28px;
}

.packages-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* =========================
   PACKAGES GRID
========================= */
.package-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.package-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.featured-card {
    border: 1px solid rgba(212, 175, 55, 0.55);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.08);
}

.package-top {
    margin-bottom: 20px;
}

.package-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
}

.featured-badge {
    background: #d4af37;
    color: #111111;
}

.package-card h3 {
    margin: 0 0 12px;
    font-size: 1.75rem;
    color: #ffffff;
}

.package-description {
    margin: 0;
    line-height: 1.7;
    color: rgba(245, 241, 232, 0.76);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    flex-grow: 1;
}

.package-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    line-height: 1.55;
    color: #f5f1e8;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-weight: 800;
}

/* =========================
   WHY SECTION
========================= */
.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 22px;
    padding: 28px;
}

.why-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #ffffff;
}

.why-card p {
    margin: 0;
    line-height: 1.7;
    color: rgba(245, 241, 232, 0.78);
}

/* =========================
   FOOTER
========================= */
.site-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    padding: 36px 20px;
    background: #0c0c0c;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand h3 {
    margin: 0 0 10px;
    color: #d4af37;
}

.footer-brand p {
    margin: 0;
    max-width: 420px;
    color: rgba(245, 241, 232, 0.72);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    color: #f5f1e8;
    font-weight: 600;
}

.footer-links a:hover {
    color: #d4af37;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .services-grid,
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features {
        grid-template-columns: 1fr;
        margin-top: 0;
        padding-top: 30px;
    }

    .overlay {
        align-items: center;
        flex-direction: column;
    }

    .hero-callout {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 780px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid,
    .package-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .overlay {
        padding: 80px 20px 60px;
    }

    .packages-hero-overlay {
        padding: 90px 20px 70px;
    }

    .hero-left h1 {
        line-height: 1.1;
    }

    .feature-card,
    .service-card,
    .home-cta-box,
    .hero-callout,
    .summary-card,
    .packages-cta-box,
    .package-card,
    .why-card {
        padding: 24px;
    }
}

@media (max-width: 560px) {
    .nav-left {
        gap: 14px;
    }

    .nav-left a {
        font-size: 14px;
    }

    .hero-description,
    .section-heading p,
    .service-card p,
    .feature-card p,
    .home-cta-box p,
    .packages-intro,
    .summary-card p,
    .packages-cta-box p {
        font-size: 15px;
    }

    .hero-actions,
    .packages-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn,
    .service-btn,
    .nav-btn,
    .btn-primary,
    .btn-secondary,
    .package-btn,
    .learn-btn {
        text-align: center;
    }

    .callout-text p {
        font-size: 18px;
    }

    .package-card h3 {
        font-size: 1.5rem;
    }
}
/* =========================
   SERVICES PAGE
========================= */
.services-page {
    padding: 90px 20px;
}

.services-detail-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.services-detail-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.20);
}

.services-detail-card h3 {
    margin: 0 0 14px;
    font-size: 1.6rem;
    color: #ffffff;
}

.services-detail-card p {
    margin: 0 0 18px;
    line-height: 1.75;
    color: rgba(245, 241, 232, 0.78);
}

.services-detail-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-detail-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #f5f1e8;
}

.services-detail-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-weight: 800;
}

/* =========================
   ABOUT PAGE
========================= */
.about-section {
    padding: 90px 20px;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: stretch;
}

.about-content,
.about-highlight {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.about-content h2,
.about-highlight h3 {
    margin-top: 0;
    color: #ffffff;
}

.about-content p,
.about-highlight p {
    line-height: 1.8;
    color: rgba(245, 241, 232, 0.80);
}

.about-values {
    max-width: 1200px;
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 24px;
    padding: 28px;
}

.value-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
}

.value-card p {
    margin: 0;
    line-height: 1.7;
    color: rgba(245, 241, 232, 0.76);
}

/* =========================
   FAQ PAGE
========================= */
.faq-section {
    padding: 90px 20px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 20px;
    padding: 24px 26px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.faq-item h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    color: #ffffff;
}

.faq-item p {
    margin: 0;
    line-height: 1.75;
    color: rgba(245, 241, 232, 0.78);
}

/* =========================
   CONTACT PAGE
========================= */
.contact-section {
    padding: 90px 20px;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
}

.contact-info,
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.contact-info h2,
.contact-form-wrap h2 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #ffffff;
}

.contact-info p,
.contact-form-wrap p {
    line-height: 1.75;
    color: rgba(245, 241, 232, 0.80);
}

.contact-details {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.contact-detail {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}

.contact-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-detail h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: #d4af37;
}

.contact-detail p,
.contact-detail a {
    margin: 0;
    color: #f5f1e8;
    line-height: 1.7;
}

.contact-detail a:hover {
    color: #d4af37;
}

.contact-form {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #f5f1e8;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(245, 241, 232, 0.14);
    background: rgba(10, 10, 10, 0.72);
    color: #f5f1e8;
    font: inherit;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.10);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-submit {
    justify-self: start;
    border: none;
    cursor: pointer;
    padding: 13px 22px;
    border-radius: 999px;
    background: #d4af37;
    color: #111111;
    font-weight: 700;
    transition: all 0.25s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    background: #e0bc4d;
}

/* =========================
   EXTRA RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .services-detail-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .services-detail-card,
    .about-content,
    .about-highlight,
    .value-card,
    .faq-item,
    .contact-info,
    .contact-form-wrap {
        padding: 24px;
    }
}
.services-detail-card {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.services-detail-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.38);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}