@import url('../components/service-page-header.css');
/* Improve selection contrast on Contact Us page */
body[data-page="contact-us"] ::selection {
    background: var(--primary-dark);
    color: var(--white);
}
body[data-page="contact-us"] ::-moz-selection {
    background: var(--primary-dark);
    color: var(--white);
}
.breadcrumb-container{
    background-color: #f3f4f6 !important;
 }

/* Push breadcrumb below header only on Contact Us page */
body[data-page="contact-us"] .breadcrumb-container {
    margin-top: 30px;
}

@media (max-width: 768px) {
    body[data-page="contact-us"] .breadcrumb-container {
        margin-top: 20px;
    }
}

:root {
    --primary: linear-gradient(135deg, rgba(26, 54, 93, 0.95), rgba(26, 54, 93, 0.85))/*#2563eb*/;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary: #0ea5e9;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --white: #ffffff;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.2s ease;
    --max-width: 1200px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-light, 300);
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.2;
}
/* Ensure readable page title on light background, regardless of OS dark mode */
body[data-page="contact-us"] .page-title {
    color: #1f2937;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact options */
.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 40px 0 40px 0;
}

.contact-option {
    padding: 80px 48px;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: none;
    text-align: center;
}

.contact-option:hover {
    border-color: var(--gray-300);
    background: #f9fafb;
}

.contact-option:active {
    background: #f3f4f6;
}

.contact-option::after { display: none; }

.contact-option.active {
    border-color: #93c5fd; /* blue-300 */
    background: #dbeafe; /* blue-100 */
    color: #1f2937; /* gray-800 for readable text */
}

/* Selected colors per option */
.contact-option.active[data-target="pricing-quote-section"] {
    border-color: #86efac; /* green-300 */
    background: #dcfce7; /* green-100 */
}

.contact-option.active[data-target="email-section"] {
    border-color: #c4b5fd; /* purple-300 */
    background: #e9d5ff; /* purple-200 */
}

.contact-option i {
    font-size: 2rem;
}

/* Contact sections */
.sections-wrapper {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Pricing & Quote section */
.pricing-wrapper {
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    padding: 32px;
}

.pricing-header {
    margin-bottom: 16px;
}

.pricing-controls {
    margin: 4px 0 20px 0;
}

.pricing-card {
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.pricing-card-inner {
    padding: 24px;
}

.pricing-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #fff;
    background: #2563eb;
    margin-bottom: 10px;
}

.pricing-title {
    font-size: 1.25rem;
    margin: 0 0 10px 0;
}

.pricing-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 14px;
}

.meta-item {
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 12px;
}

.meta-item i { color: var(--primary-dark); }

.meta-label { color: var(--gray-500); font-size: 0.8rem; }
.meta-value { color: var(--gray-900); font-weight: 700; }

.pricing-deliverables h4 {
    margin: 8px 0;
}

.pricing-deliverables ul {
    margin: 0;
    padding-left: 18px;
}

.pricing-actions {
    margin-top: 16px;
}

