/* Corporate IT Asset Buyback Specific Styles */
.corporate-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #1e40af 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
}

.corporate-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.min-vh-75 {
    min-height: 70vh;
}

.min-vh-70 {
    min-height: 70vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left:15px;
}

.corporate-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3);
    color: white;
}

.text-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.text-gradient::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    z-index: -1;
}

.corporate-hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 1;
    margin-bottom: 2rem;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.hero-badge .badge {
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.benefits-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.benefit-pill {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.95);
    color: #1e40af;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.benefit-pill i {
    font-size: 1.3rem;
    color: #10b981;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.5));
}

.trust-indicators-mini {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
}

/* Vector Graphics Styles */
.hero-vector-container {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vector-illustration {
    position: relative;
    width: 100%;
    height: 60vh;
    max-width: 800px;
}

/* Background Elements */
.vector-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: #10b981;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: #f59e0b;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: #ef4444;
    bottom: 20%;
    left: 5%;
    animation-delay: 4s;
}

.shape-4 {
    width: 70px;
    height: 70px;
    background: #8b5cf6;
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

/* Main ITAD Flow */
.itad-flow-vector {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 2rem;
}

/* Devices Section */
.devices-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.device-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.device-item {
    position: relative;
    animation: deviceFloat 4s ease-in-out infinite;
}

.device-item:nth-child(2) {
    animation-delay: 1s;
}

.device-item:nth-child(3) {
    animation-delay: 2s;
}

/* Laptop Vector */
.laptop-vector {
    width: 80px;
    height: 60px;
    position: relative;
}

.device-screen {
    width: 80px;
    height: 50px;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-radius: 8px 8px 0 0;
    border: 2px solid #6b7280;
    position: relative;
}

.device-screen::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 35px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.device-keyboard {
    width: 80px;
    height: 10px;
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    border-radius: 0 0 8px 8px;
    border: 2px solid #6b7280;
    border-top: none;
}

.laptop-dot-1,
.laptop-dot-2 {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
    border: 2px solid rgba(16, 185, 129, 0.3);
    z-index: 10;
}

.laptop-dot-1 {
    top: -8px;
    left: 12px;
    animation-delay: 0s;
}

.laptop-dot-2 {
    top: -8px;
    right: 12px;
    animation-delay: 1s;
}

/* Desktop Vector */
.desktop-vector {
    width: 70px;
    height: 80px;
    position: relative;
}

.monitor-screen {
    width: 70px;
    height: 45px;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-radius: 8px;
    border: 2px solid #6b7280;
    position: relative;
}

.monitor-screen::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 30px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.monitor-stand {
    width: 20px;
    height: 15px;
    background: #6b7280;
    margin: 0 auto;
    border-radius: 0 0 4px 4px;
}

.cpu-unit {
    width: 30px;
    height: 20px;
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    border-radius: 4px;
    margin: 0 auto;
    position: relative;
}

.cpu-unit::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: #10b981;
    border-radius: 2px;
    opacity: 0.6;
    animation: pulse 3s infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.cpu-unit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #fbbf24;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 6px rgba(251, 191, 36, 0.8);
    z-index: 2;
}

/* Server Vector */
.server-vector {
    width: 60px;
    height: 70px;
    position: relative;
}

.server-rack {
    width: 60px;
    height: 70px;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-radius: 8px;
    border: 2px solid #6b7280;
    position: relative;
}

.server-lights {
    position: absolute;
    top: 10px;
    left: 5px;
    right: 5px;
    display: flex;
    gap: 3px;
    justify-content: center;
    align-items: center;
}

.server-light-1,
.server-light-2,
.server-light-3 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.server-light-1 {
    background: #10b981;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
    animation-delay: 0s;
}

.server-light-2 {
    background: #f59e0b;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.8);
    animation-delay: 0.5s;
}

.server-light-3 {
    background: #3b82f6;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.8);
    animation-delay: 1s;
}

.server-ports {
    position: absolute;
    bottom: 10px;
    left: 5px;
    right: 5px;
    height: 8px;
    background: #000;
    border-radius: 2px;
}

/* Process Arrows */
.process-arrow-vector,
.revenue-arrow-vector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.arrow-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 2px;
    position: relative;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.revenue-line {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.arrow-head {
    width: 0;
    height: 0;
    border-left: 10px solid #1e40af;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.revenue-head {
    border-left-color: #059669;
}

.process-dots,
.money-particles {
    display: flex;
    gap: 4px;
}

.dot,
.particle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.dot-1,
.p-1 {
    background: #3b82f6;
    animation-delay: 0s;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.9);
}

