/* ============================================
   NEWPORT BEACH LUXURY MOVERS - STYLES
   Coastal Luxury Color Theme
   Inspired by: Pacific Ocean (navy/ocean blues),
                Yacht Clubs (maritime elegance),
                Waterfront Estates (champagne gold)
   ============================================ */

:root {
    /* Newport Coastal Luxury Theme */
    --navy-maritime: #1e3a5f;
    --navy-dark: #152944;
    --ocean-blue: #2c5f8d;
    --seafoam-light: #5b9bd5;
    --champagne-gold: #c9a961;
    
    /* Orange Accent (Brand Standard) */
    --earth-orange: #ff8a50;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;
}

/* ============================================
   BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--navy-maritime);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.accent-text {
    color: var(--earth-orange);
}

/* ============================================
   HERO SECTION - LAKE FOREST STYLE
   ============================================ */

.hero-lf {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 50%, #ff8a50 100%);
    padding: 4rem 0 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-lf::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 1rem;
}

.breadcrumb-list {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    opacity: 0.7;
}

.breadcrumb-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb-list span {
    color: white;
    font-weight: 500;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    width: fit-content;
}

/* Hero Title */
.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.feature-badge {
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.trust-seal {
    position: absolute;
    top: -2.5rem;
    right: -1.5rem;
    background: white;
    color: var(--navy-maritime);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.seal-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.seal-text {
    display: flex;
    flex-direction: column;
}

.seal-text strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-maritime);
    line-height: 1;
}

.seal-text span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ============================================
   BUTTONS
   ============================================ */

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

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--earth-orange) 0%, #ff6f2c 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff6f2c 0%, #ff5a1f 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background: var(--navy-maritime);
    color: white;
}

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

.btn-block {
    width: 100%;
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    background: var(--gray-50);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy-maritime);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ============================================
   NEIGHBORHOODS SECTION
   ============================================ */

.neighborhoods-section {
    padding: var(--section-padding);
    background: white;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.neighborhood-group {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}

.group-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-list li {
    color: var(--gray-700);
    padding-left: 1.5rem;
    position: relative;
}

.location-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--navy-maritime);
    font-weight: bold;
}

/* ============================================
   SERVICES SHOWCASE
   ============================================ */

.services-showcase {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy-maritime);
}

.service-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--navy-maritime) 0%, var(--ocean-blue) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper svg {
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.service-desc {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    color: var(--gray-700);
    font-size: 0.875rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--navy-maritime);
    font-weight: bold;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */

.experience-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--navy-maritime) 0%, var(--ocean-blue) 100%);
    color: white;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.experience-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.exp-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.exp-stat span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.experience-content p {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.experience-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

/* ============================================
   TIPS SECTION
   ============================================ */

.tips-section {
    padding: var(--section-padding);
    background: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tip-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}

.tip-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.tip-content {
    color: var(--gray-700);
    line-height: 1.7;
}

.tip-content p {
    margin-bottom: 1rem;
}

.tip-content strong {
    color: var(--navy-maritime);
    font-weight: 600;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.125rem;
}

.review-date {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.review-text {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.review-source {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.review-summary {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

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

.summary-stat strong {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy-maritime);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.summary-stat span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

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

.review-platforms p {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.platforms-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.platforms-links span {
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* ============================================
   TEAM IMAGE SECTION
   ============================================ */

.team-image-section {
    padding: 3rem 0;
    background: white;
}

.team-image-section img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
}

.image-caption {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-style: italic;
}

/* ============================================
   ABOUT SERVICE AREA
   ============================================ */

.about-service-area {
    padding: var(--section-padding);
    background: white;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy-maritime);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.card-body {
    color: var(--gray-700);
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    user-select: none;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--navy-maritime);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ============================================
   QUOTE SECTION
   ============================================ */

.quote-section {
    padding: var(--section-padding);
    background: white;
}

.quote-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.quote-form {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-maritime);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.guarantee-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}

.contact-info-card h3,
.guarantee-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--navy-maritime);
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--navy-maritime);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.guarantee-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guarantee-card li {
    color: var(--gray-700);
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-maritime) 0%, var(--navy-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.875rem;
}

/* ============================================
   FOOTER
   ============================================ */

.page-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 2rem 0;
    text-align: center;
}

.footer-text {
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-text a {
    color: var(--seafoam-light);
    text-decoration: none;
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-grid,
    .experience-grid,
    .quote-layout {
        grid-template-columns: 1fr;
    }
    
    /* .hero-visual,
    .experience-image {
        order: -1;
    } */
    
    .neighborhoods-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* .trust-seal {
        position: static;
        margin-top: 1rem;
    } */
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-grid,
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .review-summary {
        flex-direction: column;
        gap: 2rem;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --gray-600: #2d3748;
        --gray-700: #1a202c;
    }
}

/* Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--navy-maritime);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero-lf,
    .final-cta,
    .quote-section,
    .btn {
        display: none;
    }
    
    body {
        color: black;
    }
    
    .section-title {
        color: black;
    }
}