@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Color Palette */
    --primary-color: #0b3d91;
    /* royal blue */
    --accent-color: #f4bf0f;
    /* gold */
    --bg-color: #ffffff;
    --transition-speed: 0.3s;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --accent-red: #ef4444;
    --neutral-50: #f9fafb;
    --neutral-100: #f3f4f6;
    --neutral-200: #e5e7eb;
    --neutral-300: #d1d5db;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --webkit-scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-800);
    background: var(--neutral-50);
    margin: 0;
    padding: 0;

}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    letter-spacing: -0.025em;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--neutral-600);
    line-height: 1.75;
    font-family: "poppins", serif;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 4rem 1.5rem;
}
/*a:hover {*/
/*    color: var(--primary-dark);*/
/*}*/

/* === LAYOUT === */
.width-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.main-wrapper {
    padding: 2rem 0 4rem;
    min-height: calc(100vh - 400px);
}

.grid-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.grid-column-full {
    grid-column: span 12;
}

.grid-column-two-thirds {
    grid-column: span 8;
}

.grid-column-one-third {
    grid-column: span 4;
}

.grid-column-one-half {
    grid-column: span 6;
}

/* === HEADER === */
.navbar {
    width: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    border-bottom: 1px solid #eee;

}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Logo text variation */
.navbar .logo .permanent {
    background-color: var(--primary-color);
    font-size: 1.75rem;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-family: 'Poppins';
}

.navbar .logo span {
    display: inline;
    font-family: 'Playfair Display';
}

/* Desktop links */
.navbar .nav-links {
    display: flex;
    gap: 1.5rem;
}

.navbar .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    font-family: 'Poppins';
}

.navbar .nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--accent-color);
    left: 0;
    bottom: -4px;
    transition: width 0.3s;
}

.navbar .nav-links a:hover::after {
    width: 100%;
}

/* //book now btn */

.book-now-btn {
    background-color: var(--accent-color);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    font-family: 'Poppins';
}

.book-now-btn:hover {
    background-color: #d4af37;
    color: #f7f7f7
}

/* Hamburger for small screens */
.navbar .hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* ============================= */
/* SLIDING MENU                  */
/* ============================= */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background-color: var(--bg-color);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: right var(--transition-speed) ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    margin: 1rem 0;
    font-weight: 600;
    font-family: 'Poppins';
}

.mobile-menu a:hover {
    color: var(--primary-color);
}

/* Close button inside menu */
.mobile-menu .close-btn {
    align-self: flex-end;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* ============================= */
/* RESPONSIVE                     */
/* ============================= */
@media screen and (max-width: 768px) {

    .navbar .nav-links,
    .navbar .lg-btn {
        display: none;
    }

    .navbar .hamburger {
        display: block;
    }

    /* Logo text change */
    .navbar .logo span.full {
        display: none;
    }

    .navbar .logo span.short {
        display: inline;
    }
}

@media screen and (min-width: 769px) {
    .navbar .logo span.full {
        display: inline;
    }

    .navbar .logo span.short {
        display: none;
    }
}

/* === HERO SECTION === */
.hero-section {
    background: var(--primary-color);
    color: white;
    padding: 5rem 1rem;
    border-radius: 0 0 2rem 2rem;
    box-shadow: var(--shadow-xl);
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

}

.hero-content {
    flex: 1.5;
}

.hero-img {
    flex: 1;
    max-width: 500px;
    /* height: 100%; */
    margin: 0 auto;
    padding-top: 2rem;
}

.hero-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    /* .hero-section {
        flex-direction: column;
        padding: 3rem 1rem;
        height: auto;
    } */

    .hero-img {
        display: none;
    }
}

