* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f8f9fb;
    color: #222;
    line-height: 1.6;
}

header {
    background: #0b1f3a;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

header h1 {
    font-size: 42px;
    margin-bottom: 5px;
}

header p {
    font-size: 17px;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: white;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

button {
    background: #0b1f3a;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    opacity: 0.85;
}

.services {
    padding: 60px 20px;
    text-align: center;
}

.services h2,
.booking h2 {
    font-size: 32px;
    margin-bottom: 35px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.service {
    background: white;
    width: 300px;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service h3 {
    font-size: 21px;
    margin-bottom: 15px;
}

.service p {
    margin-bottom: 15px;
}

.service strong {
    font-size: 22px;
}

.booking {
    background: #eef2f7;
    padding: 60px 20px;
    text-align: center;
}

form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

footer {
    background: #0b1f3a;
    color: white;
    text-align: center;
    padding: 25px;
}/* Customer Website Polish */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8fafc;
    color: #1f2937;
}

header {
    background: #111827;
    color: white;
    text-align: center;
    padding: 22px 20px;
}

header h1 {
    margin: 0;
    font-size: 34px;
}

header p {
    margin: 6px 0 0;
    opacity: 0.9;
}

.hero {
    text-align: center;
    padding: 70px 20px;
    background: white;
}

.hero h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.hero p {
    font-size: 18px;
    color: #6b7280;
}

.hero button {
    margin-top: 20px;
    padding: 14px 26px;
    border: none;
    border-radius: 10px;
    background: #111827;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}.services {
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.service-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding-bottom: 22px;
}

.service img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service h3 {
    font-size: 22px;
    margin: 18px 18px 10px;
}

.service p {
    color: #6b7280;
    padding: 0 18px;
    line-height: 1.5;
}

.service strong {
    display: block;
    margin-top: 14px;
    font-size: 22px;
    color: #111827;
}.booking {
    max-width: 900px;
    margin: 0 auto 70px;
    padding: 50px 20px;
    text-align: center;
}

.booking h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

#customerBookingForm {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: grid;
    gap: 16px;
}

#customerBookingForm input,
#customerBookingForm select {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
}

#customerBookingForm input:focus,
#customerBookingForm select:focus {
    outline: none;
    border-color: #111827;
}

#customerBookingForm button {
    background: #111827;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

#customerBookingForm button:hover {
    opacity: 0.9;
}/* Mobile Responsive */

@media (max-width: 768px) {

    header {
        padding: 18px 15px;
    }

    header h1 {
        font-size: 28px;
    }

    .hero {
        padding: 45px 18px;
    }

    .hero h2 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .services {
        padding: 45px 15px;
    }

    .service-container {
        grid-template-columns: 1fr;
    }

    .service img {
        height: 210px;
    }

    .booking {
        padding: 40px 15px;
        margin-bottom: 40px;
    }

    #customerBookingForm {
        padding: 22px;
    }
}/* Better Mobile Service Cards */

@media (max-width: 768px) {

    .services {
        padding: 35px 14px;
    }

    .services h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .service-container {
        display: block;
        width: 100%;
    }

    .service {
        width: 100%;
        max-width: 380px;
        margin: 0 auto 24px;
        border-radius: 18px;
        padding-bottom: 20px;
    }

    .service img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 18px 18px 0 0;
    }

    .service h3 {
        font-size: 21px;
        margin: 18px 20px 10px;
        line-height: 1.3;
    }

    .service p {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 22px;
        margin-bottom: 12px;
    }

    .service strong {
        font-size: 22px;
        margin-top: 12px;
    }
}/* Better Mobile Booking Form */

