@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

html,
body {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary: #0f1c2e;
    --primary-light: #1f3a5f;
    --secondary: #f4a261;
    --accent: #e76f51;
    --bg-warm: #fcfcfc;
    --text-dark: #1a1a1a;
    --text-light: #5a5a5a;
    --white: #ffffff;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-warm);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Header & Nav */
header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 2000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo h1 {
    font-size: 1.8rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin: 0;
    transition: 0.3s;
}

.logo h1 span {
    color: var(--secondary);
    font-weight: 300;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu ul li a {
    font-weight: 500;
    color: var(--text-dark);
}

.nav-menu ul li a:hover {
    color: var(--secondary);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    padding: 5px;
}

.mobile-only {
    display: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    text-transform: capitalize;
}

.btn-primary {
    background: var(--primary) !important;
    color: var(--white) !important;
}

.btn-secondary {
    background: var(--secondary) !important;
    color: var(--white) !important;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    background: transparent;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    background-color: var(--primary-light);
    color: white !important;
}

/* Header Specific Button */
.cta-btn {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

/* Hero */
.hero {
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero h1 {
    color: white;
    margin-bottom: 20px;
    font-size: 4rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.hero p {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.hero .btn-outline {
    border: 2px solid var(--white);
    color: var(--white) !important;
}

/* Grid System */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card & Image */
.card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
}

footer h3 {
    color: white;
    margin-bottom: 25px;
}

footer p,
footer li {
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Sections */
.overview {
    padding: 100px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3rem;
    }
}

/* Global Responsiveness & Viewport Lock */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-wrapper {
        justify-content: space-between;
        gap: 10px;
        padding: 15px 0;
        /* Added from new code */
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 30px 20px;
        /* Modified from 40px 20px */
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        z-index: 3000;
        text-align: center;
    }

    .nav-menu.active {
        display: block !important;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        /* Added from new code */
    }

    .overview {
        padding: 60px 0 !important;
        /* Modified from 60px 0 */
        text-align: center;
    }

    .overview-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        /* Modified from 40px */
        text-align: center;
        /* Added from new code */
    }

    .overview-img {
        order: 2;
        /* Image below text on mobile for better flow */
    }

    .overview-text {
        order: 1;
    }

    .overview h2 {
        font-size: 1.8rem !important;
        /* Modified from 2rem */
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        text-align: left !important;
        gap: 40px 20px !important;
    }

    .footer-grid .footer-col:first-child,
    .footer-grid .footer-col:last-child {
        grid-column: span 2;
    }

    .footer-grid .footer-col:first-child {
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        /* Modified from clamp(1.4rem, 5vw, 1.8rem) */
        white-space: normal;
        /* Modified from nowrap */
        margin-bottom: 15px;
        line-height: 1.3;
        /* Added from new code */
    }

    .hero p {
        font-size: 1rem !important;
        /* Modified from 1rem */
        line-height: 1.5;
        padding: 0 10px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        /* Added from new code */
    }

    .hero-btns .btn {
        width: 100%;
        margin: 0 !important;
        text-align: center;
        /* Added from new code */
    }

    /* New styles from the provided snippet */
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0 !important;
    }

    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.4rem !important;
    }

    /* Menu & Header */
    /* .nav-wrapper and .nav-menu already handled above */

    /* Hero Refinement */
    .hero {
        height: auto;
        padding: 100px 0 !important;
    }

    /* Trusted Agency / Overview already handled above */

    /* Coverage Grid */
    .coverage .grid-3 {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    /* Contact CTA */
    .cta-section h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem !important;
    }

    .coverage .grid-3 {
        grid-template-columns: 1fr !important;
    }

    .area-tag {
        padding: 15px !important;
    }
}

/* Booking & Receipt Deep Mobile Optimization */
@media (max-width: 992px) {
    .booking-flow .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .booking-summary-sidebar div {
        position: static !important;
        padding: 30px !important;
        border-radius: 20px !important;
    }
}

@media (max-width: 600px) {
    .receipt-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .booking-receipt .container>div {
        padding: 30px 20px !important;
    }

    .success-header h1 {
        font-size: 2rem !important;
    }
}
/* =========================================
   Premium Pricing Design Elevation
   ========================================= */

.pricing-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(244, 162, 97, 0.05), transparent 70%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

/* Glassmorphism Card Base */
.pricing-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.9);
}

/* Premium & Combined Highlights */
.pricing-card.premium {
    background: #ffffff;
    border: 2px solid var(--secondary);
    box-shadow: 0 40px 80px rgba(231, 111, 81, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.premium:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-card.combined {
    border: 2px solid var(--primary);
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
}

/* Card Elements */
.card-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 20px rgba(231, 111, 81, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    letter-spacing: -1px;
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-left: 5px;
}

/* Features List */
.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 18px;
    color: var(--text-dark);
    font-size: 1.1rem;
    display: flex;
    align-items: start;
    line-height: 1.5;
}

.package-features li i {
    color: var(--secondary);
    margin-right: 15px;
    margin-top: 4px;
    font-size: 1.2rem;
}

/* Secondary Grids (Trials, Add-ons) */
.secondary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.addon-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .pricing-card.premium {
        transform: scale(1);
    }
    .pricing-card.premium:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .pricing-grid, .secondary-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 35px 25px;
    }
    
    .price-tag {
        font-size: 2.5rem;
    }
}
