* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

/* Color Variables */
:root {
    --primary-color: #FF6B35;
    --primary-hover: #E55A2B;
    --black: #000000;
    --white: #ffffff;
    --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;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.text-primary {
    color: var(--primary-color);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Outlined button for light backgrounds (hero uses .btn-outline with white text) */
.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: rgba(255, 107, 53, 0.08);
}

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

.btn-secondary:hover {
    background-color: var(--gray-100);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    font-size: 1.25rem;
}

.truck-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-cta {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-background {
    position: absolute;
    inset: 0;
    background-color: #111827;
    background-image: url("images/trailer_image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(160deg, rgba(255, 107, 53, 0.18) 0%, transparent 42%, rgba(15, 23, 42, 0.5) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.58) 100%),
        radial-gradient(ellipse 90% 70% at 50% 40%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 4xl;
    padding: 0 1rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Sections */
.services,
.why-choose,
.how-preview,
.payment,
.local-business,
.company-story,
.team-members,
.values,
.contact-content,
.service-area {
    padding: 4rem 0;
}

.about-hero,
.contact-hero {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

.simple-page {
    padding: 4rem 0 5rem;
    background: var(--white);
}

.simple-page--alt {
    background: var(--gray-50);
}

.page-coming-inner {
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

.page-coming-inner > p:not(.page-coming-label) {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    color: var(--gray-600);
}

.page-coming-label {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 1rem;
}

.faq-list {
    max-width: 40rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.faq-item h2 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.faq-answer {
    margin: 0;
    color: var(--gray-500);
    font-style: italic;
    font-size: 0.9375rem;
}

.faq-footer-cta {
    margin: 2rem 0 0;
    color: var(--gray-600);
}

.faq-footer-cta a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.faq-footer-cta a:hover {
    text-decoration: underline;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    background-color: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Why Choose Us */
.why-choose {
    background-color: var(--gray-50);
}

.section-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.why-choose .section-header h2 {
    margin-bottom: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 1.75rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.25);
}

.why-icon {
    background-color: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 50%;
    width: 3.75rem;
    height: 3.75rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary-color);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    margin-bottom: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
}

/* How It Works (Preview) */
.how-preview {
    background-color: var(--white);
}

.preview-hint {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-500);
}

.how-preview .section-header p {
    margin-bottom: 0;
}

.how-preview-steps {
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.how-preview-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.how-preview-step:hover {
    border-color: rgba(255, 107, 53, 0.35);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.how-preview-num {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.how-preview-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.35;
}

.how-preview-cta {
    text-align: center;
}

.how-preview-cta .btn-secondary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.how-preview-cta .btn-secondary:hover {
    background-color: rgba(255, 107, 53, 0.08);
}

/* Pricing Card */
.pricing-card {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 4xl;
    margin: 0 auto;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-overlay-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
}

.pricing-card h3 {
    text-align: center;
    margin-bottom: 1.25rem;
}

.pricing-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(3px);
}

.pricing-overlay-label {
    margin: 0;
    font-size: clamp(1.35rem, 3.5vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pricing-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.pricing-column ul {
    list-style: none;
}

.pricing-column li {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

/* Payment Section */
.payment {
    background-color: var(--gray-50);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.payment-option {
    text-align: center;
}

.payment-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color);
    margin: 0 auto 1rem;
}

.payment-option h3 {
    margin-bottom: 0.5rem;
}

.payment-option p {
    font-size: 0.875rem;
}

.payment-cta {
    background-color: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 7rem;
}

.payment-cta h3 {
    margin-bottom: 1rem;
}

.payment-cta p {
    margin-bottom: 1rem;
}

/* Local Business Section */
.local-business {
    background-color: var(--gray-50);
}

.location-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.location-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary-color);
}

.local-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

/* About Page Styles */
.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 1.75rem;
    align-items: start;
}

.owner-card {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 1.75rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.owner-photo {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid rgba(255, 107, 53, 0.2);
}

.owner-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.owner-info h3 {
    margin-bottom: 0.35rem;
    font-size: 1.25rem;
}

.owner-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.owner-bio-lead {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0 0 0.75rem;
    text-align: left;
    color: var(--gray-700);
}

.owner-bio {
    font-size: 0.9375rem;
    line-height: 1.65;
    text-align: left;
    color: var(--gray-700);
    margin: 0;
}

.owner-bio-details {
    text-align: left;
    margin-top: auto;
    padding-top: 0.25rem;
}

.owner-bio-summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-color);
    list-style: none;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.owner-bio-summary::-webkit-details-marker {
    display: none;
}

.owner-bio-summary:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 0.25rem;
}

.owner-bio-summary::after {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -0.2rem;
    transition: transform 0.2s ease;
}

.owner-bio-details[open] .owner-bio-summary::after {
    transform: rotate(-135deg);
    margin-top: 0.15rem;
}

.owner-bio-full {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--gray-600);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid var(--gray-200);
}

.owner-bio-full p {
    margin: 0 0 1rem;
}

.owner-bio-full p:last-child {
    margin-bottom: 0;
}

.owner-bio-full p.owner-bio-subhead {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-800);
    margin: 1.35rem 0 0.4rem;
}

.owner-bio-full p.owner-bio-subhead + p {
    margin-top: 0;
}

.owner-quote {
    margin: 1rem 0 0;
    padding: 1rem 1rem 1rem 1.1rem;
    border-left: 3px solid var(--primary-color);
    background: var(--gray-50);
    border-radius: 0 0.375rem 0.375rem 0;
    font-style: italic;
    color: var(--gray-700);
    font-size: 0.875rem;
    line-height: 1.55;
    text-align: left;
}

.owner-quote-cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--gray-600);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
}

.value-icon {
    background-color: rgba(255, 107, 53, 0.1);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
}

.phone-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.message-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-submit {
    width: 100%;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-card-header svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-color);
}

