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

:root {
    --navy-900: #0F172A;
    --navy-800: #1E293B;
    --navy-700: #305890;
    --navy-600: #4070A0;
    --gold-400: #D4AF37;
    --gold-500: #B8952F;
    --gold-600: #9C7B27;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --text-navy: #0F172A;
    --text-light: #F8FAFC;
}

body {
    font-family: 'Archivo Narrow', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-gray);
    color: var(--text-navy);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

body.dark {
    background-color: var(--navy-900);
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

.dark .navbar {
    background-color: var(--navy-900);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 20px;
    min-height: 60px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.logo-text {
    font-size: 1rem;
    font-weight: bold;
    color: var(--navy-900);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy-900);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s;
    background-color: transparent;
    border: 1px solid transparent;
    white-space: nowrap;
}

.dark .nav-links a {
    color: var(--white);
}

.nav-links a:hover {
    color: var(--gold-400);
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-400);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy-900);
    cursor: pointer;
}

.dark .mobile-menu-btn {
    color: var(--white);
}

.dark-mode-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--navy-900);
    padding: 0.5rem;
    transition: transform 0.3s;
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
}

.dark .dark-mode-toggle {
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    color: var(--white);
    padding: 0;
    text-align: center;
}

.hero-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: var(--white);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--navy-900);
}

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

.dark .btn-outline {
    border-color: var(--gold-400);
    color: var(--gold-400);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--navy-600);
    max-width: 600px;
    margin: 0 auto;
}

.dark .section-header p {
    color: var(--navy-300);
}

.bg-gold {
    background-color: rgba(212, 175, 55, 0.1);
}

.bg-navy {
    background-color: var(--navy-900);
    color: var(--white);
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.dark .glass-card {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(30, 41, 59, 0.2);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px -10px rgba(15, 23, 42, 0.15);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.card {
    text-align: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--navy-900);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.dark .card h3 {
    color: var(--white);
}

.card p {
    color: var(--navy-600);
    margin-bottom: 1.5rem;
}

.dark .card p {
    color: var(--navy-300);
}

.card-link {
    color: var(--gold-400);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 1rem;
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--navy-900);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
}

.dark .feature h3 {
    color: var(--white);
}

.feature p {
    color: var(--navy-600);
}

.dark .feature p {
    color: var(--navy-300);
}

/* About Preview */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold-400);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

/* Review Tabs - Window Style */
.review-window {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.15);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 0 auto;
}

