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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Professional Minimal Color Palette */
:root {
    --primary-blue: #1e40af;
    --accent-orange: #dc2626;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-gray: #f9fafb;
    --medium-gray: #e5e7eb;
    --border-gray: #d1d5db;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Professional Logo Styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #32cd32 0%, #28a745 100%);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3);
}

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

.logo-main {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-sub::before,
.logo-sub::after {
    content: "—";
    color: #32cd32;
    margin: 0 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-orange);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-dark);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background Pattern */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(37, 99, 235, 0.02) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark) !important;
}

.hero-tagline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
    color: var(--text-light) !important;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
}

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.professional-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

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

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-icon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.service-icon-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.nyc-skyline-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1e40af 0%, #6b21a8 50%, #be185d 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
}

.nyc-skyline {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 20px;
}

.city-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.nyc-skyline {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.5rem;
    height: 200px;
    position: relative;
}

.building {
    background: linear-gradient(to top, #ffffff, #f8fafc);
    border-radius: 4px 4px 0 0;
    position: relative;
    animation: buildingGlow 3s ease-in-out infinite alternate;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.building::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 20%;
    right: 20%;
    height: 80%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 15px,
        rgba(255, 255, 255, 0.1) 15px,
        rgba(255, 255, 255, 0.1) 20px
    );
    border-radius: 2px;
}

.building-1 {
    width: 25px;
    height: 120px;
    animation-delay: 0s;
}

.building-2 {
    width: 30px;
    height: 160px;
    animation-delay: 0.5s;
}

.building-3 {
    width: 35px;
    height: 140px;
    animation-delay: 1s;
}

.building-4 {
    width: 28px;
    height: 110px;
    animation-delay: 1.5s;
}

.building-5 {
    width: 22px;
    height: 90px;
    animation-delay: 2s;
}

.building-6 {
    width: 26px;
    height: 130px;
    animation-delay: 2.5s;
}

.building-7 {
    width: 24px;
    height: 100px;
    animation-delay: 3s;
}

.empire-state {
    width: 35px;
    height: 180px;
    background: linear-gradient(to top, #fbbf24, #f59e0b);
    border-radius: 4px 4px 0 0;
    position: relative;
    box-shadow: 0 4px 8px rgba(251, 191, 36, 0.3);
}

.empire-state::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 20px #fbbf24;
}

