/*
Theme Name: LightSpeed Moving and Storage
Theme URI: https://www.lightspeedmovingstorage.com
Author: LightSpeed Moving and Storage
Description: Professional WordPress theme for LightSpeed Moving and Storage - Memphis, TN
Version: 2.0
License: All Rights Reserved
Text Domain: lightspeed-moving
*/

/* ============================================
   CSS VARIABLES - LIGHTSPEED BRAND COLORS
   ============================================ */
:root {
    --primary-navy: #1a2744;
    --primary-navy-dark: #0f1a2e;
    --primary-navy-light: #243352;
    --accent-gold: #f5c518;
    --accent-gold-dark: #d4a90f;
    --accent-gold-light: #ffe14d;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --light-gray: #e8ecf2;
    --medium-gray: #8895a7;
    --dark-gray: #3d4f63;
    --text-primary: #1a2744;
    --text-secondary: #3d4f63;
    --text-light: #8895a7;
    --success-green: #28a745;
    --gradient-hero: linear-gradient(135deg, #1a2744 0%, #243352 50%, #1a2744 100%);
    --gradient-gold: linear-gradient(135deg, #f5c518 0%, #d4a90f 100%);
    --gradient-cta: linear-gradient(135deg, #f5c518 0%, #e8b40e 100%);
    --shadow-sm: 0 2px 8px rgba(26, 39, 68, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 39, 68, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 39, 68, 0.16);
    --shadow-gold: 0 4px 20px rgba(245, 197, 24, 0.3);
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 16px;
    --transition-fast: all 0.2s ease;
    --transition-med: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
    --font-body: 'Open Sans', 'Segoe UI', sans-serif;
    --max-width: 1200px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.6em; }
h4 { font-size: 1.3em; }

p { margin-bottom: 1em; }

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    background: var(--primary-navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-top-bar {
    background: var(--primary-navy-dark);
    padding: 6px 0;
    font-size: 0.85em;
    color: var(--medium-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-bar a {
    color: var(--accent-gold);
}

.header-top-bar a:hover {
    color: var(--accent-gold-light);
}

.header-main {
    padding: 12px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo img {
    height: 55px;
    width: auto;
}

.site-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5em;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.site-logo .logo-text span {
    color: var(--accent-gold);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: var(--white);
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.92em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    transition: var(--transition-fast);
    border-bottom: 3px solid transparent;
}

.nav-links li a:hover,
.nav-links li.current-menu-item a {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

/* Dropdown Menu */
.nav-links li .sub-menu,
.nav-links li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-navy);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--accent-gold);
    z-index: 1001;
    list-style: none;
    padding: 0;
}

.nav-links li:hover .sub-menu,
.nav-links li:hover > ul {
    display: block;
}

.nav-links li .sub-menu li a,
.nav-links li ul li a {
    padding: 12px 20px;
    font-size: 0.88em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-transform: none;
}

.nav-links li .sub-menu li a:hover,
.nav-links li ul li a:hover {
    background: var(--primary-navy-light);
    padding-left: 25px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1em;
    white-space: nowrap;
}

.header-phone:hover {
    color: var(--accent-gold-light);
}

.btn-quote {
    background: var(--gradient-cta);
    color: var(--primary-navy) !important;
    padding: 10px 22px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition-med);
    display: inline-block;
    white-space: nowrap;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    background: var(--off-white);
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.9em;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.breadcrumb-nav a {
    color: var(--primary-navy);
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    color: var(--accent-gold-dark);
}

.breadcrumb-separator {
    color: var(--text-light);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero-section {
    background: var(--gradient-hero);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--white));
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--white);
}

.hero-text h1 {
    color: var(--white);
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text h1 span {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95em;
}

.hero-badge-icon {
    width: 20px;
    height: 20px;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--primary-navy);
    padding: 14px 32px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition-med);
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition-med);
    display: inline-block;
    text-align: center;
}

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

/* Hero Quote Form */
.hero-form-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.hero-form-card h3 {
    text-align: center;
    margin-bottom: 5px;
    font-size: 1.4em;
    color: var(--primary-navy);
}

.hero-form-card .form-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9em;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88em;
    margin-bottom: 5px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    font-size: 0.95em;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
}

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

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-cta);
    color: var(--primary-navy);
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-med);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    padding: 70px 0;
}

.content-section.bg-light {
    background: var(--off-white);
}

.content-section.bg-navy {
    background: var(--primary-navy);
    color: var(--white);
}