.dark .review-window {
    background: var(--navy-800);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.review-tabs {
    display: flex;
    background: var(--navy-900);
    padding: 0.5rem 0.5rem 0;
    gap: 0.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: 2px solid var(--gold-400);
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 769px) {
    .review-tabs {
        overflow: hidden;
    }
}

.dark .review-tabs {
    background: var(--navy-900);
}

.tab-btn {
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
    font-family: inherit;
    white-space: nowrap;
    position: relative;
    top: 2px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .tab-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

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

.tab-btn.active {
    color: var(--navy-900);
    background: var(--white);
    top: 0;
    font-weight: 600;
}

.dark .tab-btn.active {
    color: var(--navy-900);
    background: var(--navy-800);
}

.tab-content {
    display: none;
    min-height: 500px;
    background: var(--white);
    overflow: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    .tab-content {
        min-height: 400px;
    }
}

.dark .tab-content {
    background: var(--navy-800);
}

.tab-content.active {
    display: block;
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Review Embed Container */
.review-embed-container {
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.review-embed-container iframe {
    background-color: var(--white);
    border: none;
}

.dark .review-embed-container iframe {
    background-color: var(--navy-800);
}

/* Facebook Preview */
.facebook-preview {
    position: relative;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .facebook-preview {
        height: 400px;
    }
}

.facebook-screenshot {
    width: 100%;
    height: auto;
    min-height: 600px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.facebook-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.facebook-logo {
    color: #1877F2;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(24, 119, 242, 0.5));
}

.facebook-text {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.facebook-btn {
    background: linear-gradient(135deg, #1877F2, #0d5bb5);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.facebook-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.6);
}

/* Yelp Preview */
.yelp-preview {
    position: relative;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .yelp-preview {
        height: 400px;
    }
}

.yelp-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.yelp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.yelp-logo {
    color: #FF1A1A;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 26, 26, 0.5));
}

.yelp-text {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.yelp-btn {
    background: linear-gradient(135deg, #FF1A1A, #CC0000);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.4);
}

.yelp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 26, 26, 0.6);
}

/* Trust Pilot Preview */
.trustpilot-preview {
    position: relative;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .trustpilot-preview {
        height: 400px;
    }
}

.trustpilot-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.trustpilot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.trustpilot-logo {
    color: #00B67A;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 182, 122, 0.5));
}

.trustpilot-text {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.trustpilot-btn {
    background: linear-gradient(135deg, #00B67A, #008F5D);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 182, 122, 0.4);
}

.trustpilot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 182, 122, 0.6);
}

/* Verified Movers Preview */
.verifiedmovers-preview {
    position: relative;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .verifiedmovers-preview {
        height: 400px;
    }
}

.verifiedmovers-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.verifiedmovers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.verifiedmovers-logo {
    color: var(--gold-400);
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.verifiedmovers-text {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.verifiedmovers-btn {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--navy-900);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.verifiedmovers-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Great Guys Preview */
.greatguys-preview {
    position: relative;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .greatguys-preview {
        height: 400px;
    }
}

.greatguys-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.greatguys-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.greatguys-logo {
    color: #4CAF50;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.5));
}

.greatguys-text {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.greatguys-btn {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.greatguys-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

/* Chamber of Commerce Preview */
.chamber-preview {
    position: relative;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .chamber-preview {
        height: 400px;
    }
}

.chamber-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.chamber-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.chamber-logo {
    color: #1E88E5;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(30, 136, 229, 0.5));
}

.chamber-text {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.chamber-btn {
    background: linear-gradient(135deg, #1E88E5, #1565C0);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

.chamber-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.6);
}

/* Google Preview */
.google-preview {
    position: relative;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .google-preview {
        height: 400px;
    }
}

.google-preview iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.google-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    z-index: 10;
}

.google-logo {
    color: #4285F4;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(66, 133, 244, 0.5));
}

.google-text {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.google-btn {
    background: linear-gradient(135deg, #4285F4, #3367D6);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4);
}

.google-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.6);
}

/* Review External Link */
.review-external-link {
    text-align: center;
}

.review-external-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Platform Placeholders */
.facebook-placeholder,
.yelp-placeholder,
.trustpilot-placeholder,
.verifiedmovers-placeholder,
.greatguys-placeholder,
.chamber-placeholder {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 0;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.facebook-placeholder i,
.yelp-placeholder i,
.trustpilot-placeholder i,
.verifiedmovers-placeholder i,
.greatguys-placeholder i,
.chamber-placeholder i {
    color: var(--gold-400);
    margin-bottom: 0.5rem;
    opacity: 0.3;
    text-shadow: 
        -1px -1px 0 rgba(255, 255, 255, 0.8),
        1px -1px 0 rgba(255, 255, 255, 0.8),
        -1px 1px 0 rgba(255, 255, 255, 0.8),
        1px 1px 0 rgba(255, 255, 255, 0.8),
        0 0 20px rgba(212, 175, 55, 0.5);
}

.facebook-placeholder h3,
.yelp-placeholder h3,
.trustpilot-placeholder h3,
.verifiedmovers-placeholder h3,
.greatguys-placeholder h3,
.chamber-placeholder h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--white);
    opacity: 0.4;
    text-shadow: 
        -1px -1px 0 rgba(0, 0, 0, 0.8),
        1px -1px 0 rgba(0, 0, 0, 0.8),
        -1px 1px 0 rgba(0, 0, 0, 0.8),
        1px 1px 0 rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 255, 255, 0.3);
}

.facebook-placeholder p,
.yelp-placeholder p,
.trustpilot-placeholder p,
.verifiedmovers-placeholder p,
.greatguys-placeholder p,
.chamber-placeholder p {
    font-size: 1.1rem;
    opacity: 0.3;
    margin: 0;
    text-shadow: 
        -1px -1px 0 rgba(0, 0, 0, 0.8),
        1px -1px 0 rgba(0, 0, 0, 0.8),
        -1px 1px 0 rgba(0, 0, 0, 0.8),
        1px 1px 0 rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 255, 255, 0.2);
}

.testimonial-rating {
    color: var(--gold-400);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--navy-600);
}

.dark .testimonial-text {
    color: var(--navy-300);
}

.testimonial-author {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.dark .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.author-name {
    font-weight: 600;
    color: var(--navy-900);
}

.dark .author-name {
    color: var(--white);
}

.author-title {
    font-size: 0.9rem;
    color: var(--navy-600);
}

.dark .author-title {
    color: var(--navy-300);
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.dark .cta-content h2 {
    color: var(--white);
}

.cta-content p {
    margin-bottom: 2rem;
    color: var(--navy-600);
}

.dark .cta-content p {
    color: var(--navy-300);
}

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

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer .logo {
    object-fit: contain;
}

.footer-description {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--gold-400);
    color: var(--navy-900);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold-400);
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--gold-400);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--gold-400);
}

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

/* About Page Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.mission-vision-card {
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--navy-900);
}

.mission-vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.dark .mission-vision-card h3 {
    color: var(--white);
}

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

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

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--navy-900);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
}

.dark .value-card h3 {
    color: var(--white);
}

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

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

@media (max-width: 768px) {
    .story-team-grid {
        grid-template-columns: 1fr;
    }
}

.story-column {
    max-width: 100%;
}

.team-column {
    max-width: 100%;
}

.team-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.team-image-wrapper {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.2);
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.team-hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.team-hero-image.active {
    opacity: 1;
    position: relative;
}

.founder-message-box {
    background: rgba(128, 128, 128, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 400px;
    border: 1px solid rgba(128, 128, 128, 0.3);
    position: relative;
    font-family: 'Archivo Narrow', sans-serif;
}

.founder-message-box h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--gold-400);
    font-family: 'Archivo Narrow', sans-serif;
}

.founder-message-box h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 500;
    font-family: 'Archivo Narrow', sans-serif;
}

.founder-message-box p {
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: var(--white);
    opacity: 0.95;
    font-family: 'Archivo Narrow', sans-serif;
}

.philosophy-label {
    font-weight: 600;
    color: var(--gold-400);
    margin-top: 1rem !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.75rem !important;
    font-family: 'Archivo Narrow', sans-serif;
}

.philosophy-quote {
    font-style: italic;
    font-size: 0.8rem;
    color: var(--gold-400);
    border-left: 3px solid var(--gold-400);
    padding-left: 0.75rem;
    margin-bottom: 1rem !important;
    font-family: 'Archivo Narrow', sans-serif;
}

.dark .founder-message-box {
    background: rgba(128, 128, 128, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.member-photo {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--gold-400);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.member-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.photo-placeholder {
    font-size: 3rem;
    color: var(--navy-900);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: var(--navy-900);
}

.dark .team-member h3 {
    color: var(--white);
}

.member-title {
    color: var(--gold-400);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-bio {
    font-size: 0.9rem;
    color: var(--navy-600);
}

.dark .member-bio {
    color: var(--navy-300);
}

/* Services Page Styles */
.search-filter-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--navy-600);
}

.dark .search-box i {
    color: var(--navy-300);
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--navy-200);
    border-radius: 12px;
    font-size: 1rem;
    background-color: var(--white);
    color: var(--navy-900);
}

.dark .search-box input {
    background-color: var(--navy-800);
    border-color: var(--navy-600);
    color: var(--white);
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold-400);
}

.category-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--navy-900);
    background: transparent;
    color: var(--navy-900);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.dark .category-btn {
    border-color: var(--white);
    color: var(--white);
}