.dot-2,
.p-2 {
    background: #10b981;
    animation-delay: 0.5s;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.9);
}

/* .dot-3,
.p-3 {
    background: #f59e0b;
    animation-delay: 1s;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.9);
} */

/* ITAD Center */
.itad-center-vector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.process-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.shield-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.shield-body {
    width: 40px;
    height: 35px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px 20px 0 20px;
    position: relative;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.shield-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.shield-check::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -14px;
    width: 8px;
    height: 4px;
    background: white;
    transform: rotate(45deg);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.process-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-top-color: #10b981;
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

.process-indicators {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.indicator {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #f59e0b;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.9);
    border: 3px solid rgba(245, 158, 11, 0.4);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.ind-1 {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.ind-2 {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.ind-3 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.ind-4 {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

/* Revenue Section */
.revenue-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.money-stack {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.currency-symbol {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.value-bars {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bar {
    width: 20px;
    height: 4px;
    border-radius: 2px;
    animation: barGrow 2s ease-in-out infinite;
}

.bar-1 {
    background: #f59e0b;
    animation-delay: 0s;
}

.bar-2 {
    background: #10b981;
    animation-delay: 0.3s;
}

.bar-3 {
    background: #3b82f6;
    animation-delay: 0.6s;
}

.growth-arrow {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 20px;
    height: 20px;
    background: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid white;
}

/* Section Labels */
.section-label {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    color: #1e40af;
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.revenue-label {
    background: rgba(16, 185, 129, 0.95);
    border-color: rgba(16, 185, 129, 0.8);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Stats Overlay */
.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.stat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.9);
    text-align: center;
    animation: statFloat 4s ease-in-out infinite;
}

.stat-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.stat-2 {
    top: 25%;
    right: 8%;
    animation-delay: 1s;
}

.stat-3 {
    bottom: 20%;
    left: 8%;
    animation-delay: 2s;
}

.stat-value {
    font-size: 1rem;
    font-weight: 800;
    color: #1e40af;
    line-height: 1;
    text-shadow: none;
}

.stat-label {
    font-size: 0.85rem;
    color: #374151;
    font-weight: 600;
    margin-top: 0.25rem;
    text-shadow: none;
}

.corporate-cta-primary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.corporate-cta-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-decoration: none;
}

.corporate-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.corporate-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.trust-indicators {
    background: #f8fafc;
    padding: 4rem 0;
}

.trust-badge {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.trust-badge:hover .trust-icon .trust-badge-icon {
    opacity: 1 !important;
}

.trust-badge-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: #1e40af;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
}

.trust-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.8rem;
}

.trust-desc {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.6;
}

.services-section {
    background: white;
    padding: 2.5rem 0;
}

.service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #1e40af;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: #f0f9ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #1e40af;
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #1e40af;
    color: white;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}

.service-desc {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    color: #374151;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: '✓';
    color: #059669;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.devices-showcase {
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    padding: 5rem 0;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.device-item {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.device-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #1e40af;
}

.device-icon {
    font-size: 3rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.device-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.device-desc {
    font-size: 0.85rem;
    color: #6b7280;
}

.section-title {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #1e40af !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
    display: block !important;
    visibility: visible !important;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    text-align: center;
    /* max-width: 600px; */
    margin-left: auto;
    margin-right: auto;
}

.cta-section {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-cta-white {
    background: white;
    color: #059669;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #059669;
    text-decoration: none;
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-outline:hover {
    background: white;
    color: #059669;
    transform: translateY(-2px);
    text-decoration: none;
}

.stats-section {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid #e5e7eb;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #059669;
    display: block;
    line-height: 1;
}

.stat-label {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.phone-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.phone-text {
    font-size: 1rem;
    font-weight: 600;
}

/* CSS Animations for Vector Graphics */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes deviceFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(1deg);
    }
    66% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes barGrow {
    0%, 100% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(1.2);
    }
}

@keyframes statFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(-5px) translateX(-3px);
    }
    75% {
        transform: translateY(-15px) translateX(2px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes progressLoad {
    from {
        width: 0%;
    }
    to {
        width: var(--progress-width);
    }
}

/* Enhanced Animation Keyframes */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Process Flow Enhancements */
.process-step-detailed:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.process-step-detailed:hover .step-icon {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .corporate-hero {
        min-height: 300px;
        text-align: center;
    }
    
    .corporate-hero-title {
        font-size: 1.6rem;
    }
    
    .corporate-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .corporate-cta-primary,
    .corporate-cta-secondary {
        padding: 12px 24px;
        font-size: 1rem;
        display: block;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .device-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-white,
    .btn-cta-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Mobile-specific calculator optimizations */
    .card-body {
        padding: 2rem 1.5rem !important;
    }
    
    .corporate-hero-content {
        padding: 2rem 0;
    }
    
    .trust-badge,
    .service-card {
        margin-bottom: 2rem;
    }
    
    .phone-highlight {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Form optimizations for mobile */
    .form-control-lg,
    .form-select-lg {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    /* Calculator mobile optimizations */
    #calculatorResults .bg-light,
    #calculatorResults .bg-success {
        margin-bottom: 1rem;
    }
    
    .alert {
        font-size: 0.9rem;
    }
    
    /* Touch-friendly buttons */
    .btn {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    /* Improved form spacing on mobile */
    .mb-3 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-4 {
        margin-bottom: 2rem !important;
    }
    
    /* Mobile Process Flow */
    .process-flow {
        display: none !important;
    }
    
    .mobile-process-flow {
        display: block !important;
    }
    
    .process-arrow-horizontal {
        display: none;
    }
    
    /* Hero Visual Mobile */
    .itad-process-visual {
        transform: scale(0.8);
    }
    
    .asset-icons {
        gap: 0.5rem !important;
    }
    
    .asset-item {
        padding: 0.75rem !important;
    }
    
    .process-center,
    .revenue-output {
        padding: 1rem !important;
    }
    
    /* Device Examples Mobile */
    .device-examples {
        margin-top: 0.75rem !important;
        padding-top: 0.75rem !important;
    }
    
    .device-examples span {
        font-size: 0.7rem !important;
        padding: 0.2rem 0.4rem !important;
    }
    
    /* Stats Visual Mobile */
    .stat-visual div {
        width: 60px !important;
        height: 60px !important;
    }
    
    .stat-visual i {
        font-size: 1.5rem !important;
    }
    
    .stat-visual div div {
        width: 24px !important;
        height: 24px !important;
        top: -8px !important;
        right: -8px !important;
    }
    
    .stat-visual div div i {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 576px) {
    .corporate-hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .trust-icon,
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .device-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-body {
        padding: 1.5rem 1rem !important;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    /* Ultra-mobile form optimizations */
    .form-control,
    .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile Responsive Styles for Vector Hero */
@media (max-width: 991px) {
    .hero-vector-container {
        height: 60vh;
        margin-top: 2rem;
    }
    
    .vector-illustration {
        height: 50vh;
        max-width: 600px;
    }
    
    .itad-flow-vector {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }
    
    .devices-section,
    .itad-center-vector,
    .revenue-section {
        transform: scale(0.8);
    }
    
    .process-arrow-vector,
    .revenue-arrow-vector {
        transform: rotate(90deg) scale(0.6);
    }
    
    .stats-overlay {
        display: none;
    }
    
    .floating-shape {
        display: none;
    }
}

@media (max-width: 768px) {
    .corporate-hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-vector-container {
        height: 40vh;
        margin-top: 1rem;
    }
    
    .vector-illustration {
        height: 35vh;
    }
    
    .itad-flow-vector {
        gap: 1rem;
    }
    
    .devices-section,
    .itad-center-vector,
    .revenue-section {
        transform: scale(0.6);
    }
    
    .process-arrow-vector,
    .revenue-arrow-vector {
        transform: rotate(90deg) scale(0.4);
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        font-weight: 700;
        background: rgba(255, 255, 255, 0.98);
        color: #1e40af;
        border: 2px solid rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 576px) {
    .hero-vector-container {
        height: 30vh;
    }
    
    .vector-illustration {
        height: 25vh;
    }
    
    .devices-section,
    .itad-center-vector,
    .revenue-section {
        transform: scale(0.5);
    }
    
    .process-arrow-vector,
    .revenue-arrow-vector {
        transform: rotate(90deg) scale(0.3);
    }
}

/* Mumbai Content Section - Professional & Simple */
.mumbai-content-highlight {
    background: #f8fafc !important;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1e40af !important;
    border: 1px solid #e5e7eb !important;
}

.mumbai-content-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151 !important;
    text-align: justify;
}

.mumbai-content-text .text-primary {
    color: #1e40af !important;
    font-weight: 600;
}

.mumbai-content-text .text-warning {
    color: #1e40af !important;
    font-weight: 600;
}

.mumbai-content-text .text-success {
    color: #1e40af !important;
    font-weight: 600;
}

.mumbai-feature-card {
    background: white !important;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb !important;
    transition: all 0.3s ease;
}

.mumbai-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.1) !important;
    border-color: #1e40af !important;
}

.mumbai-feature-icon {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem;
    display: block;
    color: #1e40af !important;
}

.mumbai-feature-text {
    font-weight: 600;
    color: #374151 !important;
    font-size: 0.9rem;
}

/* Mumbai Hero Section Styles */
.mumbai-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 60%, #64748b 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.mumbai-elegant-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 25% 25%, #f59e0b 0%, transparent 50%), 
                      radial-gradient(circle at 75% 75%, #3b82f6 0%, transparent 50%);
    z-index: 1;
}

.mumbai-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
    z-index: 2;
}

.mumbai-skyline-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(15, 23, 42, 0.3) 10%, 
        rgba(30, 41, 59, 0.4) 15%, 
        rgba(15, 23, 42, 0.3) 20%, 
        transparent 25%,
        rgba(30, 41, 59, 0.35) 35%,
        rgba(51, 65, 85, 0.4) 40%,
        rgba(30, 41, 59, 0.35) 45%,
        transparent 50%,
        rgba(15, 23, 42, 0.4) 60%,
        rgba(30, 41, 59, 0.5) 65%,
        rgba(15, 23, 42, 0.4) 70%,
        transparent 75%,
        rgba(30, 41, 59, 0.3) 85%,
        rgba(15, 23, 42, 0.4) 90%,
        transparent 100%
    );
}

.mumbai-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.mumbai-float-1 {
    position: absolute;
    top: 20%;
    left: 8%;
    animation: float 8s ease-in-out infinite;
    opacity: 0.08;
    font-size: 2.5rem;
    color: #f59e0b;
}

.mumbai-float-2 {
    position: absolute;
    top: 30%;
    right: 12%;
    animation: float 10s ease-in-out infinite reverse;
    opacity: 0.08;
    font-size: 2rem;
    color: #3b82f6;
}

.mumbai-float-3 {
    position: absolute;
    bottom: 35%;
    left: 15%;
    animation: float 9s ease-in-out infinite;
    opacity: 0.08;
    font-size: 2rem;
    color: #f59e0b;
}

.mumbai-hero-container {
    position: relative;
    z-index: 4;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Mumbai Badge */
.mumbai-badge {
    display: inline-block;
}

.mumbai-badge-inner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 60px;
    padding: 1rem 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mumbai-badge-content {
    display: flex;
    align-items: center;
}

.mumbai-badge-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    color: white;
    font-size: 1.3rem;
}

.mumbai-badge-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #f59e0b;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mumbai-badge-subtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

/* Mumbai Hero Typography */
.mumbai-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    color: white;
}

.mumbai-gradient-orange {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.mumbai-gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.mumbai-hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Mumbai Feature Cards in Hero */
.mumbai-features .mumbai-feature-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    height: 90px;
}

.mumbai-features .mumbai-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.1)) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2) !important;
}

.mumbai-feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    color: white !important;
    font-size: 1.3rem;
}

.mumbai-icon-orange {
    background: linear-gradient(135deg, #f59e0b, #fbbf24) !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.mumbai-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa) !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.mumbai-icon-green {
    background: linear-gradient(135deg, #10b981, #34d399) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.mumbai-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mumbai-feature-title {
    font-weight: 700;
    color: white !important;
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 0;
}

.mumbai-feature-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7) !important;
    line-height: 1.3;
    margin: 0;
}

/* Mumbai CTA Buttons */
.mumbai-btn-primary {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border: none;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    padding: 15px 30px;
    text-decoration: none;
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.mumbai-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
    color: white;
    text-decoration: none;
}

.mumbai-btn-secondary {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.1));
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    padding: 15px 30px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.mumbai-btn-secondary:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

/* Mumbai Stats Section */
.mumbai-stats {
    text-align: center;
    padding: 2rem 1rem;
}

.mumbai-main-stat {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.mumbai-stat-circle {
    width: 220px;
    height: 220px;
    border: 3px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(59, 130, 246, 0.1));
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.mumbai-stat-text-large {
    font-size: 2.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-align: center;
}

.mumbai-stat-text-large:nth-child(2) {
    margin-top: -0.3rem;
}

.mumbai-stat-text-medium {
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
    margin-top: 0.5rem;
    text-align: center;
    line-height: 1.2;
}

.mumbai-stat-text-small {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
    line-height: 1.2;
}

/* Orbiting Stats */
.mumbai-orbit-stat {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
}

.mumbai-orbit-1 {
    top: -15px;
    left: -15px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
    animation: orbit 25s linear infinite;
}

.mumbai-orbit-2 {
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
    animation: orbit 30s linear infinite reverse;
}

.mumbai-orbit-3 {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.2);
    animation: orbit 35s linear infinite;
}

.mumbai-orbit-value {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.mumbai-orbit-1 .mumbai-orbit-value {
    color: #3b82f6;
}

.mumbai-orbit-2 .mumbai-orbit-value {
    color: #10b981;
}

.mumbai-orbit-3 .mumbai-orbit-value {
    color: #f59e0b;
}

.mumbai-orbit-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    line-height: 1;
    text-align: center;
    margin-top: 0.25rem;
}

/* Mumbai Areas Card */
.mumbai-areas-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.mumbai-areas-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.mumbai-area-tag {
    border-radius: 12px;
    padding: 0.75rem;
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mumbai-area-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.mumbai-area-orange {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.mumbai-area-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.mumbai-area-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Responsive adjustments for Mumbai content */
@media (max-width: 768px) {
    .mumbai-content-highlight {
        padding: 1.5rem;
    }
    
    .mumbai-content-text {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .mumbai-feature-card {
        margin-bottom: 1rem;
    }
    
    .mumbai-hero-title {
        font-size: 1.6rem;
    }
    
    .mumbai-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .mumbai-hero-container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .mumbai-stat-circle {
        width: 180px;
        height: 180px;
    }
    
    .mumbai-stat-text-large {
        font-size: 2rem;
    }
    
    .mumbai-features .row {
        gap: 1rem;
    }
    
    .mumbai-features .mumbai-feature-card {
        height: 80px;
        padding: 1rem;
    }
    
    .mumbai-feature-icon {
        width: 50px;
        height: 50px;
        margin-right: 0.75rem;
    }
}

@media (max-width: 576px) {
    .mumbai-hero-title {
        font-size: 1.8rem;
    }
    
    .mumbai-btn-primary,
    .mumbai-btn-secondary {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0;
        text-align: center;
    }
}
/* Mumbai Coverage Areas Section */
.mumbai-coverage-section {
    padding: 2.5rem 0;
    background: #f8fafc !important;
}

.mumbai-coverage-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af !important;
    margin-bottom: 1rem;
}

.mumbai-coverage-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    /* max-width: 600px; */
    margin: 0 auto;
}

.mumbai-coverage-card {
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background: white !important;
    border: 1px solid #e5e7eb !important;
}

.mumbai-coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1) !important;
    border-color: #1e40af !important;
}

.mumbai-coverage-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white !important;
    background: #1e40af !important;
}

.mumbai-coverage-card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #1e40af !important;
}

.mumbai-coverage-card-text {
    color: #64748b !important;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.mumbai-coverage-badge {
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: #f0f9ff !important;
}

.mumbai-coverage-badge small {
    font-weight: 500;
    font-size: 0.75rem;
    color: #1e40af !important;
}

/* Responsive adjustments for coverage section */
@media (max-width: 768px) {
    .mumbai-coverage-section {
        padding: 3rem 0;
    }
    
    .mumbai-coverage-title {
        font-size: 1.6rem;
    }
    
    .mumbai-coverage-subtitle {
        font-size: 1rem;
    }
    
    .mumbai-coverage-card {
        margin-bottom: 1.5rem;
    }
}
/* Trust Indicators Additional Classes */
.trust-icon-blue {
    background: #1e40af;
}

.trust-icon-green {
    background: #059669;
}

.trust-icon-red {
    background: #dc2626;
}

.trust-icon-purple {
    background: #7c3aed;
}

.trust-badge-green {
    background: #10b981;
}

.trust-badge-blue {
    background: #3b82f6;
}

.trust-badge-orange {
    background: #f59e0b;
}

.trust-badge-red {
    background: #ef4444;
}

.trust-badge-icon i {
    font-size: 0.7rem;
    color: white;
}

.trust-delay-1 {
    animation-delay: 0.1s;
}

.trust-delay-2 {
    animation-delay: 0.2s;
}

.trust-delay-3 {
    animation-delay: 0.3s;
}

/* Mumbai Form Section */
.mumbai-form-section {
    padding: 2.5rem 0;
    background: #f8fafc;
}

.mumbai-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: none;
    overflow: hidden;
}