.content-section.bg-navy h2,
.content-section.bg-navy h3 {
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header .section-label {
    display: inline-block;
    background: rgba(245, 197, 24, 0.12);
    color: var(--accent-gold-dark);
    padding: 5px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1em;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 35px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-med);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-med);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 55px;
    height: 55px;
    background: rgba(245, 197, 24, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.8em;
}

.service-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95em;
    line-height: 1.6;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-gold-dark);
    font-weight: 600;
    font-size: 0.9em;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card .card-link:hover {
    gap: 10px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
}

.process-step {
    text-align: center;
    position: relative;
    counter-increment: step-counter;
}

.process-step::before {
    content: counter(step-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-cta);
    color: var(--primary-navy);
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: 800;
    margin: 0 auto 18px;
    font-family: var(--font-heading);
}

.process-step h3 {
    font-size: 1.1em;
    margin-bottom: 8px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.92em;
}

/* Trust Badges Row */
.trust-badges-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px 0;
}

.trust-badge-item {
    text-align: center;
}

.trust-badge-item .badge-icon {
    font-size: 2.2em;
    margin-bottom: 8px;
}

.trust-badge-item .badge-text {
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    position: relative;
}

.testimonial-card .stars {
    color: var(--accent-gold);
    font-size: 1.2em;
    margin-bottom: 12px;
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary-navy);
}

.testimonial-card .author span {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.9em;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
    font-size: 1.05em;
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question::after {
    content: '+';
    font-size: 1.4em;
    font-weight: 300;
    color: var(--accent-gold-dark);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-hero);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15em;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   LOCATION/AREA PAGES
   ============================================ */
.area-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.area-highlight-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: var(--transition-med);
}

.area-highlight-card:hover {
    box-shadow: var(--shadow-md);
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.neighborhood-item {
    background: var(--off-white);
    padding: 18px 20px;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--accent-gold);
}

.neighborhood-item h4 {
    font-size: 1em;
    margin-bottom: 4px;
}

.neighborhood-item p {
    color: var(--text-light);
    font-size: 0.9em;
    margin-bottom: 0;
}

/* ============================================
   SIDEBAR
   ============================================ */
.page-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 28px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
    border: 1px solid var(--light-gray);
}

.sidebar-card h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-gold);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--primary-navy-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.05em;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.footer-col p {
    font-size: 0.92em;
    line-height: 1.7;
    margin-bottom: 0.5em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92em;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.92em;
}

.footer-contact-item .fc-icon {
    color: var(--accent-gold);
    font-size: 1.1em;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
    color: var(--accent-gold);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-navy { color: var(--primary-navy); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-form-card {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-cta-buttons {
        justify-content: center;
    }

    .page-with-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-top-bar { display: none; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        font-size: 1.2em;
        padding: 15px 20px;
    }

    .nav-links li .sub-menu,
    .nav-links li ul {
        position: static;
        box-shadow: none;
        border: none;
        display: none;
        min-width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-cta .btn-quote {
        display: none;
    }

    h1 { font-size: 2em; }
    h2 { font-size: 1.7em; }

    .hero-section {
        padding: 50px 0;
    }

    .hero-text h1 {
        font-size: 2.2em;
    }

    .content-section {
        padding: 50px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .trust-badges-row {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8em;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* ==========================================
   CONTACT FORM 7 INTEGRATION
   ========================================== */

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.form-row-3 {
    grid-template-columns: 2fr 1fr 1fr;
}

.form-section-label {
    margin: 24px 0 10px;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
    color: #162040;
}

.form-group-checkbox .wpcf7-list-item {
    margin-left: 0;
}

.form-group-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9em;
    font-weight: 400;
    cursor: pointer;
}

.form-privacy-note {
    margin-top: 14px;
    font-size: 0.78em;
    line-height: 1.5;
    opacity: 0.75;
}

/* Validation states */
.wpcf7-not-valid-tip {
    display: block;
    margin-top: 6px;
    font-size: 0.85em;
    color: #d63638;
}

.wpcf7-form-control.wpcf7-not-valid {
    border-color: #d63638;
}

/* Response messages */
.wpcf7 .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.92em;
}

.wpcf7 form.sent .wpcf7-response-output {
    background: #0d1b36;
    border: 1px solid #f5c518;
    color: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
    background: #fff4f4;
    border: 1px solid #d63638;
    color: #8a1f1f;
}

.wpcf7-spinner {
    display: block;
    margin: 12px auto 0;
}