/* ===================================
   Dan The Affordable Moving Man
   Website Styles
   =================================== */

/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --secondary-color: #f59e0b;
    --accent-color: #dc2626;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    
    /* 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);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

ul {
    list-style: none;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===================================
   Global Header
   =================================== */
.global-header {
    background-color: #595959;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    color: white;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: var(--transition-normal);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: white;
}

.cta-button {
    background-color: #000000;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.cta-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    background-image: url('images/moving_company_morris_county_nj_1.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 64, 175, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero-cta {
    display: inline-block;
    background-color: #000000;
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
}

.hero-cta:hover {
    background-color: #333333;
    transform: translateY(-3px);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Page Header (for internal pages)
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: var(--section-padding);
}

.intro-section {
    background-color: var(--bg-white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    background-color: var(--bg-light);
}

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

.feature-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.feature-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.feature-card p {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
}

/* ===================================
   Credentials Section
   =================================== */
.credentials-section {
    background-color: var(--bg-white);
}

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

.credentials-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.credentials-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.license-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    flex: 1;
}

.badge strong {
    color: white;
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.credentials-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.credentials-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Process Section
   =================================== */
.process-section {
    background-color: var(--bg-light);
    text-align: center;
}

.process-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    padding: 2rem;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f97316 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1rem;
    text-align: center;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section {
    background-color: var(--bg-white);
    text-align: center;
}

.gallery-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

.btn-primary {
    background-color: #000000;
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.btn-primary:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    padding: 1.125rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.office-location {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-top: 2rem;
}

/* ===================================
   Footer
   =================================== */
.global-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-column a:hover {
    color: white;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ===================================
   About Page Styles
   =================================== */
.about-intro {
    background-color: var(--bg-white);
}

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

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-section {
    background-color: var(--bg-light);
}

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

.story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.values-section {
    background-color: var(--bg-white);
    text-align: center;
}

.values-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.value-card {
    background-color: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: var(--transition-normal);
}

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

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

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
}

.credentials-detail-section {
    background-color: var(--bg-light);
}

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

.credentials-detail-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.credentials-detail-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.credentials-detail-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.credentials-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-section {
    background-color: var(--bg-white);
    text-align: center;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.mission-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.mission-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mission-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* ===================================
   Services Page Styles
   =================================== */
.services-intro {
    background-color: var(--bg-white);
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-intro-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.service-detail-section {
    background-color: var(--bg-light);
}

.service-detail-section.alt {
    background-color: var(--bg-white);
}

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

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.why-choose-section {
    background-color: var(--bg-white);
    text-align: center;
}

.why-choose-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.why-choose-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.why-choose-card p {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
}

.service-areas-section {
    background-color: var(--bg-light);
    text-align: center;
}

.service-areas-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.service-areas-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-area {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.service-area h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-area p {
    font-size: 1rem;
}

.service-promise-section {
    background-color: var(--bg-white);
}

.service-promise-content {
    text-align: center;
}

.service-promise-content h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.promise-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.promise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f97316 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.promise-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.promise-item p {
    font-size: 1rem;
}

/* ===================================
   Contact Page Styles
   =================================== */
.contact-intro {
    background-color: var(--bg-white);
}

.contact-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro-content p {
    font-size: 1.125rem;
}

.contact-main-section {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-card.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.contact-card.primary h2,
.contact-card.primary h3 {
    color: white;
}

.contact-card.primary p {
    color: rgba(255, 255, 255, 0.95);
}

.phone-display {
    text-align: center;
    margin: 2rem 0;
}

.phone-display a {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: inline-block;
    padding: 1rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.phone-display a:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.credentials-display {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.credential-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    font-size: 0.95rem;
}

.credential-badge strong {
    color: white;
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.contact-image-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-image-section img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.service-areas-detail-section {
    background-color: var(--bg-white);
    text-align: center;
}

.service-areas-detail-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.service-area-card {
    background-color: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

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

.service-area-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.service-areas-note {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-gallery-section {
    background-color: var(--bg-light);
    text-align: center;
}

.contact-gallery-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.contact-cta-section {
    background-color: var(--bg-white);
}

.contact-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-hours {
    margin-top: 2rem;
}

.contact-hours p {
    font-size: 1rem;
    color: var(--text-dark);
}

.map-placeholder-section {
    background-color: var(--bg-light);
}

.map-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.map-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.address-display {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.address-display h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.address-display p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.address-display a {
    color: var(--primary-color);
    font-weight: 600;
}

.address-display a:hover {
    color: var(--primary-dark);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .credentials-content,
    .about-intro-content,
    .story-content,
    .credentials-detail-content,
    .service-detail,
    .contact-grid,
    .why-local-content,
    .image-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail:nth-child(even) .service-detail-image {
        order: 2;
    }
    
    .image-content-grid.reverse {
        direction: ltr;
    }
    
    .communities-list {
        grid-template-columns: 1fr;
    }
    
    .article-header h1 {
        font-size: 2.25rem;
    }
    
    .subtitle-text {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
    }
    
    .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .page-header h1 {
        font-size: 2.25rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .features-grid,
    .process-grid,
    .gallery-grid,
    .values-grid,
    .why-choose-grid,
    .service-areas-content,
    .promise-grid,
    .service-areas-grid,
    .contact-gallery,
    .areas-grid,
    .highlights-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .license-badges,
    .credentials-display,
    .credentials-badges {
        flex-direction: column;
    }
    
    .mission-images {
        grid-template-columns: 1fr;
    }
    
    .phone-display a {
        font-size: 1.75rem;
        padding: 0.75rem 1.5rem;
    }
    
    .article-header h1 {
        font-size: 1.75rem;
    }
    
    .subtitle-text {
        font-size: 1.125rem;
    }
    
    .article-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .highlight-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-nav ul {
        gap: 0.5rem;
    }
    
    .main-nav a {
        font-size: 0.85rem;
        padding: 0.5rem 0.25rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        font-size: 1rem;
    }
    
    .area-card {
        margin-bottom: 1rem;
    }
    
    .badge-large {
        padding: 1.5rem 2rem;
    }
    
    .article-header {
        padding: 2rem 0 1.5rem;
    }
    
    .article-header h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .subtitle-text {
        font-size: 1rem;
    }
    
    .breadcrumbs {
        font-size: 0.85rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.25rem;
    }
}

/* ===================================
   Service Areas Directory Page Styles
   =================================== */
.service-areas-directory {
    background-color: var(--bg-white);
}

.directory-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.directory-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.directory-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid var(--border-color);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.area-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

.area-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.area-card:hover .area-image img {
    transform: scale(1.05);
}

.area-content {
    padding: 2rem;
}

.area-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.area-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.area-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-normal);
}

.area-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.why-local-section {
    background-color: var(--bg-light);
}

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

.why-local-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.why-local-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefits-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.why-local-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-local-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-highlights-section {
    background-color: var(--bg-white);
    text-align: center;
}

.service-highlights-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.highlight-card {
    background-color: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: var(--transition-normal);
}

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

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

.highlight-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlight-card p {
    font-size: 1rem;
    color: var(--text-light);
}

.coverage-map-section {
    background-color: var(--bg-light);
}

.coverage-map-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.communities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.county-group h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.county-group ul {
    list-style: none;
}

.county-group ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.county-group ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.coverage-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.125rem;
    color: var(--text-light);
}

/* ===================================
   Blog Article Page Styles
   =================================== */
.blog-article {
    background-color: var(--bg-white);
}

.article-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0 2rem;
}

.breadcrumbs {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs span {
    color: white;
}

.article-header h1 {
    color: white;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1.5rem;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

.featured-image {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    margin-top: 1.5rem;
}

.content-section h5 {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.content-section a {
    color: var(--primary-color);
    font-weight: 600;
}

.content-section a:hover {
    color: var(--primary-dark);
}

.image-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

.image-content-grid.reverse {
    direction: rtl;
}

.image-content-grid.reverse > * {
    direction: ltr;
}

.content-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.highlight-section {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.credentials-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.credentials-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.badge-large {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    flex: 1;
    max-width: 250px;
}

.badge-large strong {
    color: white;
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.article-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.related-articles {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.related-articles h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.related-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: block;
}

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

.related-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 1.5rem;
}

.related-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.related-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   Service Areas Page Styles (Legacy - keeping for compatibility)
   =================================== */
.service-area-intro {
    background-color: var(--bg-white);
}

.service-area-intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-area-intro-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.intro-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-area-intro-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.legacy-section {
    background-color: var(--bg-light);
}

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

.legacy-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.legacy-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.legacy-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.legacy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comprehensive-services-section {
    background-color: var(--bg-white);
}

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

.services-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.licensed-section {
    background-color: var(--bg-light);
}

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

.licensed-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.licensed-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.licensed-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.licensed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-section {
    background-color: var(--bg-white);
}

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

.pricing-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.local-expertise-section {
    background-color: var(--bg-light);
    text-align: center;
}

.local-expertise-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.local-expertise-content {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.local-expertise-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.local-expertise-image {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.local-expertise-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.equipment-section {
    background-color: var(--bg-white);
}

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

.equipment-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.equipment-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.professional-movers-section {
    background-color: var(--bg-light);
}

.professional-movers-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.professional-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.professional-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.professional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.extended-service-section {
    background-color: var(--bg-white);
    text-align: center;
}

.extended-service-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.extended-service-intro {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.extended-service-section p {
    font-size: 1.125rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.near-me-section {
    background-color: var(--bg-light);
}

.near-me-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.near-me-content {
    max-width: 900px;
    margin: 0 auto;
}

.near-me-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.near-me-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.near-me-content a:hover {
    color: var(--primary-dark);
}

.experience-section {
    background-color: var(--bg-white);
}

.experience-section h5 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-align: center;
}

.experience-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
}

.experience-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.protection-section {
    background-color: var(--bg-light);
}

.protection-content {
    max-width: 900px;
    margin: 0 auto;
}

.protection-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.protection-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .global-header,
    .hero,
    .cta-section,
    .global-footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1 {
        font-size: 24pt;
    }
    
    h2 {
        font-size: 20pt;
    }
    
    h3 {
        font-size: 16pt;
    }
}