.mumbai-form-header {
    background: #1e40af;
    color: white;
    text-align: center;
    padding: 2rem;
}

.mumbai-form-btn {
    background: #1e40af;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    padding: 15px 40px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mumbai-form-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    color: white;
}

/* Mumbai SEO Sections - Professional & Simple */
.mumbai-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af !important;
    margin-bottom: 1rem;
}

.mumbai-section-subtitle {
    font-size: 1.1rem;
    color: #64748b !important;
    max-width: 700px;
    margin: 0 auto;
}

/* Mumbai Brands Section */
.mumbai-brands-section {
    padding: 2.5rem 0;
    background: white !important;
}

.mumbai-brand-card {
    background: white !important;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e5e7eb !important;
}

.mumbai-brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1) !important;
    border-color: #1e40af !important;
}

.mumbai-brand-icon {
    width: 70px;
    height: 70px;
    background: #f0f9ff !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #1e40af !important;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.mumbai-brand-card:hover .mumbai-brand-icon {
    background: #1e40af !important;
    color: white !important;
    transform: scale(1.05);
}

.mumbai-brand-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e40af !important;
    margin-bottom: 1rem;
}

.mumbai-brand-desc {
    color: #64748b !important;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mumbai-brand-models {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.mumbai-model-tag {
    background: #f8fafc !important;
    color: #374151 !important;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e5e7eb !important;
}

