/* Fix stickyContent */
.rey-stickyContent.--visible>.elementor {
    background: #000 !important;
    color: #fff !important;
}

/* home dashboard widget */
.dashboard-widget {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    animation: slideInRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-visual {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 20px;
    opacity: 0.8;
    z-index: -1;
    animation: subtleGlow 4s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.demo-status {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    animation: gentlePulse 3s ease-in-out infinite;
}

.demo-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 4px;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chart-area {
    height: 110px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-line {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    height: 50px;
    background: linear-gradient(45deg, #10b981, #0891b2);
    clip-path: polygon(0 100%, 0 60%, 15% 45%, 30% 65%, 45% 40%, 60% 35%, 75% 20%, 90% 15%, 100% 10%, 100% 100%);
    opacity: 0.7;
    transform: scaleX(0);
    transform-origin: left;
    animation: chartGrowOptimized 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes chartGrowOptimized {
    to { transform: scaleX(1); }
}

.chart-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.chart-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: dotFloatOptimized 4s ease-in-out infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.chart-dot:nth-child(1) {
    left: 15%;
    top: 60%;
    animation-delay: 0s;
}

.chart-dot:nth-child(2) {
    left: 43%;
    top: 56%;
    animation-delay: 1s;
}

.chart-dot:nth-child(3) {
    left: 75%;
    top: 46%;
    animation-delay: 2s;
}

@keyframes dotFloatOptimized {
    0%, 100% { transform: translate3d(0, 0px, 0); }
    50% { transform: translate3d(0, -3px, 0); }
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translate3d(0, -1px, 0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: visible;
}

.floating-card {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    white-space: nowrap;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    animation: floatUpOptimized 6s ease-in-out infinite;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(0, 0, 0, 0.8);
}

.floating-card:nth-child(1) {
    top: 15%;
    right: 0px;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 55%;
    left: 50px;
    animation-delay: 3s;
}

.floating-card:nth-child(3) {
    bottom: 18%;
    right: -10px;
    animation-delay: 1.5s;
}

@keyframes floatUpOptimized {
    0%, 100% { 
        transform: translate3d(0, 0px, 0); 
        opacity: 0.7; 
    }
    50% { 
        transform: translate3d(0, -8px, 0); 
        opacity: 1; 
    }
}

@keyframes slideInRight {
    from { 
        opacity: 0; 
        transform: translate3d(30px, 0, 0); 
    }
    to { 
        opacity: 1; 
        transform: translate3d(0, 0, 0); 
    }
}

@media (max-width: 768px) {
    .dashboard-widget {
        max-width: 100%;
        margin: 15px 0;
    }
    
    .hero-visual {
        padding: 20px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .feature-tags {
        gap: 6px;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 5px 8px;
    }
}

@media (max-width: 480px) {
    .demo-title {
        font-size: 1.1rem;
    }
    
    .demo-status {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .chart-area {
        height: 90px;
    }
    
    .hero-visual {
        padding: 15px;
    }
}

.dashboard-widget * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-color-scheme: dark) {
    .hero-visual {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .metric-card {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .chart-area {
        background: rgba(0, 0, 0, 0.3);
    }
}
/* tabs style */
.elementor-widget-tabs {
    contain: layout !important;
}

.elementor-tabs .elementor-tabs-content-wrapper {
    min-height: 400px !important;
    contain: layout !important;
}

.e-n-tab-content {
    animation: fadeInOnly 0.3s ease-out !important;
}

@keyframes fadeInOnly {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.e-n-tabs-heading .e-n-tab-title {
    text-align: left !important;
    justify-content: flex-start !important;
    display: flex !important;
    align-items: center !important;
}

.e-n-tabs-heading .e-n-tab-title .e-n-tab-title-text {
    position: relative;
    padding-right: 25px !important;
    text-align: left !important;
}

.e-n-tabs-heading .e-n-tab-title .e-n-tab-title-text::after {
    content: '→' !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) translateX(10px) !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    pointer-events: none !important;
}

.e-n-tabs-heading .e-n-tab-title[aria-selected="true"] .e-n-tab-title-text::after {
    opacity: 1 !important;
    transform: translateY(-50%) translateX(0) !important;
}

.e-n-tabs-heading .e-n-tab-title:hover .e-n-tab-title-text::after {
    opacity: 1 !important;
    transform: translateY(-50%) translateX(0) !important;
}
/* Modified Development Process */
.section-wrapper-7n4q8w {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title-9m3k7p {
    text-align: center;
    margin-bottom: 60px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #ffffff;
    position: relative;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title-9m3k7p::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    border-radius: 2px;
    animation: shimmer-5x8n4t 2s ease-in-out infinite;
}

@keyframes shimmer-5x8n4t {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ========== OPTIMIZED VERTICAL PROCESS STYLES ========== */
.vertical-process-3q7h9k {
    margin: 0 auto;
    position: relative;
    padding-left: 80px;
    padding-top: 32px;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Enhanced main connecting line with gradient animation */
.vertical-process-3q7h9k::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 50px;
    bottom: 110px;
    width: 2px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
    animation: pulse-line-8t4m2s 3s ease-in-out infinite;
}

.vertical-item-6w9p2r {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft-4k7n8q 0.8s ease-out forwards;
}

.vertical-item-6w9p2r:nth-child(1) { animation-delay: 0.1s; }
.vertical-item-6w9p2r:nth-child(2) { animation-delay: 0.2s; }
.vertical-item-6w9p2r:nth-child(3) { animation-delay: 0.3s; }
.vertical-item-6w9p2r:nth-child(4) { animation-delay: 0.4s; }
.vertical-item-6w9p2r:nth-child(5) { animation-delay: 0.5s; }
.vertical-item-6w9p2r:nth-child(6) { animation-delay: 0.6s; }
.vertical-item-6w9p2r:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideInLeft-4k7n8q {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced connection points */
.vertical-item-6w9p2r::before {
    content: '';
    position: absolute;
    left: -59px;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: 5px solid #f7fafc;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.3), 0 4px 12px rgba(102, 126, 234, 0.4);
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vertical-item-6w9p2r:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(102, 126, 234, 0.4), 0 6px 20px rgba(102, 126, 234, 0.5);
}

/* Simplified content container without border-left and padding */
.vertical-content-1m8k5z {
    border-radius: 16px;
    margin-left: 30px;
    flex: 1;
    position: relative;
}

/* Typography optimization for SEO and readability */
.vertical-title-4x2n7k {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2em;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.vertical-description-8k5m3w {
    color: #e2e8f0;
    line-height: 1.2em;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========== RESPONSIVE DESIGN - MOBILE FIRST ========== */
@media (max-width: 768px) {
    .section-wrapper-7n4q8w {
        padding: 30px 20px;
        border-radius: 12px;
        background: rgba(20, 20, 20, 0.98);
    }
    
    .vertical-process-3q7h9k {
        padding-left: 50px;
    }
    
    .vertical-process-3q7h9k::before {
        left: 25px;
        width: 3px;
        box-shadow: 0 0 15px rgba(102, 126, 234, 0.4);
    }
    
    .vertical-item-6w9p2r {
        margin-bottom: 0;
    }
    
    .vertical-item-6w9p2r::before {
        left: -34px;
        width: 18px;
        height: 18px;
        top: 7px;
        border: 4px solid #f7fafc;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3), 0 3px 8px rgba(102, 126, 234, 0.4);
    }
    
    .vertical-content-1m8k5z {
        margin-left: 20px;
    }
    
    .vertical-title-4x2n7k {
        font-size: 16px;
        margin-bottom: 8px;
        color: #ffffff;
    }
    
    .vertical-description-8k5m3w {
        font-size: 14px;
        line-height: 1.6;
        color: #e2e8f0;
    }
}

@media (max-width: 480px) {
    .vertical-process-3q7h9k {
        padding-left: 40px;
    }
    
    .vertical-process-3q7h9k::before {
        left: 20px;
    }
    
    .vertical-item-6w9p2r::before {
        left: -29px;
        width: 16px;
        height: 16px;
        border: 3px solid #f7fafc;
    }
    
    .section-wrapper-7n4q8w {
        background: rgba(10, 10, 10, 0.95);
    }
}

/* ========== ACCESSIBILITY ENHANCEMENTS ========== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.vertical-item-6w9p2r:focus-within .vertical-content-1m8k5z {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* ========== PERFORMANCE OPTIMIZATIONS ========== */
.vertical-process-3q7h9k {
    contain: layout style paint;
}

.vertical-content-1m8k5z {
    will-change: transform;
}


/* TCO Calculator Widget Styles  */
.elementor-tco-calculator {
    line-height: 1.6;
    color: #ffffff;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.elementor-tco-calculator * {
    box-sizing: border-box;
}

.tco-calculator-wrapper {
    /*background: rgba(17, 24, 39, 0.95);*/
    padding: 2rem 1.5rem;
    border-left: 1px solid rgba(75, 85, 99, 0.3);
    /*border-radius: 1rem;
    border: 1px solid rgba(75, 85, 99, 0.3);*/
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.calculator-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-header h2 {
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.2em;
}

.calculator-header p {
    font-size: 16px;
    color: #d1d5db;
    text-align: left;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5em;
    letter-spacing: 0.01em;
}

.calculator-form {
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-wrapper {
    position: relative;
}

.form-select, .form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #374151 !important;
    font-size: 15px;
    background: rgba(31, 41, 55, 0.8) !important;
    color: #ffffff !important;
    min-height: 3.5rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none !important;
    box-shadow: none !important;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.form-select {
    padding-right: 3rem;
}

.form-select option {
    padding: 0.5rem;
    font-size: 15px;
    color: #ffffff;
    background: #1f2937;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-select option:first-child {
    color: #9ca3af;
}

.form-select:invalid {
    color: #9ca3af;
}

.form-input::placeholder,
.form-input::-webkit-input-placeholder,
.form-input::-moz-placeholder,
.form-input:-ms-input-placeholder {
    color: #9ca3af !important;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-select:focus, .form-input:focus {
    border-color: #60a5fa !important;
    background: rgba(31, 41, 55, 0.95) !important;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2) !important;
}

.form-select:hover, .form-input:hover {
    border-color: #4b5563 !important;
    background: rgba(31, 41, 55, 0.9) !important;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 24px;
    height: 24px;
    color: #9ca3af;
    z-index: 1;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.01em;
}

.optional-label {
    color: #9ca3af;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.info-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
    margin-left: 1rem;
    cursor: pointer;
}

.info-icon {
    width: 16px;
    height: 16px;
    background: #4b5563;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    transition: background 0.3s ease;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.info-icon:hover {
    background: #6b7280;
}

.tooltip-text {
    font-size: 14px;
    color: #d1d5db;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.tooltip-content {
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(17, 24, 39, 0.98);
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1rem;
    width: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(17, 24, 39, 0.98);
}

.info-tooltip:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
}

.tooltip-content h4 {
    margin-bottom: 0.5rem;
    font-size: 14px;
    color: #ffffff;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.tooltip-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.tooltip-content li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.25rem;
    font-size: 13px;
    color: #d1d5db;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.4em;
}

.tooltip-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9ca3af;
}

.submit-btn {
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    display: block;
    padding: 20px 32px 20px 32px;
    background: #ffffff !important;
    color: #000;
    border: none;
    border-radius: 2rem;
    font-size: 15px;
    font-weight: 500 !important;
    cursor: pointer;
    min-height: 3.5rem;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.01em;
}

.submit-btn:hover:not(:disabled) {
    background: #ffffff;
    color: #000;
}

.button:not(:disabled):not(.disabled) {
    cursor: pointer;
    color: #000;
}

.submit-btn:disabled {
    background: #4b5563;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    font-size: 15px;
    font-weight: 500;
    text-transform: none;
    fill: #FFFFFF;
    color: #000;
}

.results-section {
    display: none;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(17, 24, 39, 0.9);
    border-radius: 1rem;
    border: 1px solid #374151;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.results-header h3 {
    font-size: 24px;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2em;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-card {
    background: rgba(31, 41, 55, 0.6);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid #374151;
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-2px);
    background: rgba(31, 41, 55, 0.8);
}

.result-value {
    font-size: 24px;
    font-weight: 500;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.01em;
}

.result-label {
    font-size: 14px;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

.cta-section {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1e40af, #3730a3);
    border-radius: 1rem;
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.cta-section h3 {
    margin-bottom: 1rem;
    font-size: 20px;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #1e40af;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    letter-spacing: 0.01em;
}

.cta-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.error-message {
    color: #fca5a5;
    font-size: 14px;
    margin-top: 0.5rem;
    padding: 1rem;
    background: rgba(127, 29, 29, 0.3);
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid rgba(220, 38, 38, 0.3);
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.4em;
}

.success-message {
    color: #86efac;
    text-align: center;
    padding: 1rem;
    background: rgba(20, 83, 45, 0.3);
    border-radius: 0.75rem;
    margin-top: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
    font-family: 'Clarkson', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.4em;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .form-select {
        background-image: none;
    }
}

@-moz-document url-prefix() {
    .form-select {
        text-indent: 0.01px;
        text-overflow: '';
    }
}

@media (max-width: 768px) {
    .calculator-header h2 {
        font-size: 20px;
    }
    
    .calculator-header p {
        font-size: 14px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tco-calculator-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .form-select {
        padding: 1rem 2.5rem 1rem 1rem; /* 明确指定四个方向的padding */
        min-height: 3.5rem; /* 增加最小高度 */
        font-size: 14px;
        line-height: 1.5rem; /* 固定行高 */
        display: flex; /* 添加flex */
        align-items: center; /* 垂直居中 */
    }
    
    /* 添加这个新规则 - 专门针对iOS */
    .form-select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: none !important;
        height: 3.5rem; /* 明确高度 */
        padding-top: 0.875rem; /* 微调顶部padding */
        padding-bottom: 0.875rem; /* 微调底部padding */
    }
    
    .form-input {
        min-height: 3rem;
        font-size: 16px;
    }
    
    .select-arrow {
        width: 20px;
        height: 20px;
        right: 0.75rem;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .results-header h3 {
        font-size: 20px;
    }
    
    .result-value {
        font-size: 20px;
    }
    
    .cta-section h3 {
        font-size: 18px;
    }
}

.form-select {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-select:focus {
    text-overflow: clip;
    white-space: normal;
}

.form-select::-ms-expand {
    display: none;
}

.input-wrapper select::-webkit-scrollbar {
    width: 8px;
}

.input-wrapper select::-webkit-scrollbar-track {
    background: #374151;
    border-radius: 4px;
}

.input-wrapper select::-webkit-scrollbar-thumb {
    background: #6b7280;
    border-radius: 4px;
}

.input-wrapper select::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* mega menu pops up the secondary menu in the center*/
.rey-mainNavigation.rey-mainNavigation--desktop .depth--0.--is-mega.--mega-custom > .rey-mega-gs {
    --mm-translate: calc((var(--site-width, 100vw) / 2) - var(--mm-offset, 0px) - (var(--ec-max-width, 800px) / 2)) !important;
    --mm-left: auto !important;
    padding: 40px !important;
    border-radius: 8px;
    background: #000;
}
/* menu menu arrow upward distance adjustment */
.rey-mainMenu .--submenu-indicator-arrow2 {
    top: calc(50% - .4em) !important;
}

/* Right arrow for links within the Mega Menu */
.rey-mega-gs .reyEl-menu-nav a {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}
.rey-mega-gs .reyEl-menu-nav a span::after {
    content: ' →'; 
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    display: inline-block;
    margin-left: 0;
}
.rey-mega-gs .reyEl-menu-nav a:hover span::after {
    opacity: 1;
    transform: translateX(0);
    margin-left: 8px; 
}
/* fix popup */
#elementor-popup-modal-2962 .dialog-close-button {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
}
#elementor-popup-modal-2962 .dialog-close-button svg {
    fill: #ffffff;
}
selector .elementor-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
    transition: all 0.3s ease !important;
}


/* ========================================
   MOBILE FOOTER STYLES (< 768px)
   ======================================== */

@media (max-width: 767px) {
  
  /* Accordion containers reset */
  .elementor-element-604c2db,
  .elementor-element-0ae7d67,
  .elementor-element-b8039dd,
  .elementor-element-c66e234 {
    row-gap: 0px !important;
    column-gap: 0px !important;
    gap: 0px !important;
  }
  
  /* Heading styles for accordion */
  body .elementor-element-604c2db .elementor-widget-heading,
  body .elementor-element-0ae7d67 .elementor-widget-heading,
  body .elementor-element-b8039dd .elementor-widget-heading,
  body .elementor-element-c66e234 .elementor-widget-heading {
    position: relative;
    cursor: pointer;
    padding: 6px 0;
    margin: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-top: none;
    border-left: none;
    border-right: none;
  }
  
  /* Heading title styles */
  .elementor-element-604c2db .elementor-heading-title,
  .elementor-element-0ae7d67 .elementor-heading-title,
  .elementor-element-b8039dd .elementor-heading-title,
  .elementor-element-c66e234 .elementor-heading-title {
    position: relative;
    padding-right: 40px;
    padding-top: 6px;
    padding-bottom: 6px;
    display: block;
    transition: none;
  }
  
  /* Toggle arrows */
  .elementor-element-604c2db .elementor-heading-title::after,
  .elementor-element-0ae7d67 .elementor-heading-title::after,
  .elementor-element-b8039dd .elementor-heading-title::after,
  .elementor-element-c66e234 .elementor-heading-title::after {
    content: '↓';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    transition: none;
  }
  
  .footer-heading-active .elementor-heading-title::after {
    content: '↑';
    transform: translateY(-50%);
  }
  
  /* Hide content by default */
  .elementor-element-604c2db > *:not(.elementor-widget-heading),
  .elementor-element-0ae7d67 > *:not(.elementor-widget-heading),
  .elementor-element-b8039dd > *:not(.elementor-widget-heading),
  .elementor-element-c66e234 > *:not(.elementor-widget-heading) {
    display: none;
    transition: opacity 0.3s ease;
  }
  
  /* Show content when active */
  .elementor-element-604c2db .footer-heading-active ~ *,
  .elementor-element-0ae7d67 .footer-heading-active ~ *,
  .elementor-element-b8039dd .footer-heading-active ~ *,
  .elementor-element-c66e234 .footer-heading-active ~ * {
    display: block;
  }
  
  /* Hide content after next heading */
  .elementor-element-604c2db .footer-heading-active ~ .elementor-widget-heading ~ *,
  .elementor-element-0ae7d67 .footer-heading-active ~ .elementor-widget-heading ~ *,
  .elementor-element-b8039dd .footer-heading-active ~ .elementor-widget-heading ~ *,
  .elementor-element-c66e234 .footer-heading-active ~ .elementor-widget-heading ~ * {
    display: none;
  }
  
  /* Company info always visible */
  .elementor-element-b435cca {
    display: flex !important;
    padding: 20px 0 25px 0 !important;
    margin-bottom: 0 !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
  }
  
  .elementor-element-b435cca > * {
    display: block;
  }
  
  /* Company intro styles */
  .elementor-element-b435cca .elementor-image-box-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .elementor-element-b435cca .elementor-image-box-img {
    margin-bottom: 12px;
  }
  
  .elementor-element-b435cca .elementor-image-box-img img {
    max-width: 60px !important;
    height: auto;
  }
  
  .elementor-element-b435cca .elementor-image-box-title {
    font-size: 18px !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
  }
  
  .elementor-element-b435cca .elementor-image-box-description {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }
  
  .elementor-element-b435cca .elementor-icon-box-description {
    font-size: 13px !important;
    line-height: 1.5 !important;
    padding: 12px 15px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-left: 3px solid rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-style: italic;
  }
  
  .elementor-element-b435cca .elementor-icon-box-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  
  .elementor-element-b435cca .elementor-icon-box-icon {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
  }
  
  .elementor-3278 .elementor-element.elementor-element-b435cca {
    border: none !important;
  }
  
  /* Content spacing */
  .elementor-widget-reycore-menu,
  .elementor-widget-icon-list,
  .elementor-widget-text-editor {
    padding: 10px 0;
  }
  
  .reyEl-menu-nav,
  .elementor-icon-list-items {
    margin: 0;
    padding: 0;
  }
  
  .menu-item,
  .elementor-icon-list-item {
    padding: 8px 0;
  }
  
  .elementor-widget-text-editor p {
    margin: 6px 0;
    line-height: 1.3;
  }
  
  /* Footer bottom menu - horizontal compact */
  .elementor-element-281ae84 .reyEl-menu-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 5px 10px !important;
  }
  
  .elementor-element-281ae84 .menu-item {
    width: auto !important;
    padding: 0px 0px !important;
    border-bottom: none !important;
  }
  
  .elementor-element-281ae84 .menu-item:last-child {
    border-right: none !important;
  }
  
  .elementor-element-281ae84 .menu-item a {
    padding: 0px 0px !important;
    font-size: 13px !important;
  }
}

/* ========================================
   TABLET STYLES (768px - 1280px)
   ======================================== */

/* Remove mobile accordion behavior on tablet */
@media (min-width: 768px) {
  
  .elementor-element-604c2db .elementor-heading-title::after,
  .elementor-element-0ae7d67 .elementor-heading-title::after,
  .elementor-element-b8039dd .elementor-heading-title::after,
  .elementor-element-c66e234 .elementor-heading-title::after {
    display: none;
  }
  
  .elementor-widget-heading {
    cursor: default;
  }
  
  .elementor-element-604c2db .elementor-widget-heading,
  .elementor-element-0ae7d67 .elementor-widget-heading,
  .elementor-element-b8039dd .elementor-widget-heading,
  .elementor-element-c66e234 .elementor-widget-heading {
    border-bottom: none;
  }
  
  .elementor-element-604c2db > *,
  .elementor-element-0ae7d67 > *,
  .elementor-element-b8039dd > *,
  .elementor-element-c66e234 > * {
    display: block;
  }
}

/* Company intro - tablet adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
  
  .elementor-element-b435cca {
    padding: 25px 0 30px 0 !important;
  }
  
  .elementor-element-b435cca .elementor-image-box-img img {
    max-width: 70px !important;
  }
  
  .elementor-element-b435cca .elementor-image-box-title {
    font-size: 20px !important;
  }
  
  .elementor-element-b435cca .elementor-image-box-description {
    font-size: 15px !important;
  }
  
  .elementor-element-b435cca .elementor-icon-box-description {
    font-size: 14px !important;
  }
}

/* Tablet Portrait: 2 Columns (768px - 900px) */
@media (min-width: 768px) and (max-width: 900px) {
  
  .elementor-element-d0ac997 {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    align-items: flex-start !important;
  }
  
  .elementor-element-b435cca {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-bottom: 25px !important;
    margin-bottom: 25px !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
  }
  
  .elementor-element-604c2db {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 20px 0 !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  }
  
  .elementor-element-0ae7d67,
  .elementor-element-b8039dd,
  .elementor-element-c66e234 {
    width: 48% !important;
    flex: 0 0 48% !important;
    max-width: 48% !important;
    margin-right: 4% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
  }
  
  .elementor-element-b8039dd {
    margin-right: 0 !important;
  }
  
  .elementor-element-0ae7d67 .elementor-widget-heading,
  .elementor-element-b8039dd .elementor-widget-heading,
  .elementor-element-c66e234 .elementor-widget-heading {
    font-size: 16px !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 0 !important;
  }
  
  .elementor-element-0ae7d67 .elementor-widget:not(.elementor-widget-heading),
  .elementor-element-b8039dd .elementor-widget:not(.elementor-widget-heading),
  .elementor-element-c66e234 .elementor-widget:not(.elementor-widget-heading) {
    padding: 12px 0 !important;
  }
  
  .elementor-element-0ae7d67 .menu-item,
  .elementor-element-0ae7d67 .elementor-icon-list-item,
  .elementor-element-b8039dd .menu-item,
  .elementor-element-b8039dd .elementor-icon-list-item,
  .elementor-element-c66e234 .menu-item,
  .elementor-element-c66e234 .elementor-icon-list-item {
    padding: 6px 0 !important;
    font-size: 14px !important;
  }
}

/* Tablet Landscape: 3 Columns (901px - 1280px) */
@media (min-width: 901px) and (max-width: 1280px) {
  
  .elementor-element-d0ac997 {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    align-items: flex-start !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .elementor-element-d0ac997 > .e-con-inner {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .elementor-element-b435cca {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-bottom: 30px !important;
    margin-bottom: 30px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  
  .elementor-element-604c2db {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 25px 0 !important;
  }
  
  .elementor-element-0ae7d67,
  .elementor-element-b8039dd,
  .elementor-element-c66e234 {
    width: 32% !important;
    flex: 0 0 32% !important;
    max-width: 32% !important;
    margin-right: 2% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    align-self: flex-start !important;
  }
  
  .elementor-element-c66e234 {
    margin-right: 0 !important;
  }
  
  .elementor-element-0ae7d67 .elementor-widget-heading,
  .elementor-element-b8039dd .elementor-widget-heading,
  .elementor-element-c66e234 .elementor-widget-heading {
    font-size: 17px !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 8px !important;
    cursor: default !important;
  }
  
  .elementor-element-0ae7d67 > *,
  .elementor-element-b8039dd > *,
  .elementor-element-c66e234 > * {
    display: block !important;
  }
  
  .elementor-element-0ae7d67 .elementor-heading-title::after,
  .elementor-element-b8039dd .elementor-heading-title::after,
  .elementor-element-c66e234 .elementor-heading-title::after {
    display: none !important;
  }
  
  .elementor-element-0ae7d67 .elementor-widget:not(.elementor-widget-heading),
  .elementor-element-b8039dd .elementor-widget:not(.elementor-widget-heading),
  .elementor-element-c66e234 .elementor-widget:not(.elementor-widget-heading) {
    padding: 8px 0 !important;
  }
  
  .elementor-element-0ae7d67 .menu-item,
  .elementor-element-0ae7d67 .elementor-icon-list-item,
  .elementor-element-b8039dd .menu-item,
  .elementor-element-b8039dd .elementor-icon-list-item,
  .elementor-element-c66e234 .menu-item,
  .elementor-element-c66e234 .elementor-icon-list-item {
    /*padding: 5px 0 !important;
    font-size: 14px !important;
  }*/
}

/* iPad Pro specific fix */
@media (min-width: 1024px) and (max-width: 1024px) and (min-height: 1200px) {
  .elementor-element-d0ac997 {
    flex-direction: row !important;
  }
}

/* ========================================
   LOCATIONS SECTION - TABLET LAYOUT
   ======================================== */

/* Tablet Portrait & Landscape (768px - 1280px) */
@media (min-width: 768px) and (max-width: 1280px) {
  .elementor-3278 .elementor-element.elementor-element-4c653ed .elementor-image-box-wrapper .elementor-image-box-img {
    width: 15% !important;
  }

  .elementor-3278 .elementor-element.elementor-element-4c653ed.elementor-position-left .elementor-image-box-img {
    margin-right: 25px !important;
    margin-left: 15px !important;
  } 
  
  /* Locations container - force horizontal layout */
  .elementor-element-604c2db {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 0 !important;
    width: 100% !important;
    padding: 25px 15px !important;
  }
  
  /* Locations heading - full width, left aligned */
  .elementor-element-604c2db .elementor-element-520baec {
    width: 100% !important;
    flex: 0 0 100% !important;
    margin-bottom: 20px !important;
    text-align: left !important;
  }
  
  .elementor-element-604c2db .elementor-heading-title {
    font-size: 14px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-right: 0 !important;
  }
  
  /* Remove toggle arrow from Locations heading */
  .elementor-element-604c2db .elementor-element-520baec .elementor-heading-title::after {
    display: none !important;
  }
  
  /* Create 3-column layout - ordered correctly */
  /* Create 3-column layout - each city as a column */

/* Force container to allow column grouping */
.elementor-element-604c2db {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-gap: 0 2% !important;
  flex-wrap: unset !important;
}

/* Heading spans all 3 columns */
.elementor-element-604c2db .elementor-element-520baec {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

/* Column 1: Shanghai (both icon and address) */
.elementor-element-471f311,
.elementor-element-f643eb9 {
  grid-column: 1 !important;
  width: 100% !important;
  flex: unset !important;
  max-width: 100% !important;
  margin-right: 0 !important;
  padding: 0 10px !important;
}

/* Column 2: Portland (both icon and address) */
.elementor-element-edd9e41,
.elementor-element-aa06ee0 {
  grid-column: 2 !important;
  width: 100% !important;
  flex: unset !important;
  max-width: 100% !important;
  margin-right: 0 !important;
  padding: 0 10px !important;
}

/* Column 3: Dublin (both icon and address) */
.elementor-element-fe35eff,
.elementor-element-9b90174 {
  grid-column: 3 !important;
  width: 100% !important;
  flex: unset !important;
  max-width: 100% !important;
  margin-right: 0 !important;
  padding: 0 10px !important;
}
  /* Column 1: Shanghai (471f311 + f643eb9) */
  .elementor-element-471f311 {
    width: 32% !important;
    flex: 0 0 32% !important;
    max-width: 32% !important;
    margin-right: 2% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    order: 1 !important;
  }
  
  .elementor-element-f643eb9 {
    width: 32% !important;
    flex: 0 0 32% !important;
    max-width: 32% !important;
    margin-right: 2% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    order: 4 !important;
  }
  
  /* Column 2: Portland (edd9e41 + aa06ee0) */
  .elementor-element-edd9e41 {
    width: 32% !important;
    flex: 0 0 32% !important;
    max-width: 32% !important;
    margin-right: 2% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    order: 2 !important;
  }
  
  .elementor-element-aa06ee0 {
    width: 32% !important;
    flex: 0 0 32% !important;
    max-width: 32% !important;
    margin-right: 2% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    order: 5 !important;
  }
  
  /* Column 3: Dublin (fe35eff + 9b90174) */
  .elementor-element-fe35eff {
    width: 32% !important;
    flex: 0 0 32% !important;
    max-width: 32% !important;
    margin-right: 0 !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    order: 3 !important;
  }
  
  .elementor-element-9b90174 {
    width: 32% !important;
    flex: 0 0 32% !important;
    max-width: 32% !important;
    margin-right: 0 !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    order: 6 !important;
  }
  
  /* City name with flag icon - no border-bottom */
  .elementor-element-604c2db .elementor-icon-list {
    margin-bottom: 12px !important;
  }
  
  .elementor-element-604c2db .elementor-icon-list-item {
    display: flex !important;
    align-items: center !important;
    padding: 10px 0 !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    border-bottom: none !important;
    margin-bottom: 12px !important;
  }
  
  /* Flag icons styling */
  .elementor-element-604c2db .elementor-icon-list-icon {
    margin-right: 10px !important;
    flex-shrink: 0 !important;
  }
  
  .elementor-element-604c2db .elementor-icon-list-icon svg {
    width: 32px !important;
    height: 22px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  /* City name text */
  .elementor-element-604c2db .elementor-icon-list-text {
    font-weight: 400 !important;
    letter-spacing: 0.5px;
  }
  
  /* Address text styling */
  .elementor-element-604c2db .elementor-widget-text-editor {
    margin: 0 !important;
    min-width: 100% !important;
  }
  
  
  /* Vertical alignment */
  .elementor-element-471f311,
  .elementor-element-f643eb9,
  .elementor-element-edd9e41,
  .elementor-element-aa06ee0,
  .elementor-element-fe35eff,
  .elementor-element-9b90174 {
    align-self: flex-start !important;
  }
  
  /* Remove click cursor from heading */
  .elementor-element-604c2db .elementor-element-520baec {
    cursor: default !important;
    pointer-events: none !important;
  }
  
  /* Force all location content visible */
  .elementor-element-604c2db > * {
    display: block !important;
    opacity: 1 !important;
  }
}

/* Tablet Portrait specific adjustments (768px - 900px) */
@media (min-width: 768px) and (max-width: 900px) {
  
  .elementor-element-604c2db .elementor-heading-title {
    font-size: 20px !important;
  }
  
  .elementor-element-604c2db .elementor-icon-list-item {
    font-size: 15px !important;
    padding: 8px 0 !important;
  }
  
  .elementor-element-604c2db .elementor-widget-text-editor p {
    font-size: 12px !important;
  }
  
  .elementor-element-604c2db .elementor-icon-list-icon svg {
    width: 28px !important;
    height: 20px !important;
  }
}