:root {
    --saffron: #e8590c;
    --saffron-dark: #b54200;
    --saffron-light: #fff0e8;
    --navy: #0f1f3d;
    --navy-mid: #1a3260;
    --gold: #c4933f;
    --cream: #fefaf4;
    --white: #ffffff;
    --text-main: #0f1f3d;
    --text-muted: #5a6480;
    --text-light: #9aa3ba;
    --border: rgba(15,31,61,.10);
    --shadow-sm: 0 2px 12px rgba(15,31,61,.08);
    --shadow-md: 0 8px 32px rgba(15,31,61,.12);
    --shadow-lg: 0 20px 60px rgba(15,31,61,.15);
    --radius: 16px;
    --radius-lg: 24px;
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button, input, select, textarea {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(254,250,244,.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav {
    height: 76px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.nav-logo-icon,
.nav-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
}

.nav-logo-icon {
    background: url(../images/Sher-e-punjablogo.png) center/contain no-repeat;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--navy);
    white-space: nowrap;
}

.nav-logo-sub {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 700;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

    .nav-links a {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-muted);
        transition: color .2s ease;
    }

        .nav-links a:hover {
            color: var(--saffron);
        }

.nav-cta,
.btn-primary,
.btn-outline,
.form-submit {
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.nav-cta {
    background: var(--saffron);
    color: #fff !important;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(232,89,12,.18);
}

    .nav-cta:hover {
        background: var(--saffron-dark);
        transform: translateY(-1px);
    }

.section,
.hero {
    padding: 96px 5%;
}

.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--saffron-light);
    color: var(--saffron-dark);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

    .hero-badge span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--saffron);
    }

.hero h1,
.hero h3 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    color: saddlebrown;
    margin: 0 0 24px;
}

    .hero h1 em {
        font-style: normal;
        color: var(--saffron);
    }

.hero p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 0 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--saffron);
    color: #fff;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(232,89,12,.18);
}

    .btn-primary:hover {
        background: var(--saffron-dark);
        transform: translateY(-1px);
    }

.btn-outline {
    display: inline-block;
    border: 1.5px solid var(--border);
    color: var(--navy);
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    background: transparent;
}

    .btn-outline:hover {
        border-color: var(--saffron);
        color: var(--saffron);
    }

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    flex-wrap: wrap;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card-main {
    position: relative;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    width: min(100%, 340px);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
    transform-style: preserve-3d;
}

    .hero-card-main::before {
        content: "";
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at top left, rgba(232,89,12,.24), transparent 40%);
        pointer-events: none;
        transition: opacity .35s ease, transform .35s ease;
    }

    .hero-card-main::after {
        content: "";
        position: absolute;
        inset: 0;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: inherit;
        pointer-events: none;
    }

    .hero-card-main:hover {
        transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
        box-shadow: 0 24px 70px rgba(15,31,61,.25);
    }

        .hero-card-main:hover::before {
            transform: scale(1.06);
            opacity: 1;
        }

.service-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.08);
}

.service-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}


.hero-card-float,
.hero-card-float2,
.hero-card-float3 {
    position: absolute;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
}

.hero-card-float {
    top: -20px;
    right: -20px;
    background: #fff;
    min-width: 160px;
}

.hero-card-float2 {
    bottom: -20px;
    left: -20px;
    background: var(--saffron);
    color: #fff;
}
.hero-card-float3 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(232,89,12,.16);
    border-radius: 18px;
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .hero-card-float3::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--saffron), var(--gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease;
    }

    .hero-card-float3:hover {
        transform: translate(-50%, -55%) scale(1.03);
        box-shadow: 0 18px 40px rgba(15,31,61,.18);
        border-color: rgba(232,89,12,.28);
    }

        .hero-card-float3:hover::before {
            transform: scaleX(1);
        }

.float-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 6px;
}

.float-star {
    color: #f5a623;
}

.float-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.float-sub {
    font-size: 11px;
    color: var(--text-muted);
}

.float2-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
}

.float2-text {
    font-size: 12px;
    opacity: .85;
}

.float3-areas {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.float3-areas-list {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    margin: 0 0 16px;
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    margin-left: initial;
}

.services-bg,
.testimonials-bg,
.whyus-section,
.process-section {
    background: var(--white);
}

.services-grid,
.whyus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    transition: transform 0.3s ease;
}

.service-card,
.testimonial-card,
.whyus-card,
.booking-form,
.contact-form,
.success-card,
.admin-stat,
.admin-panel {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.service-card {
    padding: 36px 32px;
    transition: transform .25s ease, box-shadow .25s ease;
}




.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--saffron-light);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
}

.service-card-title,
.checklist-title,
.form-title,
.footer-brand-name {
    font-family: var(--font-display);
    font-weight: 700;
}