@media (max-width: 768px) {

    .booking {
        padding: 35px 14px;
        margin-bottom: 30px;
    }

    .booking h2 {
        font-size: 28px;
        margin-bottom: 22px;
    }

    #customerBookingForm {
        padding: 20px;
        border-radius: 18px;
        gap: 14px;
    }

    #customerBookingForm input,
    #customerBookingForm select {
        padding: 14px 12px;
        font-size: 16px;
        border-radius: 10px;
    }

    #customerBookingForm button {
        padding: 15px;
        font-size: 16px;
        border-radius: 10px;
        margin-top: 4px;
    }
}#customerBookingForm label {
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: -8px;
    color: #374151;
}

#locationStatus {
    margin: 0;
    font-size: 14px;
    color: #047857;
    text-align: left;
}

#useLocationBtn {
    background: #eef2ff;
    color: #111827;
    border: 1px solid #d1d5db;
}.booking-success {
    margin-top: 20px;
    padding: 18px;
    border-radius: 12px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    text-align: center;
}

.booking-success h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.booking-success p {
    margin: 5px 0;
}.payment-note {
    margin: 0;
    padding: 12px;
    border-radius: 10px;
    background: #f3f4f6;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}.required-note {
    margin-top: -10px;
    margin-bottom: 18px;
    font-size: 13px;
    color: #6b7280;
}@media (max-width: 768px) {
    .required-note {
        font-size: 12px;
        margin-bottom: 16px;
    }
}@media (max-width: 768px) {
    .payment-note {
        margin-top: 4px;
        margin-bottom: 2px;
    }

    #customerBookingForm button[type="submit"] {
        margin-top: 6px;
    }
}.contact-section {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px 20px;
    text-align: center;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-section h2 {
    margin-top: 0;
    font-size: 28px;
}

.contact-section p {
    color: #6b7280;
    margin-bottom: 20px;
}

.whatsapp-button {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 10px;
    background: #111827;
    color: white;
    text-decoration: none;
    font-weight: 700;
}.main-header {
    background: #ffffff;
    color: #111827;
    padding: 14px 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand h1 {
    margin: 0;
    font-size: 28px;
}

.brand p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #6b7280;
}

.main-nav {
    display: flex;
    gap: 22px;
}

.main-nav a {
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.main-nav a:hover {
    opacity: 0.65;
}.hero {
    padding: 80px 20px;
    background:
        radial-gradient(circle at top right, #fff7ed, transparent 35%),
        linear-gradient(135deg, #ffffff, #f8fafc);
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff7ed;
    color: #c2410c;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 52px;
    line-height: 1.08;
    margin: 0 0 20px;
    color: #111827;
}

.hero p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-actions button,
.hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
}

.hero-actions button {
    border: none;
    background: #111827;
    color: white;
    cursor: pointer;
}

.hero-secondary {
    background: white;
    color: #111827;
    border: 1px solid #d1d5db;
}

.hero-trust {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 35px;
}

.section-heading span {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #c2410c;
    background: #fff7ed;
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.section-heading h2 {
    margin: 0 0 10px;
    font-size: 34px;
    color: #111827;
}

.section-heading p {
    margin: 0;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}.service {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.service strong {
    color: #c2410c;
}#customerBookingForm {
    border: 1px solid #e5e7eb;
}

#customerBookingForm label {
    font-size: 13px;
    letter-spacing: 0.2px;
}

#customerBookingForm input,
#customerBookingForm select {
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#customerBookingForm input:focus,
#customerBookingForm select:focus {
    border-color: #c2410c;
    box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.08);
}#customerBookingForm button[type="submit"] {
    background: linear-gradient(135deg, #111827, #1f2937);
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#customerBookingForm button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.24);
}.payment-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
    font-weight: 700;
}.whatsapp-button {
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.whatsapp-button:hover {
    background: #1ebe5d;
}.contact-trust {
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 13px;
    color: #6b7280;
}.site-footer {
    background: #111827;
    color: white;
    padding: 30px 20px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.site-footer strong {
    font-size: 20px;
}

.site-footer p {
    margin: 6px 0 0;
    color: #d1d5db;
    font-size: 14px;
}.trust-section {
    padding: 60px 20px;
    background: #ffffff;
}

.trust-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.trust-card {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.trust-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: #111827;
}

.trust-card p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}.how-it-works {
    padding: 60px 20px;
    background: #f8fafc;
}

.steps-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.step-card > span {
    width: 36px;
    height: 36px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff7ed;
    color: #c2410c;
    font-weight: 700;
}

.step-card h3 {
    margin: 0 0 10px;
    color: #111827;
}

.step-card p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}.step-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}.booking-trust-strip {
    max-width: 900px;
    margin: 30px auto 0;
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    color: #9a3412;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .booking-trust-strip {
        margin: 24px 14px 0;
        gap: 12px;
        font-size: 13px;
    }
}.testimonials {
    padding: 60px 20px;
    background: #ffffff;
}

