/* ==========================================================================
   Berachah Cargo Movers - Main Stylesheet
   Theme Colors:
   - Primary Deep Logistics Blue: #0F2C59
   - Secondary Action Orange:    #FF6B00
   - Accent Blue:               #1A437E
   - Light Background:          #F8F9FA
   - Clean White:               #FFFFFF
   - Dark Text:                 #1E293B
   - Muted Text:                #64748B
   ========================================================================== */

:root {
    --primary-blue: #0F2C59;
    --primary-blue-dark: #0A1E3F;
    --action-orange: #FF6B00;
    --action-orange-hover: #E05E00;
    --accent-blue: #1A437E;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(15, 44, 89, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 44, 89, 0.1);
    --shadow-lg: 0 16px 36px rgba(15, 44, 89, 0.14);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Basic Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Helper Utility Classes */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    gap: 30px;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--action-orange);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 40px auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--action-orange);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
}

.btn-primary:hover {
    background-color: var(--action-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
    color: var(--bg-white);
}

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

.btn-secondary:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.btn-call-now {
    background-color: #10B981;
    color: var(--bg-white);
    animation: pulseCall 2s infinite;
}

.btn-call-now:hover {
    background-color: #059669;
    color: var(--bg-white);
}

@keyframes pulseCall {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

/* Top Utility Bar */
.top-bar {
    background-color: var(--primary-blue-dark);
    color: #CBD5E1;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-info a {
    color: #CBD5E1;
}

.top-info a:hover {
    color: var(--action-orange);
}

.top-phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--action-orange);
    font-weight: 600;
}

.top-phone-link:hover {
    color: #FFFFFF;
}

/* Header & Main Menu */
.main-header {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-logo-img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.company-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    line-height: 1;
}

.company-tagline {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--action-orange);
    letter-spacing: 2px;
}

.nav-menu ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-blue);
    padding: 6px 0;
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--action-orange);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--action-orange);
    border-radius: 2px;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 44, 89, 0.94) 0%, rgba(26, 67, 126, 0.92) 100%), 
                radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.15), transparent 40%),
                url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    padding: 70px 0 80px 0;
    color: var(--bg-white);
    overflow: hidden;
}

.hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.2);
    border: 1px solid rgba(255, 107, 0, 0.5);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFB380;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--action-orange);
}

.hero-content p {
    font-size: 1.15rem;
    color: #CBD5E1;
    margin-bottom: 30px;
    max-width: 580px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.highlight-icon {
    width: 24px;
    height: 24px;
    background-color: var(--action-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Hero Quote Form Card */
.quote-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
    border-top: 5px solid var(--action-orange);
}

.quote-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.quote-card-header h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.quote-card-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background-color: #FAFAFA;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(15, 44, 89, 0.1);
}

.quote-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
}

.form-notice {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Stats Counter Bar */
.stats-section {
    background-color: var(--primary-blue);
    padding: 40px 0;
    color: white;
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--action-orange);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #CBD5E1;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.features-grid {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--action-orange);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(15, 44, 89, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    color: var(--primary-blue);
}

.feature-card:hover .feature-icon {
    background-color: var(--action-orange);
    color: white;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-img-placeholder {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--action-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    text-transform: uppercase;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    font-weight: 700;
    color: var(--action-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.service-link:hover {
    gap: 10px;
    color: var(--primary-blue);
}

/* Cost Calculator Section */
.calculator-section {
    padding: 80px 0;
    background-color: var(--primary-blue-dark);
    color: white;
    position: relative;
}

.calc-container {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
}

.calc-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.calc-info h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.calc-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.calc-box {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.calc-step {
    margin-bottom: 20px;
}

.calc-step label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.result-box {
    background-color: var(--primary-blue);
    color: white;
    padding: 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-top: 25px;
}

.result-box .price-tag {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--action-orange);
    margin: 5px 0;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.process-card {
    text-align: center;
    position: relative;
    padding: 20px;
}

.process-num {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--action-orange);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 3px solid var(--action-orange);
}

.process-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.rating-stars {
    color: #F59E0B;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-blue);
}

.author-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 18px 20px;
    background-color: var(--bg-white);
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: var(--bg-light);
}

.accordion-icon {
    transition: var(--transition);
    font-size: 1.2rem;
    color: var(--action-orange);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #FAFAFA;
}

.accordion-body {
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer Styling */
.site-footer {
    background-color: var(--primary-blue-dark);
    color: #CBD5E1;
}

.footer-top {
    padding: 70px 0 50px 0;
}

.footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #94A3B8;
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.trust-badge {
    font-size: 0.72rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
    color: #E2E8F0;
}

.footer-heading {
    font-size: 1.15rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--action-orange);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94A3B8;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--action-orange);
    padding-left: 5px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: #94A3B8;
}

.contact-info-list a {
    color: #CBD5E1;
}

.contact-info-list a:hover {
    color: var(--action-orange);
}

.footer-map-box {
    margin-top: 15px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom {
    background-color: #061329;
    padding: 20px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-bottom a {
    color: #94A3B8;
}

.footer-bottom a:hover {
    color: var(--action-orange);
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    background-color: #25D366;
}

.float-call {
    background-color: #10B981;
}

.float-tooltip {
    position: absolute;
    right: 65px;
    background-color: #1E293B;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.float-whatsapp:hover .float-tooltip {
    opacity: 1;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background-color: var(--bg-white);
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        padding: 30px;
    }

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

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }

    .services-grid, .testimonials-grid, .features-grid, .process-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