.category-btn:hover,
.category-btn.active {
    background: var(--navy-900);
    color: var(--white);
}

.dark .category-btn:hover,
.dark .category-btn.active {
    background: var(--white);
    color: var(--navy-900);
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--navy-600);
}

.dark .feature-list li {
    color: var(--navy-300);
}

.feature-list li i {
    color: var(--gold-400);
    margin-right: 0.5rem;
}

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

.faq-item {
    margin-bottom: 1rem;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--navy-900);
}

.dark .faq-question h3 {
    color: var(--white);
}

.faq-question i {
    color: var(--gold-400);
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--navy-600);
}

.dark .faq-answer {
    color: var(--navy-300);
}

.faq-answer p {
    margin: 0;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--navy-900);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
}

.dark .process-step h3 {
    color: var(--white);
}

.process-step p {
    color: var(--navy-600);
}

.dark .process-step p {
    color: var(--navy-300);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold-400);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonial Large */
.testimonial-large {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-large .testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form h2,
.contact-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--navy-900);
}

.dark .contact-form h2,
.dark .contact-card h2 {
    color: var(--white);
}

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

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

.dark .form-group label {
    color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--navy-200);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--white);
    color: var(--navy-900);
    font-family: inherit;
}

.dark .form-group input,
.dark .form-group select,
.dark .form-group textarea {
    background-color: var(--navy-800);
    border-color: var(--navy-600);
    color: var(--white);
}

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy-900);
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--navy-900);
}

.dark .contact-label {
    color: var(--white);
}

.contact-value {
    color: var(--navy-600);
}

.dark .contact-value {
    color: var(--navy-300);
}

.contact-value a {
    color: inherit;
    text-decoration: none;
}

.contact-value a:hover {
    color: var(--gold-400);
}

.urgent-card {
    text-align: center;
    margin-top: 2rem;
}

.urgent-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.urgent-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .dark .nav-links {
        background-color: var(--navy-900);
    }

    .nav-links.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .about-preview {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

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

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

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

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 1rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease;
}

.dark .modal-content {
    background: var(--navy-800);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dark .modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--navy-900);
}

.dark .modal-header h2 {
    color: var(--white);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--navy-600);
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--navy-900);
    background-color: rgba(0, 0, 0, 0.05);
}

.dark .modal-close {
    color: var(--navy-300);
}

.dark .modal-close:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 2rem;
}

.forms-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    cursor: pointer;
}

.form-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy-900);
    flex-shrink: 0;
}

.form-info {
    flex: 1;
}

.form-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: var(--navy-900);
}

.dark .form-info h3 {
    color: var(--white);
}

.form-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--navy-600);
}

.dark .form-info p {
    color: var(--navy-300);
}

.form-arrow {
    color: var(--gold-400);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.form-item:hover .form-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .form-arrow {
        transform: rotate(90deg);
    }
    
    .form-item:hover .form-arrow {
        transform: rotate(90deg) translateX(5px);
    }
}