.freedom-tower {
    width: 40px;
    height: 200px;
    background: linear-gradient(to top, #10b981, #059669);
    border-radius: 4px 4px 0 0;
    position: relative;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.freedom-tower::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 25px #10b981;
}

/* New iconic buildings */
.one-world-trade {
    width: 38px;
    height: 210px;
    background: linear-gradient(to top, #ef4444, #dc2626);
    border-radius: 4px 4px 0 0;
    position: relative;
    animation: buildingGlow 3s ease-in-out infinite alternate;
    animation-delay: 1.2s;
    box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
}

.chrysler-building {
    width: 32px;
    height: 170px;
    background: linear-gradient(to top, #8b5cf6, #7c3aed);
    border-radius: 4px 4px 0 0;
    position: relative;
    animation: buildingGlow 3s ease-in-out infinite alternate;
    animation-delay: 1.8s;
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

.flatiron-building {
    width: 28px;
    height: 150px;
    background: linear-gradient(to top, #06b6d4, #0891b2);
    border-radius: 4px 4px 0 0;
    position: relative;
    animation: buildingGlow 3s ease-in-out infinite alternate;
    animation-delay: 2.2s;
    box-shadow: 0 4px 8px rgba(6, 182, 212, 0.3);
}

/* City lights animation */
.light {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fbbf24;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite alternate;
    box-shadow: 0 0 8px #fbbf24;
}

.light-1 { top: 20%; left: 15%; animation-delay: 0s; }
.light-2 { top: 30%; left: 25%; animation-delay: 0.3s; }
.light-3 { top: 25%; left: 35%; animation-delay: 0.6s; }
.light-4 { top: 35%; left: 45%; animation-delay: 0.9s; }
.light-5 { top: 20%; left: 55%; animation-delay: 1.2s; }
.light-6 { top: 30%; left: 65%; animation-delay: 1.5s; }
.light-7 { top: 25%; left: 75%; animation-delay: 1.8s; }
.light-8 { top: 35%; left: 85%; animation-delay: 2.1s; }

/* Animations */
@keyframes buildingGlow {
    0% {
        box-shadow: 0 0 5px rgba(50, 205, 50, 0.3);
    }
    100% {
        box-shadow: 0 0 15px rgba(50, 205, 50, 0.6);
    }
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.nyc-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.service-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.service-icon svg {
    transition: all 0.3s ease;
}

.service-icon:hover svg {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--nyc-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: "✓";
    color: var(--nyc-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

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

.contact-info h3 {
    color: var(--nyc-blue);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon {
    background: var(--nyc-green);
}

.email-icon {
    background: var(--nyc-blue);
}

.location-icon {
    background: var(--nyc-orange);
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
}

/* Contact Form */
.contact-form {
    background: var(--medium-yellow);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--medium-orange);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox Groups */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.checkbox-label:hover {
    background-color: var(--light-gray);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
    cursor: pointer;
}

.checkbox-label:has(input[type="checkbox"]:checked) {
    color: var(--primary-blue);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--nyc-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--nyc-orange);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.125rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--light-gray);
}

.pricing-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Truck Pricing Table */
.truck-pricing-table {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-table th {
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
}

.our-price {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.1rem;
}

.savings {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Flat Item Pricing */
.flat-item-pricing {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

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

.flat-pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-gray);
}

.item-name {
    font-weight: 500;
    color: var(--text-dark);
}

.item-price {
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 1.1rem;
}

/* Payment Policy */
.payment-policy {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.policy-list {
    list-style: none;
    margin-top: 1rem;
}

.policy-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.policy-list li::before {
    content: "✓";
    color: var(--accent-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Extra Fees */
.extra-fees {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.extra-fees-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.extra-fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-gray);
}

.fee-name {
    font-weight: 500;
    color: var(--text-dark);
}

.fee-amount {
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 1.1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

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

.step {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid var(--accent-orange);
}

.faq-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

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

.calculator-form h3,
.calculator-results h3 {
    color: var(--nyc-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.item-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.item-select {
    flex: 2;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.item-select:focus {
    outline: none;
    border-color: var(--nyc-blue);
}

.item-select optgroup {
    font-weight: 600;
    color: var(--nyc-blue);
    background: var(--gray-100);
}

.item-select option {
    font-weight: 400;
    color: var(--text-dark);
    background: var(--white);
    padding: 0.5rem;
}

/* Quick Box Calculator */
.quick-box-calculator {
    background: var(--medium-orange);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.quick-box-calculator h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.quick-box-calculator p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

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

.box-input label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.box-count {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
}

.box-count:focus {
    outline: none;
    border-color: var(--nyc-blue);
}

.section-divider {
    border: none;
    height: 2px;
    background: var(--nyc-orange);
    margin: 2rem 0;
    opacity: 0.3;
}

.item-quantity {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.item-quantity:focus {
    outline: none;
    border-color: var(--nyc-blue);
}

.custom-item-input {
    background: var(--medium-blue);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--nyc-blue);
    margin-bottom: 1.5rem;
}

.custom-name {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.custom-name:focus {
    outline: none;
    border-color: var(--nyc-blue);
}

.custom-dimension {
    width: calc(33.33% - 0.5rem);
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    margin-right: 0.5rem;
    transition: border-color 0.3s ease;
}

.custom-dimension:focus {
    outline: none;
    border-color: var(--nyc-blue);
}

.custom-dimension:last-child {
    margin-right: 0;
}

.calculator-results {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--medium-orange);
}

.items-list {
    margin-bottom: 2rem;
}

.empty-state {
    color: var(--text-light);
    text-align: center;
    font-style: italic;
    padding: 2rem 0;
}

.item-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border: 1px solid var(--gray-200);
}

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.item-details {
    font-size: 0.875rem;
    color: var(--text-light);
}

.item-cubic-feet {
    font-weight: 600;
    color: var(--nyc-blue);
    margin-right: 1rem;
}

.remove-item {
    background: var(--nyc-orange);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.remove-item:hover {
    background: var(--nyc-orange);
    filter: brightness(1.1);
}

.special-handling-tags {
    margin-top: 0.5rem;
}

.special-tag {
    display: inline-block;
    background: var(--nyc-orange);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.total-summary {
    border-top: 2px solid var(--gray-200);
    padding-top: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 500;
}

.summary-item:last-of-type {
    margin-bottom: 1.5rem;
}

.summary-item span:first-child {
    color: var(--text-dark);
}

.summary-item span:last-child {
    color: var(--nyc-blue);
    font-weight: 600;
}

#truckSize {
    color: var(--nyc-orange) !important;
}

/* Special Handling Options */
.special-handling-options {
    background: var(--medium-yellow);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    color: var(--text-dark);
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label:last-child {
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
}

.checkbox-label span {
    color: var(--white);
}

/* Pricing Section */
.pricing-section {
    background: var(--medium-orange);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    color: var(--text-dark);
}

.pricing-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

.summary-divider {
    border: none;
    height: 2px;
    background: var(--nyc-orange);
    margin: 1.5rem 0;
}

.total-price {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.total-price span:last-child {
    color: var(--nyc-yellow) !important;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Pricing Options */
.pricing-options {
    margin: 1rem 0;
}

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

.stairs-input, .distance-input {
    background: var(--medium-yellow);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.stairs-input label, .distance-input label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stairs-input-field, .distance-input-field {
    width: 80px;
    padding: 0.5rem;
    border: none;
    border-radius: 6px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

/* Tip Suggestion */
.tip-suggestion {
    background: var(--medium-blue);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    color: var(--text-dark);
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tip-icon {
    font-size: 1.5rem;
}

.tip-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.tip-text {
    margin-bottom: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.tip-text strong {
    color: var(--nyc-orange);
}

.tip-examples {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tip-example {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid var(--medium-orange);
}

.tip-example span:last-child {
    color: var(--nyc-orange);
    font-weight: 600;
}

/* Enhanced Service Cards */
.service-card:nth-child(1) {
    border-left: 5px solid var(--nyc-blue);
}

.service-card:nth-child(2) {
    border-left: 5px solid var(--nyc-orange);
}

.service-card:nth-child(3) {
    border-left: 5px solid var(--nyc-green);
}

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(135deg, var(--nyc-blue) 0%, var(--medium-blue) 50%, var(--nyc-orange) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Enhanced Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

/* New Professional Features Styling */
.job-details-section {
    background: var(--medium-blue);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.date-time-input {
    text-align: center;
}

.date-input-field, .time-input-field {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: border-color 0.3s ease;
}

.date-input-field:focus, .time-input-field:focus {
    outline: none;
    border-color: var(--nyc-blue);
}

.additional-fees {
    background: var(--medium-yellow);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.additional-fees small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

.deposit-section {
    background: var(--medium-orange);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    color: var(--text-dark);
}

.deposit-section h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.deposit-explanation {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.deposit-explanation ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.deposit-explanation li {
    margin-bottom: 0.25rem;
}

.professional-service {
    background: var(--medium-blue);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    color: var(--text-dark);
}

.service-highlight h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.stairs-input small, .distance-input small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    opacity: 0.8;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .item-input-group {
        flex-direction: column;
    }
    
    .custom-dimension {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .box-inputs {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Professional Icon Styling */
.pricing h3 {
    display: flex;
    align-items: center;
}

.pricing h3 svg {
    flex-shrink: 0;
    margin-right: 8px;
    opacity: 0.8;
}
