/* CSS Custom Properties for Animation */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: true;
}

/* Book Engineer Button with Animated Gradient Border */
.book-engineer-btn {
    --angle: 0deg;
    display: inline-block;
    padding: 5px !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: 2px solid;
    border-image: conic-gradient(
        from var(--angle),
        #ff6b6b,
        #4ecdc4,
        #45b7d1,
        #96ceb4,
        #feca57,
        #ff6b6b
    ) 1;
    border-radius: 20px; /* border-image doesn't work with border-radius */
    transition: all 0.3s ease;
    animation: borderRotate 3s linear infinite;
}

.book-engineer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Request Quote Button with Animated Gradient Border */
.request-quote-btn {
    --angle: 0deg;
    display: inline-block;
    padding: 5px !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: 2px solid;
    border-image: conic-gradient(
        from var(--angle),
        #ff6b6b,
        #4ecdc4,
        #45b7d1,
        #96ceb4,
        #feca57,
        #ff6b6b
    ) 1;
    border-radius: 0; /* border-image doesn't work with border-radius */
    transition: all 0.3s ease;
    animation: borderRotate 3s linear infinite;
}

.request-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Animation for rotating gradient border */
@keyframes borderRotate {
    100% {
        --angle: 360deg;
    }
}

/* Alternative version with border-radius using pseudo-element approach */
.book-engineer-btn-rounded,
.request-quote-btn-rounded {
    --angle: 0deg;
    position: relative;
    display: inline-block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: #000; /* Solid background to prevent gradient bleed-through */
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    z-index: 1;
}

.book-engineer-btn-rounded::before,
.request-quote-btn-rounded::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(
        from var(--angle),
        #ff6b6b,
        #4ecdc4,
        #45b7d1,
        #96ceb4,
        #feca57,
        #ff6b6b
    );
    border-radius: 25px;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

.book-engineer-btn-rounded:hover,
.request-quote-btn-rounded:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Sticky Header Button Styles */
.sticky-header .book-engineer-btn,
.sticky-header .request-quote-btn,
.sticky-header .book-engineer-btn-rounded,
.sticky-header .request-quote-btn-rounded {
    padding: 8px 16px;
    font-size: 12px;
    margin-left: 8px;
}

/* Mobile Menu Button Styles */
.mobile-menu .book-engineer-btn,
.mobile-menu .request-quote-btn,
.mobile-menu .book-engineer-btn-rounded,
.mobile-menu .request-quote-btn-rounded {
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0;
    padding: 14px 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .book-engineer-btn,
    .request-quote-btn,
    .book-engineer-btn-rounded,
    .request-quote-btn-rounded {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .sticky-header .book-engineer-btn,
    .sticky-header .request-quote-btn,
    .sticky-header .book-engineer-btn-rounded,
    .sticky-header .request-quote-btn-rounded {
        padding: 6px 14px;
        font-size: 11px;
    }
}

/* Quick Forms Section Styles */
.quick-forms-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    margin: 60px 0;
    padding: 80px 0 !important;
    clear: both;
}

.quick-forms-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
}