.service-card-title {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}


.service-card-link {
    display: inline-flex;
    margin-top: 16px;
    font-weight: 700;
    color: var(--saffron);
}

.process-layout,
.booking-layout,
.whyus-layout,
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.process-steps {
    display: flex;
    flex-direction: column;
}

.process-step {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

.step-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.process-image-area {
    position: sticky;
    top: 100px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    overflow: hidden;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.check-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(232,89,12,.3);
    border: 1px solid rgba(232,89,12,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #ffb38a;
    flex-shrink: 0;
}

.guarantee-badge {
    margin-top: 28px;
    background: rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,.1);
}

    .guarantee-badge p {
        margin: 0 0 4px;
        font-size: 13px;
        opacity: .7;
    }

    .guarantee-badge strong {
        font-size: 15px;
        font-family: var(--font-display);
    }

.whyus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.whyus-card {
    padding: 24px 22px;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .whyus-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-sm);
    }

.whyus-card-icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.whyus-card h4 {
    margin: 0 0 8px;
    font-size: 15px;
    color: var(--navy);
}

.whyus-card p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.whyus-card.accent {
    background: var(--saffron);
    color: #fff;
    border-color: transparent;
}

    .whyus-card.accent h4,
    .whyus-card.accent p {
        color: #fff;
    }

    .whyus-card.accent p {
        opacity: .9;
    }

.booking-section {
    background: var(--navy);
    color: saddlebrown;
}

.booking-info .section-title,
.booking-info .section-sub,
.booking-info .section-label {
    color: saddlebrown;
    margin-left:initial;
}

.booking-info .section-label {
    margin-left:initial;
    color: saddlebrown;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.booking-perk {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.perk-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perk-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.perk-desc {
    font-size: 13px;
    color: rgba(255,255,255,.7);
}

.booking-form,
.contact-form {
    padding: 40px;
    color: var(--navy);
}

.form-title {
    font-size: 1.4rem;
    color: var(--navy);
    margin: 0 0 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

    .form-group label {
        font-size: 13px;
        font-weight: 700;
        color: var(--navy);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        padding: 12px 16px;
        background: var(--cream);
        color: var(--navy);
        outline: none;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: rgba(232,89,12,.55);
            box-shadow: 0 0 0 4px rgba(232,89,12,.10);
        }

    .form-group textarea {
        min-height: 100px;
        resize: vertical;
    }

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--saffron);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

    .form-submit:hover {
        background: var(--saffron-dark);
        transform: translateY(-1px);
    }

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}

.service-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.service-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: #fff;
}

    .service-opt.active {
        border-color: var(--saffron);
        background: var(--saffron-light);
        color: var(--saffron-dark);
    }

.footer {
    background: linear-gradient(180deg, var(--navy) 0%, #09162d 100%);
    color: #fff;
    padding: 60px 5% 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-desc {
    font-size: 14px;
    color: rgba(255,255,255,.62);
    line-height: 1.7;
    max-width: 280px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

    .footer-contact a,
    .footer-contact span {
        font-size: 14px;
        color: rgba(255,255,255,.7);
    }

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.42);
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,.72);
    margin-bottom: 10px;
    text-decoration: none;
    transition: opacity .2s ease, color .2s ease;
}

    .footer-col a:hover {
        color: #fff;
        opacity: .9;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,.45);
}

.footer-saffron {
    color: var(--saffron);
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .footer-legal a {
        font-size: 13px;
        color: rgba(255,255,255,.45);
    }

        .footer-legal a:hover {
            color: #fff;
        }

.success-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 5% 80px;
}

.success-card {
    padding: 40px;
    text-align: center;
    max-width: 520px;
}

.mt-32 {
    margin-top: 32px;
    display: inline-block;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: .1s;
}

.admin-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.admin-stat {
    padding: 24px;
}

.admin-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
}

.admin-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.admin-panels {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
}

.admin-panel {
    padding: 24px;
}

    .admin-panel h3 {
        margin-top: 0;
    }

.admin-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}

    .admin-table th,
    .admin-table td {
        text-align: left;
        padding: 12px 10px;
        border-bottom: 1px solid rgba(15,31,61,.08);
        font-size: 14px;
    }

    .admin-table th {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--text-light);
    }

.status-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--saffron-light);
    color: var(--saffron-dark);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .hero-grid,
    .process-layout,
    .booking-layout,
    .whyus-layout,
    .contact-layout,
    .footer-grid,
    .admin-panels,
    .admin-stats {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .nav-links {
        display: none;
    }

    .whyus-grid,
    .service-selector,
    .form-row {
        grid-template-columns: 1fr;
    }

    .process-image-area {
        position: static;
    }
}
