/* Color Palette */
:root {
    --dark: #1a1a1a;
    --green: #2e7d32;
    --gold: #d4af37;
    --white: #ffffff;
    --light-grey: #f4f4f4;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: linear-gradient(180deg, #0a131e 0%, #07121a 100%);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.navbar {
    background: transparent;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(0deg, #0a131e 0%, #07121a 100%);
    color: #999;
    padding: 40px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo img {
    height: 115px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.logo-text .brand-tagline {
    font-size: 11px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    flex: 1;
    margin-left: 50px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.nav-phone {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-phone i {
    color: var(--gold);
    font-size: 12px;
}

.nav-phone:hover {
    color: var(--gold);
}

.nav-book-btn {
    background: var(--gold);
    color: var(--dark);
    padding: 9px 22px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background 0.25s, color 0.25s;
    white-space: nowrap;
}

.nav-book-btn:hover {
    background: var(--white);
    color: var(--dark);
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-icons {
    display: flex;
    gap: 15px;
}

.share-btn, .copy-btn, .download-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s;
}

.share-btn:hover, .copy-btn:hover, .download-btn:hover {
    color: var(--gold);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #e0e0e0;
    letter-spacing: 0.5px;
}

.btn-book {
    background: var(--gold);
    color: var(--dark);
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.3s;
    font-size: 14px;
}

.btn-book:hover {
    background: #e5c158;
    transform: translateY(-3px);
}

/* ===== SERVICES SECTION ===== */
.services {
    background: linear-gradient(180deg, #0a131e 0%, #07121a 100%);
    padding: 80px 0;
    text-align: center;
}

.section-title {
    margin-bottom: 60px;
    font-size: 32px;
    color: var(--dark);
    font-weight: 700;
    letter-spacing: 1px;
}

.services .section-title {
    color: var(--gold);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 0;
}

.service-card {
    background: #111827;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 25px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.service-card p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-price {
    display: inline-block;
    background: linear-gradient(135deg, #0a131e 0%, #07121a 100%);
    color: #aaa;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 10px 16px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.service-price strong {
    color: var(--gold);
    font-weight: 800;
}

.learn-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.learn-more:hover {
    color: var(--white);
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0;
}

.pricing .section-title {
    color: var(--gold);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.pricing-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.pricing-list {
    list-style: none;
    text-align: left;
}

.pricing-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.8;
}

.pricing-list li strong {
    color: var(--gold);
    font-weight: 700;
}

.testimonials h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.testimonial-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    text-align: left;
}

.testimonial-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 13px;
    color: #e0e0e0;
    margin-bottom: 10px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-name {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(0deg, #0a131e 0%, #07121a 100%);
    color: #999;
    padding: 40px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.25);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.footer-left h3, .footer-center h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-contact {
    font-size: 13px;
    margin: 8px 0;
}

.footer-contact a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-label {
    font-size: 11px;
    color: #666;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    color: var(--gold);
    width: 35px;
    height: 35px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--dark);
}

.copyright {
    font-size: 12px;
    color: #666;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* ===== SERVICE DETAILS PAGE ===== */
.service-details {
    padding: 80px 0;
    background: var(--white);
}

.service-details h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
}

.service-intro {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.service-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.service-info p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 10px 0;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.checklist li i {
    color: var(--green);
    margin-right: 15px;
    font-size: 16px;
}

.pricing-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.pricing-info p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pricing-info .btn-book {
    margin-top: 30px;
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-call {
    background: transparent;
    color: var(--white);
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 1px;
    font-size: 14px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: border-color 0.3s, color 0.3s;
}

.btn-call:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== SERVICE INCLUDES LIST ===== */
.service-includes {
    list-style: none;
    margin: 15px 0 20px;
    text-align: left;
}

.service-includes li {
    font-size: 13px;
    color: #aaa;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.service-includes li i {
    color: var(--green);
    font-size: 11px;
    flex-shrink: 0;
}

.service-includes li.include-highlight {
    color: var(--white);
    font-weight: 700;
    border-bottom: none;
    margin-top: 4px;
}

.service-includes li.include-highlight i {
    color: var(--gold);
    font-size: 12px;
}

/* ===== PRICING SECTION OVERHAUL ===== */
.pricing-intro {
    color: #bbb;
    font-size: 14px;
    max-width: 620px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.pricing-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    margin-bottom: 35px;
}

.ptab {
    background: transparent;
    border: none;
    color: #888;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 28px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}

.ptab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.ptab:hover {
    color: var(--gold);
}

.pricing-panel {
    display: none;
}

.pricing-panel.active {
    display: block;
}

.price-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 600px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 30px;
}

.price-item {
    background: #161616;
    padding: 30px 24px;
    transition: background 0.25s;
}

.price-item:hover {
    background: #1e1e1e;
}

.price-item.featured {
    background: var(--gold);
}

.price-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}

.price-item.featured .price-label {
    color: rgba(255,255,255,0.8);
}

.price-amount {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.price-item.featured .price-amount {
    color: var(--white);
}

.price-note {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.price-item.featured .price-note {
    color: rgba(255,255,255,0.75);
}

.extras-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.price-extras {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 25px;
}

.price-extra {
    background: #161616;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.extra-name {
    font-size: 12px;
    color: #aaa;
}

.extra-val {
    font-size: 13px;
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
}

.pricing-note {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.pricing-cta {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-call-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 1px;
    font-size: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: border-color 0.3s, color 0.3s;
}

.btn-call-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== WHY US SECTION ===== */
.why-us {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

.bond-banner {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(180deg, #0a131e 0%, #07121a 100%);
    border: 1px solid rgba(212,175,55,0.3);
    padding: 30px 40px;
    margin-bottom: 60px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bond-banner-icon {
    font-size: 3rem;
    color: var(--gold);
    flex-shrink: 0;
}

.bond-banner-text strong {
    display: block;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.bond-banner-text p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
    text-align: left;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light-grey);
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.why-item:hover {
    border-bottom-color: var(--gold);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.why-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #0a131e, #07121a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 4px;
}

.why-icon i {
    color: var(--gold);
    font-size: 16px;
}

.why-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.why-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    background: var(--light-grey);
    padding: 80px 0;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    text-align: left;
    border-top: 3px solid var(--gold);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.review-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #0a131e, #07121a);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 13px;
    color: var(--dark);
}

.review-author span {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
}

/* ===== AREAS SECTION ===== */
.areas {
    background: var(--white);
    padding: 70px 0;
    text-align: center;
}

.areas-sub {
    font-size: 14px;
    color: #777;
    margin-bottom: 35px;
    margin-top: -40px;
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.area-tag {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    background: var(--light-grey);
    border: 1px solid #e0e0e0;
    color: var(--dark);
    border-radius: 20px;
    transition: all 0.2s;
    cursor: default;
}

.area-tag:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0;
}

.contact-section .section-title {
    color: var(--gold);
}

.contact-sub {
    color: #aaa;
    font-size: 14px;
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.7;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 28px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--gold);
    font-size: 16px;
}

.contact-item strong {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--gold);
}

.btn-call-gold {
    background: var(--gold);
    color: var(--white);
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 1px;
    font-size: 13px;
    border-radius: 5px;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-call-gold:hover {
    background: #e5c158;
}

.contact-form-wrap {
    background: #111;
    padding: 40px;
    border: 1px solid rgba(212,175,55,0.1);
}

.contact-form-wrap h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.form-group label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    outline: none;
    border-radius: 4px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group select option {
    background: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--white);
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.25s;
    margin-top: 5px;
}

.btn-submit:hover {
    background: #e5c158;
}

/* ===== BOOKING MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: #111;
    border: 1px solid rgba(212,175,55,0.2);
    width: 90%;
    max-width: 580px;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--gold);
}

.modal h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.modal > p {
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
}

/* ===== FOOTER ADDITIONS ===== */
.footer-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.footer-nav a {
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .price-grid { grid-template-columns: repeat(2, 1fr); }
    .price-extras { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .price-grid { grid-template-columns: repeat(2, 1fr); }
    .price-extras { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .bond-banner { flex-direction: column; padding: 25px; }
    .form-row { grid-template-columns: 1fr; }
    .pricing-tabs { flex-wrap: wrap; }
    .ptab { padding: 10px 16px; font-size: 11px; }
    .contact-form-wrap { padding: 25px 20px; }
    .modal { padding: 25px 20px; }
}