/* Mumbai Districts Section */
.mumbai-districts-section {
    padding: 2.5rem 0;
    background: #f8fafc;
}

.mumbai-district-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.mumbai-district-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    border-color: #1e40af;
}

.mumbai-district-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.mumbai-district-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    margin: 0;
}

.mumbai-district-badge {
    background: #1e40af;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.mumbai-district-desc {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mumbai-district-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mumbai-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
}

.mumbai-feature-item i {
    font-size: 1rem;
    color: #1e40af;
}

/* Mumbai Process Section */
.mumbai-process-section {
    padding: 2.5rem 0;
    background: white;
}

.mumbai-process-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.mumbai-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    border-color: #1e40af;
}

.mumbai-process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: #1e40af;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.mumbai-process-icon {
    width: 70px;
    height: 70px;
    background: #f0f9ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    color: #1e40af;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.mumbai-process-card:hover .mumbai-process-icon {
    background: #1e40af;
    color: white;
}

.mumbai-process-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}

.mumbai-process-desc {
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .mumbai-section-title {
        font-size: 1.6rem;
    }
    
    .mumbai-section-subtitle {
        font-size: 1rem;
    }
    
    .mumbai-brands-section,
    .mumbai-districts-section,
    .mumbai-process-section {
        padding: 3rem 0;
    }
    
    .mumbai-brand-card,
    .mumbai-district-card,
    .mumbai-process-card {
        margin-bottom: 2rem;
    }
    
    .mumbai-district-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mumbai-district-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mumbai-brand-models {
        justify-content: flex-start;
    }
}