.testimonial-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 26px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.testimonial-card .stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 14px;
}

.testimonial-card strong {
    color: #111827;
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}.final-cta {
    padding: 60px 20px;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: white;
    text-align: center;
}

.final-cta-inner {
    max-width: 760px;
    margin: 0 auto;
}

.final-cta span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fbbf24;
}

.final-cta h2 {
    margin: 0 0 14px;
    font-size: 34px;
}

.final-cta p {
    margin: 0 auto 24px;
    max-width: 600px;
    color: #d1d5db;
    line-height: 1.6;
}

.final-cta button {
    border: none;
    background: white;
    color: #111827;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}.final-cta button {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.final-cta button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}@media (max-width: 768px) {
    .hero h2 {
        font-size: 36px;
    }

    .hero-content {
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .final-cta h2 {
        font-size: 28px;
    }
}@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .brand {
        text-align: center;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .main-nav a {
        font-size: 13px;
    }
}@media (max-width: 768px) {
    .hero {
        padding: 50px 18px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 7px 12px;
    }

    .hero h2 {
        font-size: 34px;
        line-height: 1.12;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions button,
    .hero-secondary {
        width: 100%;
        box-sizing: border-box;
    }
}@media (max-width: 768px) {
    .services {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .service {
        margin-bottom: 20px;
    }

    .service h3 {
        font-size: 20px;
    }

    .service p {
        font-size: 14px;
        line-height: 1.55;
    }

    .service strong {
        font-size: 20px;
    }
}@media (max-width: 768px) {
    .booking {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #customerBookingForm {
        padding: 18px;
        gap: 13px;
    }

    #customerBookingForm label {
        font-size: 13px;
    }

    .payment-note {
        font-size: 12px;
        line-height: 1.5;
        padding: 10px;
    }
}@media (max-width: 768px) {
    .testimonials {
        padding: 40px 14px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .testimonial-card .stars {
        font-size: 16px;
    }
}@media (max-width: 768px) {
    .final-cta {
        padding: 45px 16px;
    }

    .final-cta h2 {
        font-size: 26px;
    }

    .final-cta p {
        font-size: 14px;
    }

    .contact-section {
        margin: 0 14px 30px;
        padding: 24px 18px;
    }

    .whatsapp-button {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .site-footer {
        padding: 26px 16px;
    }

    .site-footer p {
        font-size: 13px;
    }
}.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    background: #111827;
    padding: 6px;
    border-radius: 12px;
}

.brand-text h1 {
    margin: 0;
    font-size: 28px;
}

.brand-text p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #6b7280;
}/* =========================
   POLICY PAGES
========================= */

.policy-page {
    min-height: 70vh;
    padding: 60px 20px;
    background: #f5f7fa;
}

.policy-card {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.policy-card h1 {
    margin-bottom: 25px;
}

.policy-card h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.policy-card p {
    line-height: 1.8;
    color: #4b5563;
}

.policy-note {
    margin-top: 35px;
    padding: 15px;
    background: #fff7ed;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 30px 15px;
    }

    .policy-card {
        padding: 25px 20px;
    }
}.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: #ffffff;
}