/* Badge colors per category */
.pricing-badge[data-cat="energy-modeling"] { background: #1d4ed8; }
.pricing-badge[data-cat="building-envelope"] { background: #047857; }
.pricing-badge[data-cat="sustainability"] { background: #6d28d9; }
.pricing-badge[data-cat="energy-study"] { background: #0ea5e9; }
.pricing-badge[data-cat="airtightness"] { background: #ea580c; }
.pricing-badge[data-cat="certificates"] { background: #4f46e5; }

/* Accent border on pricing card to match category */
.pricing-card[data-cat="energy-modeling"] { box-shadow: 0 0 0 3px rgba(29,78,216,0.12); }
.pricing-card[data-cat="building-envelope"] { box-shadow: 0 0 0 3px rgba(4,120,87,0.12); }
.pricing-card[data-cat="sustainability"] { box-shadow: 0 0 0 3px rgba(109,40,217,0.12); }
.pricing-card[data-cat="energy-study"] { box-shadow: 0 0 0 3px rgba(14,165,233,0.12); }
.pricing-card[data-cat="airtightness"] { box-shadow: 0 0 0 3px rgba(234,88,12,0.12); }
.pricing-card[data-cat="certificates"] { box-shadow: 0 0 0 3px rgba(79,70,229,0.12); }

/* Embedded Submit Project overrides */
.submit-project.embedded {
    padding: 0;
}
.submit-project.embedded .project-form {
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    padding: 32px;
}
.submit-project.embedded .form-section {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
}
.submit-project.embedded .form-status {
    margin-top: 8px;
}

.contact-section {
    display: none;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-section.active {
    display: block;
}

/* Step content visibility - only active step shows */
.step-content { display: none; }
.step-content.active { display: block; }

/* Email Contact Form */
.email-section {
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-subtitle {
    color: var(--gray-600);
    margin-bottom: 40px;
    font-size: 1.125rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: var(--transition);
    background: var(--white);
}

/* Inline validation messages */
.field-error {
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--error);
}
.form-control.input-error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

select.form-control {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* File upload styles */
.file-input-group {
    position: relative;
    margin-bottom: 20px;
}

.file-input-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    transition: var(--transition);
    cursor: pointer;
}

.file-input-label:hover {
    border-color: var(--primary-light);
    background: rgba(59, 130, 246, 0.05);
}

.file-input-icon {
    font-size: 2rem;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.file-input-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-align: center;
}

.file-input-text strong {
    color: var(--primary);
    font-weight: 500;
}

.file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-list {
    margin-top: 15px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gray-100);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

.file-item-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.file-item-icon {
    color: var(--gray-500);
}

.file-item-size {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.file-item-remove {
    color: var(--error);
    cursor: pointer;
    border: none;
    background: transparent;
    font-size: 1rem;
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.02);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-outline:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Hero section styles */
.who-we-are-hero {
    position: relative;
    height: 75vh;
    min-height: 300px;
    background: image-set(
    url('../../images-opt/contact-us-1-w1280.avif') type('image/avif') 1x,
    url('../../images-opt/contact-us-1-w1920.avif') type('image/avif') 2x,
    url('../../images-opt/contact-us-1-w1280.webp') type('image/webp') 1x,
    url('../../images-opt/contact-us-1-w1920.webp') type('image/webp') 2x,
    url('../../images-opt/contact-us-1-w1280.jpg') type('image/jpeg') 1x,
    url('../../images-opt/contact-us-1-w1920.jpg') type('image/jpeg') 2x
  );
  background-image: url('../../images/contact-us-1.jpg'); /* Fallback */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    margin-top: 0px;
     
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a365d93; /* linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(14, 165, 233, 0.9)); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 690px;
    padding: 0 20px;
    margin-top: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
}

.hero-tagline {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.success-text {
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* Booking Section */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

/* Emphasize Pricing selectors labels */
label.form-label[for="pq-category"],
label.form-label[for="pq-detail"] {
    font-weight: 700;
    color: var(--gray-900);
}

/* Calendar Section */
.calendar-section {
    padding: 40px;
    border-right: 1px solid var(--gray-200);
}

.month-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.current-month {
    font-weight: 600;
    font-size: 1.125rem;
}

.month-nav {
    display: flex;
    gap: 12px;
}

.month-btn {
    background: var(--gray-100);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-700);
    transition: var(--transition);
}

.month-btn:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.month-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.calendar {
    width: 100%;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 12px;
}

.weekday {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    padding: 8px 0;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.day:hover:not(.disabled):not(.selected) {
    background: var(--gray-100);
}

.day.outside {
    color: var(--gray-400);
}

.day.today {
    font-weight: 700;
}

.day.today::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
}

.day.has-slots::before {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
}

.day.selected {
    background: var(--primary);
    color: var(--white);
}

.day.disabled {
    color: var(--gray-300);
    cursor: not-allowed;
    background: transparent;
}

/* Time slot section */
.time-slot-section {
    margin-top: 30px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 10px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.time-slot:hover {
    background: var(--gray-200);
    border-color: var(--gray-300);
}

.time-slot.selected {
    background: var(--primary-light);
    color: var(--white);
    border-color: var(--primary);
}

/* Details Section */
.details-section {
    padding: 40px;
    background: var(--white);
}

.booking-steps {
    display: flex;
    margin-bottom: 30px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 12px;
    right: -40%;
    width: 80%;
    height: 2px;
    background: var(--gray-200);
    z-index: 1;
}

.step.active:not(:last-child)::after {
    background: var(--primary-light);
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0 auto 8px;
    position: relative;
    z-index: 2;
}

.step.active .step-number {
    background: var(--primary);
    color: var(--white);
}

.step.completed .step-number {
    background: var(--success);
    color: var(--white);
}

.step-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

.step.active .step-label {
    color: var(--gray-900);
    font-weight: 600;
}

.booking-summary {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
}

.summary-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.summary-icon {
    color: var(--primary);
    font-size: 1rem;
    margin-right: 12px;
    margin-top: 2px;
}

.summary-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.summary-value {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--gray-800);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

/* Timezone selector */
.timezone-selector {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.875rem;
}

.timezone-label {
    margin-right: 10px;
    color: var(--gray-600);
}

.timezone-value {
    font-weight: 500;
    color: var(--gray-800);
    background: var(--gray-100);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* Booking confirmation */
.booking-confirmation {
    text-align: center;
    padding: 40px 20px;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.confirmation-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.confirmation-message {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.confirmation-details {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .container {
        padding: 60px 20px;
    }

    .page-title {
        font-size: 2rem;
    }

    .booking-wrapper {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .calendar-section,
    .details-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-header {
        margin-bottom: 40px;
    }

    .page-title {
        font-size: 1.75rem;
        word-wrap: break-word;
    }

  .contact-options { 
    grid-template-columns: 1fr; 
    gap: 16px;
  }
  .contact-option { 
    width: 100%; 
    padding: 28px 22px; 
    font-size: 1.1rem; 
    min-height: 64px;
    box-sizing: border-box;
  }

    .email-section {
        padding: 32px 24px;
        box-sizing: border-box;
    }
    
    .pricing-wrapper {
        padding: 24px 16px;
        box-sizing: border-box;
    }

    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .pricing-meta {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .meta-item {
        padding: 10px;
        gap: 8px;
    }

    .time-slots { grid-template-columns: repeat(2, 1fr); }
    
    .bundle-options-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tier-pill {
        min-width: 100%;
        flex: none;
    }

    /* On mobile, show both panels stacked; step content visibility is handled per-step */
}

@media (max-width: 576px) {
    .container {
        padding: 32px 16px;
        max-width: 100%;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
    
    .contact-option {
        padding: 20px 16px;
        font-size: 1rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-option i {
        font-size: 1.5rem;
    }

  .calendar-section,
  .details-section {
        padding: 20px;
    }

    .time-slots { 
        grid-template-columns: 1fr; 
        gap: 8px;
    }
    
    .pricing-wrapper {
        padding: 20px 12px;
        border-radius: 20px;
    }
    
    .pricing-card {
        border-radius: 16px;
    }
    
    .pricing-card-inner {
        padding: 16px 12px;
    }
    
    .pricing-title {
        font-size: 1.1rem;
    }
    
    .pricing-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .meta-label {
        font-size: 0.7rem;
    }
    
    .meta-value {
        font-size: 0.9rem;
    }
    
    .tier-options-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .tier-pill {
        width: 100%;
        justify-content: space-between;
    }
    
    .addon-item {
        padding: 0.625rem;
        font-size: 0.8rem;
    }
    
    .addon-name {
        font-size: 0.75rem;
    }
    
    .addon-price {
        font-size: 0.8rem;
    }
    
    .email-section {
        padding: 24px 16px;
        border-radius: 20px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.875rem;
    }
    
    select.form-control {
        padding-right: 32px;
        background-size: 14px;
    }
    
    .booking-wrapper {
        border-radius: 20px;
    }
    
    .booking-steps {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .step {
        flex: 1 1 auto;
        min-width: 100px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }

    /* Step 3 actions: full-width stacked for small screens */
    #step3 .form-actions { 
        flex-direction: column; 
        align-items: stretch;
        gap: 12px;
    }
    #step3 .form-actions .btn { 
        width: 100%; 
        min-height: 44px; 
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

.section-title, .section-subtitle {
    text-decoration: none;
}

/* Bundle pricing extras - Compact horizontal layout */
.bundle-extras-section {
    margin-top: 1rem;
    padding: 1rem;
    background: #fafbfc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.bundle-options-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    align-items: start;
}

.tier-options-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tier-pill {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 140px;
}

.tier-pill:hover {
    border-color: #3b82f6;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.1);
}

.tier-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tier-pill:has(input:checked) {
    border-color: #3b82f6;
    background: #eff6ff;
}

.tier-pill:has(input:checked) .tier-label {
    color: #2563eb;
    font-weight: 600;
}

.tier-pill:has(input:checked) .tier-price {
    color: #2563eb;
}

.tier-label {
    font-size: 0.8125rem;
    color: #475569;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tier-price {
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-left: auto;
}

.addons-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.addon-item:hover {
    border-color: #8b5cf6;
}

.addon-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #8b5cf6;
    flex-shrink: 0;
}

.addon-item:has(input:checked) {
    border-color: #8b5cf6;
    background: #faf5ff;
}

.addon-name {
    flex: 1;
    font-size: 0.8125rem;
    color: #475569;
}

.addon-price {
    font-size: 0.875rem;
    color: #8b5cf6;
    font-weight: 600;
    flex-shrink: 0;
}

.bundle-cost-breakdown {
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    background: #f0fdf4;
    border-left: 3px solid #10b981;
    border-radius: 4px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: #475569;
}

.breakdown-item:first-child {
    padding-top: 0;
}

.breakdown-item.addon-breakdown {
    padding-left: 0.75rem;
    font-size: 0.8125rem;
    opacity: 0.9;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0 0 0;
    margin-top: 0.5rem;
    border-top: 1px solid #10b981;
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
}

/* Minimal bullet points for deliverables */
.pricing-deliverables {
    margin-top: 1rem;
}

.pricing-deliverables h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    margin: 0 0 0.625rem 0;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.pricing-deliverables ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-deliverables li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #475569;
}

.pricing-deliverables li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.625rem;
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
}

/* Consistent pricing card layout */
.pricing-card {
    margin-top: 1.5rem;
}

.pricing-card-inner {
    padding: 1.5rem;
}

.pricing-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 0.5rem;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.pricing-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.meta-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.meta-item i {
    color: #10b981;
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 0.25rem;
}

.meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.pricing-actions {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e5e7eb;
}

/* Additional responsive fixes for very small screens */
@media (max-width: 414px) {
    .container {
        padding: 24px 12px;
    }
    
    .page-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .pricing-wrapper,
    .email-section,
    .booking-wrapper {
        padding: 16px 10px;
        border-radius: 16px;
    }
    
    .pricing-card-inner {
        padding: 14px 10px;
    }
    
    .contact-option {
        padding: 16px 12px;
        font-size: 0.95rem;
    }
    
    .tier-pill {
        padding: 0.5rem 0.625rem;
        font-size: 0.75rem;
    }
    
    .tier-label,
    .tier-price {
        font-size: 0.75rem;
    }
    
    .bundle-cost-breakdown {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .breakdown-item {
        font-size: 0.8rem;
    }
    
    .breakdown-total {
        font-size: 0.9rem;
    }
    
    .pricing-deliverables li {
        font-size: 0.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .bundle-options-row {
        grid-template-columns: 1fr;
    }
    
    .tier-pill {
        min-width: 100%;
    }
    
    .bundle-extras-section {
        padding: 0.875rem;
    }
    
    .pricing-deliverables h4 {
        font-size: 0.8rem;
    }
}