/* Corporate Quote Form Component Styles */
.corporate-quote-section {
    padding: 2.5rem 0;
    background: transparent;
}

.corporate-quote-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.corporate-quote-card:hover {
    border-color: #1e40af;
}

.corporate-quote-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.corporate-quote-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.quote-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.quote-text {
    flex: 1;
}

.quote-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.quote-subtitle {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.corporate-quote-body {
    padding: 2rem;
}

.corporate-quote-form .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.corporate-quote-form .form-group {
    flex: 1;
    min-width: 0;
}

.corporate-quote-form .form-group.full-width {
    flex: 1 1 100%;
}

.form-section-title {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.corporate-quote-form .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9rem;
}

.corporate-quote-form .required {
    color: #dc2626;
    font-weight: 700;
}

.corporate-quote-form .form-control,
.corporate-quote-form .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.corporate-quote-form .form-control:focus,
.corporate-quote-form .form-select:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    background: white;
    outline: none;
}

.corporate-quote-form .form-control.is-invalid,
.corporate-quote-form .form-select.is-invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.corporate-quote-form .form-control.is-valid,
.corporate-quote-form .form-select.is-valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.corporate-quote-form .form-control::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-submit {
    text-align: center;
    margin-top: 2.5rem;
}

.corporate-quote-btn {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.corporate-quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

.corporate-quote-btn:active {
    transform: translateY(-1px);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: #10b981;
    font-size: 1rem;
}

/* File Upload Styles */
.optional-text {
    color: #6b7280;
    font-weight: 400;
    font-size: 0.85rem;
}

.file-upload-area {
    margin-top: 0.5rem;
}

.file-upload-zone {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.file-upload-zone:hover {
    border-color: #1e40af;
    background: #f0f9ff;
}

.file-upload-zone.dragover {
    border-color: #1e40af;
    background: #eff6ff;
    transform: scale(1.02);
}

.file-upload-icon {
    font-size: 3rem;
    color: #9ca3af;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.file-upload-zone:hover .file-upload-icon {
    color: #1e40af;
}

.file-upload-text strong {
    color: #374151;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.file-upload-text p {
    color: #6b7280;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.file-upload-text small {
    color: #9ca3af;
    font-size: 0.8rem;
}

.file-list {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.file-list-header {
    color: #374151;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.file-item:hover {
    border-color: #1e40af;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
}

.file-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.file-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 1.2rem;
    color: white;
}

.file-icon.pdf {
    background: #dc2626;
}

.file-icon.doc {
    background: #2563eb;
}

.file-icon.excel {
    background: #059669;
}

.file-icon.image {
    background: #7c3aed;
}

.file-details {
    flex: 1;
}

.file-name {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    word-break: break-word;
}

.file-size {
    color: #6b7280;
    font-size: 0.8rem;
}

.file-remove {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.file-remove:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.upload-progress {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.upload-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #1e40af, #3b82f6);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Mobile Responsive for Corporate Quote Form */
@media (max-width: 768px) {
    .corporate-quote-section {
        padding: 2rem 0;
    }
    
    .corporate-quote-header {
        padding: 1.5rem;
    }
    
    .quote-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .quote-title {
        font-size: 1.2rem;
    }
    
    .quote-subtitle {
        font-size: 0.9rem;
    }
    
    .corporate-quote-body {
        padding: 1.5rem;
    }
    
    .corporate-quote-form .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 1.5rem;
    }
    
    .corporate-quote-form .form-group {
        margin-bottom: 1.5rem;
    }
    
    .corporate-quote-form .form-control,
    .corporate-quote-form .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem 1.25rem;
    }
    
    .corporate-quote-btn {
        width: 100%;
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    .form-note {
        font-size: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .corporate-quote-header {
        padding: 1.25rem;
    }
    
    .corporate-quote-body {
        padding: 1.25rem;
    }
    
    .quote-title {
        font-size: 1.1rem;
    }
    
    .corporate-quote-form .form-control,
    .corporate-quote-form .form-select {
        padding: 0.875rem 1rem;
    }
    
    .file-upload-zone {
        padding: 1.5rem 1rem;
    }
    
    .file-upload-icon {
        font-size: 2rem;
    }
    
    .file-upload-text strong {
        font-size: 1rem;
    }
    
    .file-item {
        padding: 0.5rem;
    }
    
    .file-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .file-name {
        font-size: 0.85rem;
    }
    
    .file-size {
        font-size: 0.75rem;
    }
}

/* Bulk Disposal Hero Section Styles */
.bulk-disposal-hero {
    background: linear-gradient(135deg, #64748b 0%, #475569 30%, #334155 60%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
}

.bulk-disposal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="recycleGrid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23recycleGrid)"/></svg>');
    opacity: 0.3;
}

.bulk-disposal-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3);
    color: white;
}

.disposal-highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 900;
}

.bulk-disposal-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 1;
    margin-bottom: 2rem;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.disposal-benefits {
    margin-bottom: 2rem;
}

.disposal-benefit-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 80px;
}