.contact-card-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.contact-details {
    color: var(--gray-600);
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.email {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.hours-note,
.emergency,
.location-note {
    font-size: 0.75rem;
    margin-top: 0.75rem;
}

/* Service Area */
.service-area {
    background-color: var(--gray-50);
}

.service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.area-card {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.area-card h3 {
    margin-bottom: 0.5rem;
}

.area-card p {
    font-size: 0.875rem;
}

/* Quick Action */
.action-card {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.calendar-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
}

.action-card h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.action-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-cta {
        display: inline-flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-details {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.why-card,
.how-preview-step,
.how-full-step,
.owner-card,
.contact-card,
.feature-card,
.faq-item {
    animation: fadeIn 0.6s ease-out;
}

/* Focus states for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

/* form elements Classes */
/* Core contact form styling — make it match your static HTML design */

/* Form container */
.contact-message-feedback-form,
.contact-message-personal-form {  /* adjust if you have custom categories */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Each field wrapper */
.form-item {
  margin-bottom: 0; /* reset core margins */
}

/* Make core wrappers behave like your .form-group */
.js-form-item,
.form-item {
  display: flex;
  flex-direction: column;
}

/* Labels */
.js-form-item label,
.form-required label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
  display: block;
}

/* Required asterisk styling (optional — make it orange like primary) */
.form-required label::after {
  content: " *";
  color: var(--primary-color);
}

/* Inputs, selects, textarea */
.form-text,
.form-email,
.form-tel,
.form-number,
.form-date,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

/* Focus state — matches your design */
.form-text:focus,
.form-email:focus,
.form-tel:focus,
.form-number:focus,
.form-date:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Textarea specific (message field) */
.form-textarea {
  min-height: 120px; /* taller like your rows="4" */
  resize: vertical;
}

/* Select dropdown arrow styling (optional polish) */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
  appearance: none;
}

/* Submit button — make it match your .btn-primary.btn-lg */
.contact-message-feedback-form .form-actions input[type="submit"],
.contact-message-personal-form .form-actions input[type="submit"] {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-message-feedback-form .form-actions input[type="submit"]:hover,
.contact-message-personal-form .form-actions input[type="submit"]:hover {
  background-color: var(--primary-hover);
}