.hero-content h1 {
    font-size: 3rem;
    padding-top: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-family: 'Poppins', serif;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.button {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button--start {
    background-color: gold;
    color: var(--primary-color);
}

.button--start:hover {
    background-color: #e0b100;
}

.button--secondary {
    background-color: transparent;
    color: #333;
    border: 2px solid white;
}

.button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.stat h2 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    color: gold;
    /* accent color */
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.stat p {
    margin: 0.25rem 0 0 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}



/* === BUTTONS === */
.button {
    font-family: 'Playfair Display', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: var(--shadow);
}

.button--primary {
    background: var(--primary-color);
    color: white;
}

.button--warning {
    background: var(--accent-red);
    color: white;
}

.button--warning:hover {
    background: #dc2626;
}

.button--start:hover {
    background: var(--neutral-50);
    color: var(--primary-dark);
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-button-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-button-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    appearance: none;
    background-color: #ffffff;
    color: #0b0c0c;

    border: 1.5px solid color-mix(
        in srgb,
        var(--accent-color) 45%,
        #000000 55%
    );

    font-weight: 600;
    font-size: 1rem;
    padding: 0.65rem 1.25rem;
    border-radius: 0.6rem;
    line-height: 1.2;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;
}

.btn-secondary:hover {
    background-color: color-mix(
        in srgb,
        var(--accent-color) 8%,
        #ffffff 92%
    );

    border-color: var(--accent-color);
}

.btn-secondary:active {
    background-color: color-mix(
        in srgb,
        var(--accent-color) 14%,
        #ffffff 86%
    );
    transform: translateY(1px);
}

.btn-secondary:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px color-mix(
            in srgb,
            var(--accent-color) 35%,
            transparent
        );
}



/* === CARDS === */
.card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Stats card specific */
.stat-card {
    text-align: center;
}

.icon-container {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.icon-success {
    background: linear-gradient(135deg, var(--accent-green), #059669);
}

.icon-warning {
    background: linear-gradient(135deg, var(--accent-orange), #d97706);
}

.icon-container svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.card-title {
    margin-bottom: 0.5rem;
    color: var(--neutral-900);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin: 0;
    font-family: 'Poppins', serif;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--neutral-900);
    text-align: center;
    font-family: 'Playfair Display', serif;
}

/* Testimonials Section */
.testimonials {
    background: #f3f2f1;
    padding: 5rem 2rem;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0b0c0c;
    font-family: 'Playfair Display', serif;
}

/* Cards container */
.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* Individual Card */
.testimonial-card {
    background: white;
    padding: 2rem;
    max-width: 350px;
    border-radius: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Stars */
.stars {
    color: gold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Quote text */
.quote {
    font-style: italic;
    color: #505a5f;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/*Profile*/

.profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.profile .initial {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', serif;
}



/* Name and Location */
.name {
    font-weight: 700;
    color: #0b0c0c;
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
}

.location {
    font-size: 0.9rem;
    color: #777;
    font-family: 'Poppins', serif;
}


/* === FORMS === */
.form-group {
    margin-bottom: 1.5rem;
}

.label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-700);
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.label--l {
    font-size: 1.125rem;
    text-transform: none;
    letter-spacing: -0.025em;
}

.hint {
    font-size: 0.875rem;
    color: var(--neutral-500);
    display: block;
    margin-bottom: 0.5rem;
}

.input,
.select,
.textarea {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 2px solid var(--neutral-200);
    border-radius: 0.5rem;
    background: white;
    width: 100%;
    transition: all 0.2s ease;
}

.input:focus,
.select:focus,
.textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input--error {
    border-color: var(--accent-red);
}

/* === PROGRESS STEPS === */
.booking-progress {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.booking-progress__steps {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0;
}

.booking-progress__steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--neutral-200);
    z-index: 0;
}

.booking-progress__step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.booking-progress__step::before {
    content: attr(data-step);
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    line-height: 50px;
    border: 3px solid var(--neutral-200);
    border-radius: 50%;
    background: white;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--neutral-400);
    transition: all 0.3s ease;
}

.booking-progress__step--active::before {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.booking-progress__step--completed::before {
    border-color: var(--accent-green);
    background: var(--accent-green);
    color: white;
    content: "✓";
    font-size: 1.5rem;
}

.booking-progress__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-600);
}

.booking-progress__step--active .booking-progress__label {
    color: var(--primary-color);
}

/* Steps styling */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-number-complete {
    background: var(--accent-green);
}

.step-title {
    margin-bottom: 0.25rem;
    color: var(--neutral-900);
    font-family: 'Playfair Display', serif;
}

.step-description {
    margin: 0;
    font-size: 0.875rem;
    color: var(--neutral-600);
    font-family: 'Poppins', serif;
}

/* Requirements grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.requirement-item {
    padding: 1rem;
    background: var(--neutral-50);
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.requirement-title {
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
}

.requirement-description {
    font-size: 0.875rem;
    color: var(--neutral-600);
    font-family: 'Poppins', serif;
}

/* === SUMMARY LIST === */
.summary-list {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.summary-list__row {
    display: flex;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--neutral-100);
}

.summary-list__row:last-child {
    border-bottom: none;
}

.summary-list__key {
    font-weight: 600;
    color: var(--neutral-700);
    flex: 0 0 35%;
}

.summary-list__value {
    flex: 1;
    color: var(--neutral-900);
}

.summary-list__actions {
    flex: 0 0 15%;
    text-align: right;
}

/* === NOTIFICATION BANNER === */
.notification-banner {
    background: white;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.notification-banner--success {
    border-left-color: var(--accent-green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.notification-banner__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* === PANEL === */
.panel {
    background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    margin-bottom: 2rem;
}

.panel__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.panel__body {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

/* === INSET TEXT === */
.inset-text {
    padding: 1.5rem;
    background: var(--neutral-100);
    border-left: 4px solid var(--primary-color);
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

/* === WARNING TEXT === */
.warning-text {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.02) 100%);
    border-left: 4px solid var(--accent-red);
    font-family: 'Poppins', serif;
    border-radius: 0.5rem;
    display: flex;
    align-items: start;
    gap: 1rem;
    margin: 1.5rem 0;
}

.warning-text__icon {
    width: 40px;
    height: 40px;
    background: var(--accent-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.warning-title {
    font-size: 1rem;
    color: var(--neutral-900);
    display: block;
}

.warning-description {
    margin: 0.5rem 0 0 0;
    font-size: 0.875rem;
    color: var(--neutral-600);
}


/* === FOOTER === */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-300);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer__inline-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 0;
    margin: 0 0 2rem 0;
}

.footer__link {
    color: var(--neutral-300);
    font-size: 0.875rem;
}

.footer__link:hover {
    color: white;
}

/* === TABLES === */
.table {
    width: 100%;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.table__head {
    background: var(--neutral-50);
}

.table__header,
.table__cell {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--neutral-100);
}

.table__header {
    font-weight: 600;
    color: var(--neutral-700);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.table__row:last-child .table__cell {
    border-bottom: none;
}

.table__row:hover {
    background: var(--neutral-50);
}

/* === STATUS BADGES === */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.status-confirmed {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.status-completed {
    background: rgba(107, 114, 128, 0.1);
    color: #4b5563;
}

/* === SIDEBAR === */
.app-related-items {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.app-related-items h2 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neutral-900);
}

.app-related-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-related-items li {
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.app-related-items a {
    font-family: 'Poppins';
    font-size: 0.875rem;
}

/* Pricing cards */
.pricing-card {
    padding: 1rem;
    border-radius: 0.75rem;
    margin-top: 1rem;
}

.pricing-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.pricing-secondary {
    background: var(--neutral-100);
}

.price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.pricing-secondary .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
}

.price-description {
    font-size: 0.875rem;
    opacity: 0.9;
}

.pricing-secondary .price-description {
    color: var(--neutral-600);
    opacity: 1;
}

/* Help cards */
.help-card {
    padding: 1rem;
    background: var(--neutral-50);
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.help-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--neutral-900);
}

.help-number {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.help-hours {
    font-size: 0.75rem;
    color: var(--neutral-500);
}

.help-email {
    font-size: 0.875rem;
    color: var(--neutral-600);
    font-family: 'Playfair Display', serif;
}

.help-email a {
    color: var(--primary-color);
}



.help-email a:hover {
    color: var(--primary-dark);
}

/* FAQ section */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}


.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.faq-item p {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin: 0;
    font-family: 'Poppins', serif;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .grid-row {
        grid-template-columns: 1fr;
    }

    .grid-column-two-thirds,
    .grid-column-one-third,
    .grid-column-one-half {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .booking-progress__steps {
        flex-direction: column;
        gap: 1.5rem;
    }

    .booking-progress__steps::before {
        display: none;
    }

    .summary-list__row {
        flex-direction: column;
    }

    .summary-list__key,
    .summary-list__value,
    .summary-list__actions {
        width: 100%;
    }

    .button-group {
        flex-direction: column;
    }

    .button-group a {
        width: 100%;
        justify-content: center;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.main-wrapper>* {
    animation: fadeInUp 0.5s ease-out;
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-8 {
    margin-top: 4rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 3rem;
}

.mb-8 {
    margin-bottom: 4rem;
}

.mb-12 {
    margin-bottom: 6rem;
}

.-font-weight-bold {
    font-weight: 700;
}

/* SVG sizing */
.icon-sm {
    width: 20px;
    height: 20px;
}

.icon-md {
    width: 32px;
    height: 32px;
}


/* =========================
   GLOBAL TYPOGRAPHY
========================= */
.services-page {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fb;
    /*padding: 4rem 1.5rem;*/
}

.services-page h1,
.services-page h2,
.services-page h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.3px;
}

/* =========================
   HERO
========================= */
.services-hero {
    margin-bottom: 5rem;
}


.services-hero h1 {
    font-size: 3.2rem;
    color: #fff;
    margin: 2rem 0;
}

.services-hero p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 650px;
    margin: auto;
}

/* =========================
   SECTION HEADERS
========================= */
.services-section h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111;
}

.services-section {
    margin-bottom: 6rem;
}
/* =========================
   SERVICE GRID
========================= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* =========================
   SERVICE CARD (PREMIUM)
========================= */
.service-card {
    background: #ffffff;
    padding: 2.8rem 2.4rem;
    border-radius: 1.6rem;
    border: 1.5px solid rgba(0,0,0,0.05);
    position: relative;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.05),
        0 40px 80px rgba(0,0,0,0.04);
    transition: all .35s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    transition: border .35s ease;
    pointer-events: none;

}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card:hover::before {
    border-color: var(--accent-color);
}

/* Highlighted / Popular */
.service-card.highlighted::before {
    border-color: var(--accent-color);
}

.service-card.highlighted {
    box-shadow:
        0 20px 40px rgba(0,0,0,0.08),
        0 60px 120px rgba(0,0,0,0.06);
}

/* =========================
   ICON
========================= */
.service-icon {
    font-size: 2.4rem;
    margin-bottom: 1.4rem;
}

/* =========================
   TEXT
========================= */
.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: .8rem;
    color: #111;
}

.service-desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

/* =========================
   FEATURES
========================= */
.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: .95rem;
    color: #333;
    margin-bottom: .7rem;
    padding-left: 1.4rem;
    position: relative;
}

.service-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

/* =========================
   PRICE
========================= */
.service-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.6rem;
}

.service-price span {
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    color: #666;
    display: block;
    margin-top: .3rem;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 1rem 1.6rem;
    border-radius: .8rem;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        #0a2f66
    );
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* =========================
   PREMIUM FAST TRACK
========================= */
.services-section.premium {
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 2rem;
    border: 2px solid var(--accent-color);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.06);
}

.premium-box h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.timeline {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    font-weight: 500;
}

.timeline div strong {
    color: var(--primary-color);
}

/* =========================
   EXTRAS
========================= */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.extra-card {
    background: #fff;
    padding: 2.2rem;
    border-radius: 1.4rem;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.extra-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* =========================
   TABLE (CLEAN + PREMIUM)
========================= */
.table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: var(--primary-color);
    color: #fff;
    padding: 1.2rem;
    font-weight: 600;
}

td {
    padding: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

tbody tr:hover {
    background: #fafafa;
}


/*** END OF SERVICES PAGE STYLES ***/
/*fast track page*/

.fasttrack-page {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fb;
}

/* HERO */
.fasttrack-hero, .services-hero, .faq-hero, .contact-hero {
    text-align: start;
    padding: 5rem 2rem;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        #081f44
    );
    color: #fff;
}

.fasttrack-hero h1 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.fasttrack-hero p {
    max-width: 720px;
    margin: 1rem;
    font-size: 0.9rem;
    opacity: .95;
    color: #eee;
}

.fasttrack-hero .button--primary:hover {
    color: var(--accent-color);
}

/* SECTIONS */
.fasttrack-section {
    padding: 4.5rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.fasttrack-section.alt {
    background: #fff;
    border-radius: 2rem;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 1.8rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.4rem;
    border: 2px solid var(--accent-color);
    font-weight: 600;
    text-align: center;
}

/* STEPS */
.steps {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.step {
    background: #fff;
    padding: 2rem;
    border-radius: 1.4rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.step span {
    display: inline-block;
    background: var(--accent-color);
    color: #000;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: .8rem;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 2.5rem;
}

.pricing-card {
    background: #fff;
    padding: 3rem;
    border-radius: 1.8rem;
    box-shadow: 0 30px 80px rgba(0,0,0,.08);
    position: relative;
}

.pricing-card.popular {
    border: 3px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--accent-color);
    padding: .4rem 1rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
}

.price-stack span {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}

.price-stack strong {
    display: block;
    font-size: 2.2rem;
    margin-top: .5rem;
}

/* GUARANTEE */
.guarantee-box {
    background: var(--primary-color);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.guarantee-box h2 {
    color: #f7f7f7;
    font-family: 'Playfair Display', serif;
}

.guarantee-box p {
    color: #eee;
    font-family: 'Poppins', serif;
}

/* TESTIMONIALS */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.4rem;
    border-left: 4px solid var(--accent-color);
}

/* CTA */
.fasttrack-cta {
    text-align: center;
    padding: 5rem 2rem;
    background: #fff;
}


.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
}

/* BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* CARD */
.benefit-card {
    background: #ffffff;
    padding: 2.6rem 2.4rem;
    border-radius: 1.6rem;
    position: relative;
    border: 1px solid #eee;
    transition: all .35s ease;
}

/* Accent border highlight */
.benefit-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--accent-color);
    border-radius: 1.6rem 0 0 1.6rem;
}