.disposal-benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.disposal-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: white;
    background: rgba(100, 116, 139, 0.8);
    flex-shrink: 0;
}

.disposal-icon-green {
    background: rgba(16, 185, 129, 0.8) !important;
}

.disposal-icon-orange {
    background: rgba(168, 85, 247, 0.8) !important;
}

.disposal-benefit-text {
    flex: 1;
}

.benefit-title {
    font-weight: 700;
    color: white;
    font-size: 1rem;
    line-height: 1.2;
    margin: 0;
}

.benefit-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
    margin: 0;
}

.disposal-btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    padding: 15px 30px;
    text-decoration: none;
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.disposal-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.disposal-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    padding: 15px 30px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.disposal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Disposal Process Visual */
.disposal-visual-container {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.disposal-process-flow {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3rem;
    width: 100%;
    max-width: 400px;
}

.disposal-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.stage-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    animation: pulse 3s infinite;
}

.collection-stage .stage-circle {
    background: linear-gradient(135deg, #64748b, #475569);
    box-shadow: 0 0 20px rgba(100, 116, 139, 0.3);
}

.processing-stage .stage-circle {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    animation-delay: 0.5s;
}

.recycling-stage .stage-circle {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    animation-delay: 1s;
}

.certification-stage .stage-circle {
    background: linear-gradient(135deg, #a855f7, #9333ea);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    animation-delay: 1.5s;
}

.stage-label {
    font-weight: 700;
    color: white;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stage-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.flow-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    border-radius: 2px;
    z-index: 1;
}

.line-1 {
    top: 50%;
    left: 25%;
    width: 50%;
    height: 2px;
    transform: translateY(-50%);
}

.line-2 {
    top: 25%;
    left: 50%;
    width: 2px;
    height: 50%;
    transform: translateX(-50%);
}

.line-3 {
    bottom: 50%;
    left: 25%;
    width: 50%;
    height: 2px;
    transform: translateY(50%);
}

/* India Coverage Visual */
.india-coverage-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.3;
}

.coverage-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.point-1 {
    top: 20%;
    left: 30%;
}

.point-2 {
    top: 40%;
    left: 15%;
}

.point-3 {
    bottom: 25%;
    right: 20%;
}

.point-4 {
    top: 35%;
    right: 15%;
}

.coverage-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
}