.book-engineer-card::before {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

.quote-card::before {
    background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
}

.form-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.book-engineer-card .icon-box {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.quote-card .icon-box {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.3);
}

.form-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-header p {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.quick-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.quick-form input,
.quick-form textarea,
.quick-form select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.quick-form input:focus,
.quick-form textarea:focus,
.quick-form select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.book-engineer-card input:focus,
.book-engineer-card textarea:focus {
    border-color: #4facfe;
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
}

.quote-card input:focus,
.quote-card textarea:focus,
.quote-card select:focus {
    border-color: #43e97b;
    box-shadow: 0 0 0 3px rgba(67, 233, 123, 0.1);
}

.quick-form input::placeholder,
.quick-form textarea::placeholder {
    color: #95a5a6;
    font-weight: 400;
}

.custom-select-wrapper {
    position: relative;
    display: block;
}

.custom-select-wrapper .select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    pointer-events: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.quote-card .custom-select-wrapper .select-arrow {
    color: #43e97b;
}

.book-engineer-card .custom-select-wrapper .select-arrow {
    color: #4facfe;
}

.service-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #ffffff;
    cursor: pointer;
    padding-right: 45px !important;
}

.service-select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.service-select option {
    padding: 12px 15px;
    background: #ffffff;
    color: #2c3e50;
    font-weight: 500;
    border: none;
}

.service-select option:hover {
    background: #f8f9fa;
}

.service-select option:checked {
    background: #667eea;
    color: white;
}

.quote-card .service-select option:checked {
    background: #43e97b;
}

.book-engineer-card .service-select option:checked {
    background: #4facfe;
}

.form-btn {
    width: 100%;
    padding: 18px 30px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.form-btn:hover::before {
    left: 100%;
}

.book-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.quote-btn {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 8px 25px rgba(67, 233, 123, 0.3);
}

.form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.book-btn:hover {
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.4);
}

.quote-btn:hover {
    box-shadow: 0 15px 35px rgba(67, 233, 123, 0.4);
}

.form-btn i {
    transition: transform 0.3s ease;
}

.form-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Forms */
@media (max-width: 991px) {
    .form-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .quick-forms-section {
        padding: 40px 0;
    }
    
    .form-card {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .form-header .icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .form-header h4 {
        font-size: 20px;
    }
    
    .quick-form input,
    .quick-form textarea,
    .quick-form select {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .form-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* Animation for form cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-card {
    animation: fadeInUp 0.6s ease-out;
}

.book-engineer-card {
    animation-delay: 0.1s;
}

.quote-card {
    animation-delay: 0.2s;
}

@media (max-width: 480px) {
    .book-engineer-btn,
    .request-quote-btn,
    .book-engineer-btn-rounded,
    .request-quote-btn-rounded {
        padding: 8px 16px;
        font-size: 12px;
    }
}
/* Request Quote Form Styles */
.request-quote-form {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.request-quote-form .form-group {
    margin-bottom: 20px;
}

.request-quote-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.request-quote-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.request-quote-form .form-control.is-invalid {
    border-color: #dc3545;
}

.request-quote-form .invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

/* Service Selection Dropdown */
.service-selection {
    position: relative;
}

.service-dropdown {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-dropdown:hover {
    border-color: #007bff;
}

.service-dropdown.active {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.service-dropdown-arrow {
    transition: transform 0.3s ease;
}

.service-dropdown.active .service-dropdown-arrow {
    transform: rotate(180deg);
}

.service-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #007bff;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.service-options.show {
    display: block;
}

.service-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
}

.service-option:hover {
    background-color: #f8f9fa;
}

.service-option:last-child {
    border-bottom: none;
}

.service-option input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.service-option label {
    margin: 0;
    cursor: pointer;
    flex: 1;
}

/* Selected Services Display */
.selected-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.selected-service-tag {
    background: #007bff;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.selected-service-tag .remove-service {
    cursor: pointer;
    font-weight: bold;
    opacity: 0.8;
}

.selected-service-tag .remove-service:hover {
    opacity: 1;
}

/* Submit Button */
.request-quote-submit {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.request-quote-submit:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.request-quote-submit:active {
    transform: translateY(0);
}

/* Success/Error Messages */
.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-danger {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Responsive Design for Form */
@media (max-width: 768px) {
    .request-quote-form {
        padding: 20px;
        margin: 0 15px;
    }

    .service-options {
        max-height: 150px;
    }

    .request-quote-submit {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .request-quote-form {
        padding: 15px;
        margin: 0 10px;
    }

    .selected-services {
        gap: 5px;
    }

    .selected-service-tag {
        font-size: 11px;
        padding: 3px 6px;
    }
}

/* Alert Styles for Form Messages */
.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.4;
}

.alert ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert li {
    margin-bottom: 5px;
}

.alert li:last-child {
    margin-bottom: 0;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeaa7;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
/* Info Bar Component Styles */
.info-bar-section {
    padding: 0;
    margin: 60px 0;
    position: relative;
}

.info-bar-wrapper {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    /* background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%) !important; */
    min-height: 120px !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.info-bar-content {
    width: 100%;
    z-index: 2;
    position: relative;
    padding: 40px 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    text-align: left;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.info-item:hover::before {
    left: 100%;
}

.info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.office-phone .info-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.emergency-line .info-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    animation: pulse-emergency 2s infinite;
}

@keyframes pulse-emergency {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Emergency Alert Animation */
@keyframes emergency-alert {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    }

    25% {
        transform: scale(1.05) rotate(-2deg);
        box-shadow: 0 12px 35px rgba(231, 76, 60, 0.5);
    }

    75% {
        transform: scale(1.05) rotate(2deg);
        box-shadow: 0 12px 35px rgba(231, 76, 60, 0.5);
    }
}

/* Emergency Line Enhanced Animation */
.emergency-line .info-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    animation: emergency-alert 3s infinite, pulse-emergency 2s infinite;
    position: relative;
}

.emergency-line .info-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #e74c3c, #f39c12, #e74c3c);
    border-radius: 50%;
    z-index: -1;
    animation: emergency-glow 2s infinite;
}

@keyframes emergency-glow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Emergency Text Animation */
.emergency-line .info-value {
    animation: emergency-text-flash 1.5s infinite;
}

@keyframes emergency-text-flash {

    0%,
    50%,
    100% {
        color: white;
    }

    25%,
    75% {
        color: #ffeb3b;
        text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
    }
}

.working-hours .info-icon {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.info-icon i {
    font-size: 24px;
    color: white;
}

.info-content {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 5px;
    color: #bdc3c7;
}

.info-value {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: white;
    letter-spacing: 0.5px;
}

.info-bar-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.float-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float-up 6s infinite linear;
}

.element-1 {
    width: 8px;
    height: 8px;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 12px;
    height: 12px;
    left: 30%;
    animation-delay: 2s;
}

.element-3 {
    width: 6px;
    height: 6px;
    left: 70%;
    animation-delay: 4s;
}

.element-4 {
    width: 10px;
    height: 10px;
    left: 90%;
    animation-delay: 1s;
}

@keyframes float-up {
    0% {
        transform: translateY(120px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-20px) rotate(360deg);
        opacity: 0;
    }
}

/* CTA Call Component Styles */
.cta-call-section {
    padding: 0;
    margin: 60px 0;
    position: relative;
}

.cta-call-wrapper {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%) !important;
    /* background-image: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%) !important; */
    min-height: 400px !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.cta-call-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.emergency-badge i {
    font-size: 16px;
    animation: flash 1.5s infinite;
}

@keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0.5;
    }
}

.call-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.call-description {
    color: white;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #ff6b6b;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.5s;
}

.cta-call-btn:hover::before {
    left: 100%;
}

.cta-call-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    color: #ff6b6b;
    text-decoration: none;
    background: white;
}

.cta-call-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
    animation: ring 2s infinite;
}

@keyframes ring {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(15deg);
    }
}

.cta-call-btn:hover i {
    animation: none;
    transform: scale(1.1);
}

.cta-call-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.animated-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.pulse-circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse-expand 3s infinite;
}

.pulse-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.pulse-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.pulse-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes pulse-expand {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.8);
        opacity: 1;
    }
}