/* Icon */
.benefit-card i {
    font-size: 1.9rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

/* Title */
.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: .7rem;
    color: #0b0c0c;
    font-weight: 600;
}

/* Text */
.benefit-card p {
    font-size: .95rem;
    line-height: 1.65;
    color: #505a5f;
}

/* Hover refinement */
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

//faqs

.faq-page {
    padding: 4rem 0;
}

.faq-hero, .contact-hero {
    margin-bottom: 3rem;
    padding: 5rem;
    /*text-align: start;*/
    /*background: var(--accent-color);*/
    
    
}

.faq-hero h1, .contact-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #f7f7f7;
}

.faq-hero p, .contact-hero p {
    margin: 0 auto;
    color: #ddd;
}

.faq-section-title {
    font-size: 1.5rem;
    margin: 3rem 0 1rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 0;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    color: #333;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-item.active .faq-question::after {
    content: "–";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1rem;
    color: #475569;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-cta {
    background: var(--bg-light);
    border: 1px solid var(--accent-color);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
}


/*/////////////contact page///////////*/

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== INFO CARDS ===== */
.contact-info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: #fff;
    padding: 1.8rem;
    border-radius: 14px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: .5rem;
}

/* ===== FORM ===== */
.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 15px 50px rgba(0,0,0,.08);
}

.form-group {
    margin-bottom: 1.4rem;
}

label {
    font-weight: 500;
    display: block;
    margin-bottom: .4rem;
}

input, textarea {
    width: 100%;
    padding: .9rem 1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: .95rem;
}

textarea {
    min-height: 140px;
}

button {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    opacity: .9;
}

/* ===== STATUS ===== */
.alert {
    padding: 1rem 1.4rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.alert.success {
    background: #e7f1ff;
    color: var(--accent-color);
}

.alert.error {
    background: #ffe7e7;
    color: #c0392b;
}

.site-footer {
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 4.5rem 0 2rem;
    font-family: 'Poppins', sans-serif;
}

.footer-nav {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-tagline {
    margin-top: 0.9rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    font-size: 0.9rem;
    color: #444;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--accent-color);
}

/* Bottom */
.footer-bottom {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.25rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.footer-copy {
    font-size: 0.85rem;
    color: #777;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-nav {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