.coverage-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-align: center;
}

/* Mobile Responsive for Bulk Disposal */
@media (max-width: 768px) {
    .bulk-disposal-hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .bulk-disposal-title {
        font-size: 1.8rem;
    }
    
    .bulk-disposal-subtitle {
        font-size: 0.95rem;
    }
    
    .disposal-benefit-card {
        height: 70px;
        padding: 0.75rem;
    }
    
    .disposal-benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .disposal-btn-primary,
    .disposal-btn-secondary {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .disposal-visual-container {
        height: 50vh;
        padding: 1rem;
    }
    
    .disposal-process-flow {
        gap: 2rem;
        max-width: 300px;
    }
    
    .stage-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Office Hero Section Styles - Fixed Layout */
.office-hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.office-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.office-hero-section .hero-content {
    position: relative;
    z-index: 2;
}

.office-hero-section .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
}

.office-hero-section .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #64748b;
}

.office-hero-section .benefit-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

.office-hero-section .benefit-item i {
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

/* Office Devices Grid */
.office-devices-grid {
    position: relative;
    z-index: 2;
}

.device-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.device-card .device-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.device-card .device-icon i {
    font-size: 2rem;
}

.device-card h6 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.device-card small {
    font-size: 0.75rem;
    color: #64748b;
}

/* Process Steps */
.process-steps {
    margin-top: 2rem;
}

.step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0 auto 0.75rem;
}

.step-card h6 {
    margin: 0 0 0.25rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
}

.step-card small {
    color: #64748b;
    font-size: 0.7rem;
}

/* Responsive adjustments for office hero */
@media (max-width: 768px) {
    .office-hero-section {
        padding: 40px 0;
    }
    
    .office-hero-section .hero-title {
        font-size: 2rem;
    }
    
    .office-hero-section .hero-subtitle {
        font-size: 1rem;
    }
    
    .device-card {
        padding: 1rem 0.75rem;
    }
    
    .device-card .device-icon {
        width: 50px;
        height: 50px;
    }
    
    .device-card .device-icon i {
        font-size: 1.5rem;
    }
    
    .step-card {
        padding: 0.75rem 0.5rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}