/* Responsive Design for Info Bar and CTA Call */
@media (max-width: 991px) {
    .info-bar-content {
        padding: 30px 20px;
    }

    .info-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .info-bar-wrapper {
        min-height: auto;
    }

    .info-bar-content {
        padding: 25px 15px;
    }

    .info-item {
        padding: 15px;
        gap: 15px;
        text-align: center;
        flex-direction: column;
    }

    .info-icon {
        width: 50px;
        height: 50px;
    }

    .info-icon i {
        font-size: 20px;
    }

    .info-value {
        font-size: 18px;
    }

    .info-label {
        font-size: 11px;
    }

    .cta-call-wrapper {
        min-height: 350px;
    }

    .cta-call-content {
        padding: 40px 15px;
    }

    .call-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .call-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-call-btn {
        padding: 16px 30px;
        font-size: 16px;
        gap: 12px;
    }

    .emergency-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .info-item {
        padding: 12px;
    }

    .info-value {
        font-size: 16px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }

    .info-icon i {
        font-size: 18px;
    }

    .call-title {
        font-size: 28px;
    }

    .call-description {
        font-size: 15px;
    }

    .cta-call-btn {
        padding: 14px 25px;
        font-size: 14px;
    }
}

/* Single Row Navbar Styling */
@media (min-width: 992px) {
    .main-header .header-lower {
        display: flex;
        align-items: center;
        padding: 10px 0;
    }

    .main-header .main-box {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 15px;
        padding: 0 20px;
    }

    .main-header .logo-box {
        flex-shrink: 0;
        margin-right: 5px;
    }

    .main-header .logo-box .logo {
        margin: 0;
    }

    .main-header .logo-box .logo img {
        max-height: 50px;
        width: auto;
    }

    .main-header .nav-outer {
        flex: 1;
        margin: 0;
        margin-left: auto;
    }

    .main-header .nav-outer .nav {
        margin: 0;
    }

    .main-header .navigation {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
        flex-wrap: nowrap;
        gap: 3px;
        justify-content: flex-end;
    }

    .main-header .navigation li {
        margin: 0;
        padding: 0;
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }

    .main-header .navigation li a {
        padding: 8px 11px;
        font-size: 13px;
        display: inline-block;
        text-decoration: none;
        color: #ffffff;
        transition: color 0.3s ease;
    }

    .main-header .navigation li a:hover {
        color: var(--theme-color1, #ff6b6b);
    }

    .main-header .navigation li.current > a {
        color: var(--theme-color1, #ff6b6b);
        font-weight: 600;
    }

    .main-header .navigation .book-engineer-btn,
    .main-header .navigation .request-quote-btn {
        padding: 6px 11px !important;
        font-size: 11px;
        border-radius: 15px;
        white-space: nowrap;
    }

    .main-header .navigation .info-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0px;
        padding: 8px 4px;
        font-size: 12px;
        color: #ffffff;
        text-decoration: none;
        white-space: nowrap;
        height: 32px;
        line-height: 1;
        margin: 0;
    }

    .main-header .navigation .info-btn i {
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        margin: 0;
        padding: 0;
    }

    .main-header .navigation .info-btn small {
        display: none;
    }

    .main-header .navigation .info-btn span {
        font-size: 12px;
        font-weight: 500;
        display: flex;
        align-items: center;
        color: #ffffff;
        margin: 0;
        padding: 0;
    }

    .main-header .navigation .search-btn {
        padding: 8px 6px;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 18px;
        color: #ffffff;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 32px;
        line-height: 1;
        margin: 0;
    }

    .main-header .navigation .search-btn .icon {
        color: #ffffff;
        margin: 0;
        padding: 0;
    }

    .main-header .navigation .search-btn:hover {
        color: var(--theme-color1, #ff6b6b);
    }

    .main-header .navigation li a span {
        display: inline;
    }
}

/* Sticky Navbar Styling - Dark text on white background */
@media (min-width: 992px) {
    .sticky-header .navigation li a {
        color: #333333 !important;
    }

    .sticky-header .navigation li a:hover {
        color: var(--theme-color1, #ff6b6b) !important;
    }

    .sticky-header .navigation li.current > a {
        color: var(--theme-color1, #ff6b6b) !important;
    }

    .sticky-header .navigation .info-btn {
        color: #333333 !important;
    }

    .sticky-header .navigation .info-btn i {
        color: #333333 !important;
    }

    .sticky-header .navigation .info-btn span {
        color: #333333 !important;
    }

    .sticky-header .navigation .search-btn {
        color: #333333 !important;
    }

    .sticky-header .navigation .search-btn .icon {
        color: #333333 !important;
    }

    .sticky-header .navigation .search-btn:hover {
        color: var(--theme-color1, #ff6b6b) !important;
    }
}