/* ===================================
   KUZEY ASSIST - CUSTOM IMPROVEMENTS
   =================================== */

/* Body padding for fixed header */
body {
    padding-top: 80px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 65px;
    }
}

/* Enhanced Banner Area */
.bd-demo-banner-area {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
    min-height: 20vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    margin-top: 0; /* Remove any top margin */
    transform: none !important; /* Ensure no transform */
    will-change: auto; /* Prevent GPU acceleration that might cause movement */
    animation: none !important; /* Disable any animations */
}

.bd-demo-banner-area::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="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
    pointer-events: none; /* Prevent interaction with background */
    transform: none !important; /* Ensure no transform */
}

@keyframes float {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Enhanced Banner Content */
.bd-demo-banner-content {
    position: relative;
    z-index: 10;
    color: white;
}

.demo-banner-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: white;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.demo-banner-top-inner {
    margin-bottom: 2rem;
}

.demo-banner-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 15px;
}

.demo-banner-top .bd-icon {
    color: #fbbf24;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    min-width: 30px;
}

.demo-banner-title b {
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    color: white;
}

.demo-banner-content p {
    color: white;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin-top: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.demo-banner-top .subtitle {
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.demo-banner-top .bd-icon {
    color: #fbbf24;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Enhanced Service Cards */
.home-page-demo .item a {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.home-page-demo .item a .content .service-description {
    color: var(--bd-body-text);
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.home-page-demo .item a:hover .content .service-description {
    opacity: 1;
    color: var(--bd-primary);
}

.home-page-demo .item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s;
}

.home-page-demo .item a:hover::before {
    left: 100%;
}

.home-page-demo .item a:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    border-color: var(--bd-primary);
}

.home-page-demo .item a .thumbnail {
    position: relative;
    overflow: hidden;
}

.home-page-demo .item a .thumbnail img {
    transition: transform 0.4s ease;
}

.home-page-demo .item a:hover .thumbnail img {
    transform: scale(1.1);
}

.home-page-demo .item a .content .title {
    font-weight: 600;
    color: var(--bd-theme-black);
    transition: color 0.3s ease;
}

.home-page-demo .item a:hover .content .title {
    color: var(--bd-primary);
}

/* Enhanced Emergency Contact Section */
.emergency-contact {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    position: relative;
    overflow: hidden;
}

.emergency-contact::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="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.emergency-contact h3 {
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.phone-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.phone-number:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

/* Enhanced Customer Review Cards */
.customer-review-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.customer-review-style-1 {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    max-width: 350px;
}

.customer-review-style-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s;
}

.customer-review-style-1:hover::before {
    left: 100%;
}

.customer-review-style-1:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    border-color: var(--bd-primary);
}

.customer-review-style-1 .content {
    position: relative;
    z-index: 2;
}

.customer-review-style-1 .rating-icon {
    margin-bottom: 15px;
    text-align: center;
}

.customer-review-style-1 .rating-icon i {
    font-size: 2.5rem;
    color: #2563eb;
    background: linear-gradient(45deg, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.customer-review-style-1:hover .rating-icon i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.customer-review-style-1 .content-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    text-align: center;
}

.customer-review-style-1 .text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.customer-review-style-1 .info .title {
    font-size: 1rem;
    font-weight: 600;
    color: #2563eb;
    text-align: center;
    background: linear-gradient(45deg, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .customer-review-style-1 {
        min-width: 250px;
        padding: 20px;
    }
    
    .customer-review-style-1 .content-title {
        font-size: 1.2rem;
    }
    
    .customer-review-style-1 .text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .customer-review-style-1 {
        min-width: 220px;
        padding: 15px;
    }
    
    .customer-review-style-1 .content-title {
        font-size: 1.1rem;
    }
    
    .customer-review-style-1 .text {
        font-size: 0.85rem;
    }
    
    .customer-review-style-1 .rating-icon i {
        font-size: 2rem;
    }
}

/* Enhanced Footer Area */
.footer-area {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.footer-area::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.footer-widget {
    position: relative;
    z-index: 2;
}

.footer-logo img {
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-text {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-social .social-icon-list {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social .social-icon-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social .social-icon-list li a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-social .social-icon-list li a i {
    font-size: 1.2rem;
}

.footer-contact .contact-item {
    transition: all 0.3s ease;
}

.footer-contact .contact-item:hover {
    transform: translateX(5px);
}

.footer-contact .contact-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
    color: #fbbf24 !important;
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-social .social-icon-list {
        gap: 10px;
    }
    
    .footer-social .social-icon-list li a {
        width: 35px;
        height: 35px;
    }
    
    .footer-social .social-icon-list li a i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-social .social-icon-list {
        gap: 8px;
    }
    
    .footer-social .social-icon-list li a {
        width: 30px;
        height: 30px;
    }
    
    .footer-social .social-icon-list li a i {
        font-size: 0.9rem;
    }
}

/* Enhanced Demo Course Area */
.demo-course-area {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    position: relative;
}

.demo-course-area::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.demo-course-thumb-wrap {
    position: relative;
}

.demo-course-thumb-main {
    position: relative;
    z-index: 2;
}

.demo-course-thumb-1,
.demo-course-thumb-3 {
    position: absolute;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.demo-course-thumb-1 {
    animation-delay: -2s;
}

.demo-course-thumb-3 {
    animation-delay: -4s;
}

/* ===================================
   ENHANCED FAQ SECTION - PROFESSIONAL DESIGN
   =================================== */

/* FAQ Area Background */
.faq-area {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.faq-area::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="faq-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(37,99,235,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
    opacity: 0.5;
}

/* FAQ Section Title */
.faq-area .section-title-wrapper {
    position: relative;
    z-index: 2;
}

.faq-area .bd-section-subtitle {
    background: linear-gradient(135deg, #fafafa, #b8b8b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.faq-area .bd-section-title {
    color: #000000;
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-area .description {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Accordion Design */
.faq-area .accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-area .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

/* Accordion Button Design */
.faq-area .accordion-button {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 2px solid rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #000000;
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-area .accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(30, 64, 175, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-area .accordion-button:hover::before {
    opacity: 1;
}

.faq-area .accordion-button:hover {
    background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateX(5px);
    color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

/* Active Accordion Button */
.faq-area .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border-color: #2563eb;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.faq-area .accordion-button:not(.collapsed)::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 1;
}

/* Accordion Icons */
.faq-area .accordion-button i {
    color: #2563eb;
    font-size: 20px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.faq-area .accordion-button:hover i {
    color: #1e40af;
    transform: scale(1.1);
}

.faq-area .accordion-button:not(.collapsed) i {
    color: white;
    transform: scale(1.1);
}

/* Accordion Question Number */
.faq-area .accordion-button span {
    color: #000000;
    font-weight: 600;
    margin-right: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.faq-area .accordion-button:hover span {
    color: #2563eb;
}

.faq-area .accordion-button:not(.collapsed) span {
    color: rgba(255, 255, 255, 0.9);
}

/* Accordion Body Design */
.faq-area .accordion-body {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 0 0 20px 20px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    border-top: none;
    padding: 30px;
    color: #000000;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.faq-area .accordion-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 0 0 2px 2px;
}

.faq-area .accordion-body i {
    color: #2563eb;
    margin-right: 12px;
    font-size: 18px;
    vertical-align: middle;
}

/* Enhanced FAQ Service Cards */
.faq-area .bd-landing-service {
    margin-bottom: 30px;
}

.faq-area .bd-landing-service .inner {
    background: linear-gradient(145deg, #8fc8fd, #2c6597);
    border: 2px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faq-area .bd-landing-service .inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #1e40af, #1e3a8a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faq-area .bd-landing-service .inner:hover::before {
    transform: scaleX(1);
}

.faq-area .bd-landing-service .inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Service Card Icons */
.faq-area .bd-landing-service .inner .inner-icon {
    margin-bottom: 25px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-area .bd-landing-service .inner:hover .inner-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.faq-area .bd-landing-service .inner .inner-icon i {
    font-size: 2.5rem;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-area .bd-landing-service .inner .inner-icon i.fa-phone-volume {
    color: #0804ff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.faq-area .bd-landing-service .inner .inner-icon i.fa-mobile-alt {
    color: #7c3aed;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.faq-area .bd-landing-service .inner:hover .inner-icon i {
    transform: scale(1.1) rotate(5deg);
}

/* Service Card Content */
.faq-area .bd-landing-service .inner .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faq-area .bd-landing-service .inner .content .title {
    font-weight: 800;
    color: #000000;
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
    text-shadow: none;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.faq-area .bd-landing-service .inner .content .bd-btn {
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    align-self: center;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Service Card Buttons */
.faq-area .bd-landing-service .inner .content .bd-btn.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border: none;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.faq-area .bd-landing-service .inner .content .bd-btn.btn-secondary {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    border: none;
    color: white;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.faq-area .bd-landing-service .inner .content .bd-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;
}

.faq-area .bd-landing-service .inner .content .bd-btn:hover::before {
    left: 100%;
}

.faq-area .bd-landing-service .inner .content .bd-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Enhanced FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-area .bd-section-title {
        font-size: 2rem;
    }
    
    .faq-area .accordion-button {
        padding: 20px 25px;
        font-size: 15px;
    }
    
    .faq-area .accordion-body {
        padding: 25px;
        font-size: 15px;
    }
    
    .faq-area .bd-landing-service .inner {
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .faq-area .bd-landing-service .inner .content .title {
        font-size: 20px;
    }
    
    .faq-area .bd-landing-service .inner .inner-icon {
        height: 70px;
        width: 70px;
    }
    
    .faq-area .bd-landing-service .inner .inner-icon i {
        font-size: 2rem;
    }
    
    .faq-area .bd-landing-service .inner .content .bd-btn {
        min-width: 180px;
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-area .bd-section-title {
        font-size: 1.8rem;
    }
    
    .faq-area .accordion-button {
        padding: 18px 20px;
        font-size: 14px;
    }
    
    .faq-area .accordion-body {
        padding: 20px;
        font-size: 14px;
    }
    
    .faq-area .bd-landing-service .inner {
        padding: 25px 15px;
        min-height: 220px;
    }
    
    .faq-area .bd-landing-service .inner .content .title {
        font-size: 18px;
    }
    
    .faq-area .bd-landing-service .inner .inner-icon {
        height: 60px;
        width: 60px;
    }
    
    .faq-area .bd-landing-service .inner .inner-icon i {
        font-size: 1.8rem;
    }
    
    .faq-area .bd-landing-service .inner .content .bd-btn {
        min-width: 160px;
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Enhanced FAQ Animations */
.faq-area .accordion-item {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-area .bd-landing-service {
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===================================
   ENHANCED ABOUT SECTION STYLES
   =================================== */

.about-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    overflow: hidden;
}

.about-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="about-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.3;
}

/* Hero About Content */
.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-content .bd-section-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-hero-content .bd-section-paragraph {
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Stats Cards */
.stat-card {
    background: linear-gradient(145deg, #1e293b, #334155);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.6);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(251, 191, 36, 0.5);
}

.stat-icon i {
    font-size: 1.5rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-icon i {
    color: #1e293b;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-text {
    color: #cbd5e1;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Badge */
.about-badge {
    display: inline-block;
}

.badge-text {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* About Title */
.about-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-description {
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    background: linear-gradient(145deg, #1e293b, #334155);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.6);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.feature-icon i {
    font-size: 1.2rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-icon i {
    color: #1e293b;
}

.feature-content h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.feature-content p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* About Media */
.about-media {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.main-image {
    padding: 70px;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.about-image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.overlay-card {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.overlay-icon i {
    font-size: 1.5rem;
    color: #fbbf24;
}

.overlay-content h4 {
    font-weight: 800;
    margin: 0;
    font-size: 1.2rem;
}

.overlay-content p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.about-floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
}

.floating-card-content {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.floating-card-content i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.floating-card-content h5 {
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    font-size: 14px;
}

.floating-card-content p {
    color: #cbd5e1;
    margin: 0;
    font-size: 12px;
}

/* Mission Vision Cards */
.mission-card, .vision-card {
    background: linear-gradient(145deg, #1e293b, #334155);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    backdrop-filter: blur(10px);
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-card:hover::before, .vision-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.6);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.mission-card:hover .card-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scale(1.1) rotate(5deg);
}

.vision-card:hover .card-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    transform: scale(1.1) rotate(-5deg);
}

.card-icon i {
    font-size: 1.5rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.mission-card:hover .card-icon i,
.vision-card:hover .card-icon i {
    color: #ffffff;
}

.card-header h3 {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.card-body p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-list, .vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li, .vision-list li {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-list li i, .vision-list li i {
    color: #10b981;
    font-size: 12px;
}

/* Values Section */
.values-section {
    position: relative;
    z-index: 2;
}

.values-section .section-title h3 {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.values-section .section-title p {
    color: #cbd5e1;
    font-size: 18px;
}

.value-card {
    background: linear-gradient(145deg, #1e293b, #334155);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    backdrop-filter: blur(10px);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.6);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.5);
}

.value-icon i {
    font-size: 2rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.value-card:hover .value-icon i {
    color: #1e293b;
}

.value-card h4 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.value-card p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* About CTA */
.about-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-content .bd-section-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .values-section .section-title h3 {
        font-size: 2rem;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .about-cta .bd-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content .bd-section-title {
        font-size: 1.8rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .values-section .section-title h3 {
        font-size: 1.8rem;
    }
    
    .value-card {
        padding: 20px;
    }
    
    .value-icon {
        width: 60px;
    height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
}

/* ===================================
   CONTACT SECTION STYLES
   =================================== */

.contact-section {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.contact-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="contact-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.3;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-content .bd-section-title {
    color: white;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-content .bd-section-paragraph {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-info {
    margin-top: 30px;
}

.contact-item {
    padding: 15px 0;
}

.contact-link {
    color: white !important;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #bfdbfe !important;
    text-decoration: none;
}

.contact-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

/* ===================================
   SMOOTH SCROLLING
   =================================== */

html {
    scroll-behavior: smooth;
}

/* ===================================
   NAVIGATION ACTIVE STATES
   =================================== */

.bd-header-menu ul li a.active {
    color: var(--bd-primary);
    font-weight: 700;
}

/* ===================================
   RESPONSIVE DESIGN FOR NEW SECTIONS
   =================================== */

@media (max-width: 768px) {
    .about-content .bd-section-title {
        font-size: 2rem;
    }
    
    .contact-content .bd-section-title {
        font-size: 2rem;
    }
    
    .about-content .bd-section-paragraph {
        font-size: 16px;
    }
    
    .contact-content .bd-section-paragraph {
        font-size: 16px;
    }
    
    .contact-link {
        font-size: 16px;
        color: white !important;
    }
    
    .contact-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-content .bd-section-title {
        font-size: 1.8rem;
    }
    
    .contact-content .bd-section-title {
        font-size: 1.8rem;
    }
    
    .about-content .bd-section-paragraph {
        font-size: 15px;
    }
    
    .contact-content .bd-section-paragraph {
        font-size: 15px;
    }
    
    .contact-link {
        font-size: 15px;
        color: white !important;
    }
    
    .contact-text {
        font-size: 15px;
    }
}

/* Enhanced Landing Service Cards */
.bd-landing-service .inner {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bd-landing-service .inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bd-primary), #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bd-landing-service .inner:hover::before {
    transform: scaleX(1);
}

.bd-landing-service .inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.bd-landing-service .inner .content .title {
    font-weight: 700;
    color: var(--bd-theme-black);
}

/* Enhanced Buttons */
.btn-emergency {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: none;
    color: white;
    font-weight: 50;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-emergency::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;
}

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

.btn-emergency:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
    color: white;
}

/* Enhanced Header */
.bd-header-area {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Mobile Header Specific Styles */
@media (max-width: 768px) {
    .bd-header-area {
        padding: 10px 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .bd-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        min-height: 60px;
    }
    
    .bd-header-left {
        flex: 1;
        display: flex;
        align-items: center;
    }
    
    .bd-header-logo {
        display: flex;
        align-items: center;
    }
    
    .bd-header-logo a {
        display: flex;
        align-items: center;
        text-decoration: none;
    }
    
    .bd-header-logo img {
        height: 40px;
        width: auto;
        max-width: 120px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }
    
    .bd-header-logo img:hover {
        transform: scale(1.05);
    }
    
    .bd-header-menu {
        display: none;
    }
    
    .bd-header-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .btn-emergency {
        padding: 8px 16px;
        font-size: 12px;
        font-weight: 600;
        border-radius: 8px;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: all 0.3s ease;
        background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
        color: white;
        border: none;
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }
    
    .btn-emergency:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    }
    
    .btn-emergency:active {
        transform: translateY(0);
        box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
    }
    
    .bd-header-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: rgba(37, 99, 235, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .sidebar-toggle:hover {
        background: rgba(37, 99, 235, 0.2);
        transform: scale(1.05);
    }
    
    .sidebar-toggle:active {
        transform: scale(0.95);
    }
    
    .bar-icon {
        display: flex;
        flex-direction: column;
        gap: 3px;
        width: 20px;
        height: 16px;
        position: relative;
    }
    
    .bar-icon span {
        width: 100%;
        height: 2px;
        background: #2563eb;
        border-radius: 1px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .bar-icon:hover span {
        background: #1e40af;
    }
    
    .bar-icon.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .bar-icon.active span:nth-child(2) {
        opacity: 0;
    }
    
    .bar-icon.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 480px) {
    .bd-header-inner {
        padding: 0 10px;
        min-height: 55px;
    }
    
    .bd-header-logo img {
        height: 35px;
        max-width: 100px;
    }
    
    .btn-emergency {
        padding: 6px 12px;
        font-size: 11px;
        gap: 3px;
    }
    
    .sidebar-toggle {
        width: 35px;
        height: 35px;
    }
    
    .bar-icon {
        width: 18px;
        height: 14px;
        gap: 2px;
    }
    
    .bar-icon span {
        height: 2px;
    }
}

/* Header Scroll Effect */
.bd-header-area.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
}

/* Header Animation */
@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bd-header-area {
    animation: headerSlideDown 0.5s ease-out;
}

/* Touch Effects for Mobile */
.touch-active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Enhanced Button States */
.btn-emergency:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-emergency:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
}

/* Focus States for Accessibility */
.btn-emergency:focus,
.sidebar-toggle:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Loading State Animation */
@keyframes loadingPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.btn-emergency:disabled {
    animation: loadingPulse 1s infinite;
}

.bd-header-menu ul li a {
    font-weight: 600;
    transition: color 0.3s ease;
}

.bd-header-menu ul li a:hover {
    color: var(--bd-primary);
}

/* Enhanced Preloader */
#loading {
    background: linear-gradient(135deg, var(--bd-primary), #1e40af);
}

.bd-preloader-circle svg {
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .demo-banner-title {
        font-size: 2rem;
    }
    
    .phone-number {
        font-size: 1.8rem;
        padding: 12px 20px;
    }
    
    .home-page-demo .item a {
        margin-bottom: 20px;
    }
}

/* Enhanced Animations */
.wow {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.bdFadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--bd-primary), #1e40af);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
}

/* Enhanced Focus States */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
    border-color: var(--bd-primary);
}

/* Enhanced Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced Typography */
.bd-section-title {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.bd-section-subtitle {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Spacing */
.section-space {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-space {
        padding: 60px 0;
    }
}

/* Enhanced Shadows */
.enhanced-shadow {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.enhanced-shadow:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Enhanced Borders */
.enhanced-border {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--bd-primary), #1e40af) border-box;
}

/* Enhanced Gradients */
.gradient-primary {
    background: linear-gradient(135deg, var(--bd-primary), #1e40af);
}

.gradient-secondary {
    background: linear-gradient(135deg, var(--bd-secondary), #7c2d12);
}

.gradient-success {
    background: linear-gradient(135deg, var(--bd-success), #16a34a);
}

/* Enhanced Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Enhanced Text Effects */
.text-gradient {
    background: linear-gradient(135deg, #c4c3c3, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Enhanced Backdrop */
.backdrop-blur {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
}

/* Enhanced Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
}

/* Enhanced Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
} 

/* ===================================
   ANIMATED STAR BACKGROUND
   =================================== */

.bd-demo-banner-area {
    position: relative;
    overflow: hidden;
}

/* Star Animation Container */
.star-animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Stars */
.star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

.star::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

/* Different star sizes */
.star.small {
    width: 2px;
    height: 2px;
    opacity: 0.6;
}

.star.medium {
    width: 3px;
    height: 3px;
    opacity: 0.8;
}

.star.large {
    width: 4px;
    height: 4px;
    opacity: 1;
}

/* Shooting stars */
.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, #ffffff, transparent);
    border-radius: 50%;
    animation: shooting-star 4s infinite;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, #ffffff, transparent);
    transform: translateX(-100px);
}

/* Star positions */
.star:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.star:nth-child(2) { top: 20%; left: 80%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 30%; left: 20%; animation-delay: 1s; }
.star:nth-child(4) { top: 40%; left: 70%; animation-delay: 1.5s; }
.star:nth-child(5) { top: 50%; left: 15%; animation-delay: 2s; }
.star:nth-child(6) { top: 60%; left: 85%; animation-delay: 2.5s; }
.star:nth-child(7) { top: 70%; left: 25%; animation-delay: 0.3s; }
.star:nth-child(8) { top: 80%; left: 75%; animation-delay: 0.8s; }
.star:nth-child(9) { top: 15%; left: 50%; animation-delay: 1.2s; }
.star:nth-child(10) { top: 25%; left: 35%; animation-delay: 1.7s; }
.star:nth-child(11) { top: 35%; left: 90%; animation-delay: 0.2s; }
.star:nth-child(12) { top: 45%; left: 5%; animation-delay: 0.7s; }
.star:nth-child(13) { top: 55%; left: 60%; animation-delay: 1.3s; }
.star:nth-child(14) { top: 65%; left: 40%; animation-delay: 1.8s; }
.star:nth-child(15) { top: 75%; left: 95%; animation-delay: 0.4s; }
.star:nth-child(16) { top: 85%; left: 30%; animation-delay: 0.9s; }
.star:nth-child(17) { top: 5%; left: 65%; animation-delay: 1.4s; }
.star:nth-child(18) { top: 95%; left: 55%; animation-delay: 1.9s; }
.star:nth-child(19) { top: 12%; left: 45%; animation-delay: 0.1s; }
.star:nth-child(20) { top: 22%; left: 25%; animation-delay: 0.6s; }

/* Shooting star positions */
.shooting-star:nth-child(21) { 
    top: 20%; 
    left: -10%; 
    animation-delay: 0s; 
    animation-duration: 3s;
}
.shooting-star:nth-child(22) { 
    top: 60%; 
    left: -10%; 
    animation-delay: 2s; 
    animation-duration: 4s;
}
.shooting-star:nth-child(23) { 
    top: 40%; 
    left: -10%; 
    animation-delay: 4s; 
    animation-duration: 3.5s;
}

/* Floating particles */
.floating-particle {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.floating-particle:nth-child(24) { top: 10%; left: 20%; animation-delay: 0s; }
.floating-particle:nth-child(25) { top: 30%; left: 80%; animation-delay: 1s; }
.floating-particle:nth-child(26) { top: 50%; left: 30%; animation-delay: 2s; }
.floating-particle:nth-child(27) { top: 70%; left: 70%; animation-delay: 3s; }
.floating-particle:nth-child(28) { top: 20%; left: 60%; animation-delay: 4s; }
.floating-particle:nth-child(29) { top: 80%; left: 40%; animation-delay: 5s; }

/* Animations */
@keyframes twinkle {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2);
    }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.5; 
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.5);
    }
}

@keyframes shooting-star {
    0% {
        transform: translateX(-100px) translateY(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(100px);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(20px);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 0.9;
    }
}

/* Enhanced banner content positioning */
.bd-demo-banner-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.bd-demo-banner-area .container {
    position: relative;
    z-index: 10;
}

/* Banner buttons styling */
.demo-banner-btn {
    position: relative;
    z-index: 10;
}

.demo-banner-btn .bd-btn {
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    padding: 12px 50px;
    border-radius: 50px;
}

.demo-banner-btn .bd-btn.btn-primary {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    border: 2px solid #dc2626;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    color: white;
    font-weight: 600;
    min-width: 180px;
}

.demo-banner-btn .bd-btn.btn-primary:hover {
    background: linear-gradient(45deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    color: white;
}

.demo-banner-btn .bd-btn.btn-outline-border-white {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
    min-width: 180px;
}

.demo-banner-btn .bd-btn.btn-outline-border-white:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .star {
        transform: scale(0.7);
    }
    
    .shooting-star {
        transform: scale(0.8);
    }
    
    .demo-banner-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .demo-banner-content p {
        font-size: 1rem;
    }
    
    .demo-banner-top .subtitle {
        font-size: 0.9rem;
    }
    
    .demo-banner-btn .bd-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 150px;
    }
    
    .demo-banner-top {
        margin: 0 10px;
    }
    
    .demo-banner-top .bd-icon {
        font-size: 1.2rem;
        min-width: 25px;
    }
}

@media (max-width: 480px) {
    .star {
        transform: scale(0.5);
    }
    
    .shooting-star {
        transform: scale(0.6);
    }
    
    .demo-banner-title {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .demo-banner-content p {
        font-size: 0.9rem;
    }
    
    .demo-banner-top .subtitle {
        font-size: 0.8rem;
    }
    
    .demo-banner-btn .bd-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-width: 140px;
    }
    
    .demo-banner-btn {
        flex-direction: column;
        gap: 10px;
    }
    
    .demo-banner-top {
        margin: 0 5px;
    }
    
    .demo-banner-top .bd-icon {
        font-size: 1rem;
        min-width: 20px;
    }
    
    .bd-demo-banner-area {
        padding: 60px 0;
        min-height: 90vh;
    }
}

/* Contact Dialog Styles */
.contact-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.contact-dialog {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: dialogSlideIn 0.3s ease-out;
}

@keyframes dialogSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border-radius: 20px 20px 0 0;
}

.dialog-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.dialog-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.dialog-content {
    padding: 30px;
}

.contact-methods {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: white;
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.method-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.method-icon.email {
    background: linear-gradient(135deg, #EA4335, #C62828);
}

.method-info {
    flex: 1;
}

.method-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.contact-link {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #bfdbfe !important;
    text-decoration: underline;
}

.method-desc {
    margin: 5px 0 0 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.social-media-section h4 {
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.social-link i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.social-link span {
    font-size: 0.9rem;
}

.social-link.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

.social-link.tiktok {
    background: linear-gradient(135deg, #000000, #25F4EE);
}

.social-link.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Dialog Animation Effects */
.contact-method.clicked {
    animation: clickEffect 0.3s ease;
}

@keyframes clickEffect {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.social-link i.bounce {
    animation: bounceEffect 0.6s ease;
}

@keyframes bounceEffect {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Dialog Open Body Style */
body.dialog-open {
    overflow: hidden;
}

/* Enhanced Dialog Close Button */
.dialog-close:active {
    transform: scale(0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-dialog {
        width: 95%;
        margin: 20px;
    }
    
    .dialog-header {
        padding: 20px 25px;
    }
    
    .dialog-content {
        padding: 25px;
    }
    
    .contact-method {
        padding: 15px;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 15px;
    }
    
    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .dialog-header h3 {
        font-size: 1.3rem;
    }
    
    .method-info h4 {
        font-size: 1rem;
    }
    
    .contact-link {
        font-size: 0.9rem;
        color: white !important;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
}

/* Services Dialog Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border-radius: 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.service-icon.emergency {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.service-icon.battery {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-icon.fuel {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-icon.lock {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-icon.tire {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.service-icon.tow {
    background: linear-gradient(135deg, #1f2937, #111827);
}

.service-info {
    flex: 1;
}

.service-info h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.service-info p {
    margin: 0 0 12px 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-link {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    color: white;
    text-decoration: none;
}

.service-contact-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 25px;
    margin-top: 20px;
}

.service-contact-section h4 {
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
}

.emergency-contact {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.emergency-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.emergency-btn:first-child {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.emergency-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

/* Responsive Design for Services Dialog */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-item {
        padding: 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 15px;
    }
    
    .emergency-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .emergency-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-info h4 {
        font-size: 1rem;
    }
    
    .service-info p {
        font-size: 0.85rem;
    }
    
    .service-link {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* Enhanced Customer Review Area Styles */
.customer-review-area {
    background: #2563eb;
    position: relative;
    overflow: hidden;
}

.customer-review-area::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>');
    pointer-events: none;
}

.section-header {
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    display: block;
}

/* Regions Section */
.regions-section {
    position: relative;
    z-index: 2;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.region-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.region-card:hover::before {
    transform: scaleX(1);
}

.region-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.region-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: white;
    position: relative;
}

.region-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    z-index: -1;
}

.region-icon.marmara {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.region-icon.ege {
    background: linear-gradient(135deg, #10b981, #059669);
}

.region-icon.akdeniz {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.region-icon.ic-anadolu {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.region-icon.karadeniz {
    background: linear-gradient(135deg, #059669, #047857);
}

.region-icon.dogu-anadolu {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.region-icon.guneydogu {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.region-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.region-content p {
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.region-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.stat-item i {
    color: #2563eb;
    font-size: 0.9rem;
}

/* Cities Section */
.cities-section {
    position: relative;
    z-index: 2;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.city-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(30, 64, 175, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.city-card:hover::before {
    opacity: 1;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.city-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
    color: white;
    position: relative;
}

.city-icon.istanbul {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.city-icon.ankara {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.city-icon.izmir {
    background: linear-gradient(135deg, #10b981, #059669);
}

.city-icon.bursa {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.city-icon.antalya {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.city-icon.adana {
    background: linear-gradient(135deg, #059669, #047857);
}

.city-icon.konya {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.city-icon.gaziantep {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.city-icon.kayseri {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.city-icon.mersin {
    background: linear-gradient(135deg, #10b981, #059669);
}

.city-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.city-content p {
    color: #e5e7eb;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.city-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature {
    padding: 4px 10px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 20px;
    padding: 40px;
    color: white;
    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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: white;
    color: #2563eb;
}

.cta-btn.primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn.whatsapp {
    background: #25D366;
    color: white;
}

.cta-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .regions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .region-card,
    .city-card {
        padding: 20px;
    }
    
    .region-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .city-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .region-content h4,
    .city-content h4 {
        font-size: 1.1rem;
    }
    
    .region-content p,
    .city-content p {
        font-size: 0.85rem;
    }
    
    .stat-item {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .feature {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}

/* ===================================
   ENHANCED MOBILE MENU STYLES
   =================================== */

.enhanced-mobile-menu {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.enhanced-mobile-menu .bd-offcanvas-content {
    padding: 0;
    height: 100vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.enhanced-mobile-menu .bd-offcanvas-content::-webkit-scrollbar {
    width: 4px;
}

.enhanced-mobile-menu .bd-offcanvas-content::-webkit-scrollbar-track {
    background: transparent;
}

.enhanced-mobile-menu .bd-offcanvas-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-logo img {
    max-height: 40px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.mobile-logo:hover img {
    transform: scale(1.05);
}

.enhanced-close-icon {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.enhanced-close-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.close-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.close-line:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-navigation {
    padding: 20px 0;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::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.5s ease;
}

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 35px;
}

.mobile-nav-link i {
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover i {
    transform: scale(1.2);
}

.mobile-nav-link span {
    flex: 1;
}

/* Emergency Section */
.mobile-emergency-section {
    margin: 20px 25px;
    padding: 25px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.mobile-emergency-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="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: pulse 2s ease-in-out infinite;
}

.emergency-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.emergency-header i {
    font-size: 24px;
    color: #fbbf24;
    margin-right: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.emergency-header h4 {
    color: white;
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

.emergency-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.emergency-phone,
.emergency-whatsapp {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.emergency-phone:hover,
.emergency-whatsapp:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.emergency-phone i,
.emergency-whatsapp i {
    margin-right: 12px;
    font-size: 18px;
}

.emergency-whatsapp i {
    color: #25D366;
}

/* Contact Section */
.mobile-contact-section {
    padding: 20px 25px;
}

.section-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: '';
    width: 3px;
    height: 20px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    margin-right: 12px;
    border-radius: 2px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 16px;
}

.contact-info {
    flex: 1;
}

.contact-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-value {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #fbbf24;
}

/* Social Media Section */
.mobile-social-section {
    padding: 20px 25px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-item i {
    margin-right: 12px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.social-item:hover i {
    transform: scale(1.2);
}

.social-item.instagram i {
    color: #E4405F;
}

.social-item.tiktok i {
    color: #000000;
}

.social-item.youtube i {
    color: #FF0000;
}

.social-item.whatsapp i {
    color: #25D366;
}

/* Quick Actions Section */
.mobile-actions-section {
    padding: 20px 25px;
    margin-top: auto;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-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 ease;
}

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

.action-btn.primary {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.action-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.action-btn i {
    margin-right: 12px;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .enhanced-mobile-menu .bd-offcanvas-content {
        padding: 0;
    }
    
    .mobile-menu-header {
        padding: 15px 20px;
    }
    
    .mobile-nav-link {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .mobile-emergency-section {
        margin: 15px 20px;
        padding: 20px;
    }
    
    .mobile-contact-section,
    .mobile-social-section,
    .mobile-actions-section {
        padding: 15px 20px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mobile-logo img {
        max-height: 35px;
    }
    
    .enhanced-close-icon {
        width: 35px;
        height: 35px;
    }
    
    .close-line {
        width: 18px;
    }
    
    .mobile-nav-link {
        padding: 16px 18px;
        font-size: 14px;
    }
    
    .mobile-nav-link i {
        font-size: 16px;
        margin-right: 12px;
    }
    
    .emergency-header h4 {
        font-size: 16px;
    }
    
    .emergency-phone,
    .emergency-whatsapp {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .contact-item {
        padding: 12px 16px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }
    
    .contact-icon i {
        font-size: 14px;
    }
    
    .action-btn {
        padding: 16px 20px;
        font-size: 15px;
    }
}

/* Animation for menu opening */
.enhanced-mobile-menu {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    z-index: 9999;
}

.enhanced-mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

/* Overlay animation */
.bd-offcanvas-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9998;
    pointer-events: none;
}

.bd-offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Menu item animations */
.mobile-nav-item {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.5s ease forwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced close button animation */
.enhanced-close-icon:active {
    transform: scale(0.9);
}

/* Hover effects for better UX */
.mobile-nav-link:active {
    transform: scale(0.98);
}

.emergency-phone:active,
.emergency-whatsapp:active {
    transform: scale(0.95);
}

.action-btn:active {
    transform: scale(0.98);
} 

/* Additional Mobile Menu Animations */
.slide-in {
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.touch-active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.clicked {
    animation: clickEffect 0.3s ease;
}

@keyframes clickEffect {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.bounce {
    animation: bounceEffect 0.6s ease;
}

@keyframes bounceEffect {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Ensure mobile menu is properly positioned */
.bd-offcanvas-area.enhanced-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    opacity: 0;
}

.bd-offcanvas-area.enhanced-mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

/* Enhanced mobile menu backdrop */
.bd-offcanvas-overlay.active {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Ensure overlay is completely hidden when not active */
.bd-offcanvas-overlay:not(.active) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Additional overlay cleanup */
.bd-offcanvas-overlay {
    transition: all 0.3s ease;
}

.bd-offcanvas-overlay.active {
    transition: all 0.4s ease;
}

/* Force cleanup for any lingering overlays */
body:not(.menu-open) .bd-offcanvas-overlay {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
}

/* Mobile menu entrance animation */
.enhanced-mobile-menu.active {
    animation: menuSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes menuSlideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Enhanced close button animation */
.enhanced-close-icon:hover .close-line:first-child {
    transform: translate(-50%, -50%) rotate(225deg);
}

.enhanced-close-icon:hover .close-line:last-child {
    transform: translate(-50%, -50%) rotate(135deg);
}

/* Mobile menu item hover effects */
.mobile-nav-link:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.mobile-nav-link:active {
    background: rgba(255, 255, 255, 0.2);
}

/* Emergency section pulse animation */
.emergency-header i {
    animation: emergencyPulse 2s ease-in-out infinite;
}

@keyframes emergencyPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Contact item hover animation */
.contact-item:hover .contact-icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% { transform: scale(1); }
    40% { transform: scale(1.1); }
    60% { transform: scale(1.05); }
}

/* Social media hover effects */
.social-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}

.social-item.instagram:hover {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.2), rgba(228, 64, 95, 0.1));
}

.social-item.tiktok:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
}

.social-item.youtube:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.1));
}

.social-item.whatsapp:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
}

/* Action button hover effects */
.action-btn.primary:hover {
    background: linear-gradient(45deg, #1d4ed8, #1e40af);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

.action-btn.secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile menu scrollbar styling */
.enhanced-mobile-menu .bd-offcanvas-content::-webkit-scrollbar {
    width: 6px;
}

.enhanced-mobile-menu .bd-offcanvas-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.enhanced-mobile-menu .bd-offcanvas-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.enhanced-mobile-menu .bd-offcanvas-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Focus styles for accessibility */
.mobile-nav-link:focus,
.enhanced-close-icon:focus,
.emergency-phone:focus,
.emergency-whatsapp:focus,
.social-item:focus,
.action-btn:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Loading animation for menu items */
.mobile-nav-item {
    opacity: 0;
    animation: fadeInSlide 0.5s ease forwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced mobile menu responsive adjustments */
@media (max-width: 480px) {
    .enhanced-mobile-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-menu-header {
        padding: 15px 20px;
    }
    
    .mobile-nav-link {
        padding: 16px 20px;
    }
    
    .emergency-contact {
        flex-direction: column;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        gap: 12px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .enhanced-mobile-menu {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    }
    
    .mobile-menu-header {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .contact-item {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .social-item {
        background: rgba(255, 255, 255, 0.05);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .mobile-nav-link {
        border-bottom: 2px solid white;
    }
    
    .contact-item {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .social-item {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .action-btn {
        border: 2px solid currentColor;
    }
}

/* Enhanced Professional Loading Screen Styles */
.enhanced-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loading-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Particles */
.loading-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 20%; left: 80%; animation-delay: 1s; }
.particle-3 { top: 30%; left: 20%; animation-delay: 2s; }
.particle-4 { top: 40%; left: 70%; animation-delay: 3s; }
.particle-5 { top: 50%; left: 15%; animation-delay: 4s; }
.particle-6 { top: 60%; left: 85%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Loading Container */
.loading-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 400px;
    padding: 40px;
}

.loading-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Enhanced Logo Container */
.enhanced-logo-container {
    position: relative;
    margin-bottom: 30px;
}

.logo-circle-animation {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
}

.logo-circle-animation svg {
    width: 100%;
    height: 100%;
}

/* Progress Ring Animation */
.progress-ring {
    animation: progressAnimation 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes progressAnimation {
    0% { stroke-dashoffset: 1130; }
    50% { stroke-dashoffset: 565; }
    100% { stroke-dashoffset: 0; }
}

/* Pulsing Center */
.pulse-center {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Logo Image */
.logo-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enhanced-logo {
    width: 100%;
    height: auto;
    max-width: 100px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Loading Text */
.loading-text-container {
    margin-bottom: 30px;
}

.loading-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.loading-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Loading Dots */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.dot-1 { animation-delay: 0s; }
.dot-2 { animation-delay: 0.2s; }
.dot-3 { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Progress Bar */
.loading-progress {
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, #e0e7ff);
    border-radius: 10px;
    width: 0%;
    animation: progressFill 3s ease-in-out infinite;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: center;
}

.progress-percentage {
    animation: countUp 3s ease-in-out infinite;
}

@keyframes countUp {
    0% { content: "0"; }
    25% { content: "25"; }
    50% { content: "50"; }
    75% { content: "75"; }
    100% { content: "100"; }
}

/* Loading Tips */
.loading-tips {
    margin-top: 20px;
}

.tip-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tip-icon {
    color: #fbbf24;
    font-size: 1.2rem;
    animation: tipGlow 2s ease-in-out infinite;
}

@keyframes tipGlow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.tip-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .loading-container {
        max-width: 300px;
        padding: 20px;
    }
    
    .loading-content {
        padding: 30px 20px;
    }
    
    .logo-circle-animation {
        width: 150px;
        height: 150px;
    }
    
    .logo-image-container {
        width: 90px;
        height: 90px;
    }
    
    .enhanced-logo {
        max-width: 70px;
    }
    
    .loading-title {
        font-size: 2rem;
    }
    
    .loading-subtitle {
        font-size: 1rem;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .loading-container {
        max-width: 280px;
        padding: 15px;
    }
    
    .loading-content {
        padding: 25px 15px;
    }
    
    .logo-circle-animation {
        width: 120px;
        height: 120px;
    }
    
    .logo-image-container {
        width: 70px;
        height: 70px;
    }
    
    .enhanced-logo {
        max-width: 55px;
    }
    
    .loading-title {
        font-size: 1.8rem;
    }
    
    .loading-subtitle {
        font-size: 0.9rem;
    }
    
    .tip-text {
        font-size: 0.8rem;
    }
}

/* Enhanced Loading States */
.enhanced-loading.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

/* Loading Success Animation */
.enhanced-loading.success {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
}

.enhanced-loading.success .loading-content {
    animation: successPulse 0.5s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Loading Error State */
.enhanced-loading.error {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .particle,
    .progress-ring,
    .pulse-center,
    .enhanced-logo,
    .dot,
    .progress-fill,
    .tip-icon {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .loading-content {
        background: rgba(0, 0, 0, 0.9);
        border: 2px solid #ffffff;
    }
    
    .loading-title {
        color: #ffffff;
        text-shadow: none;
    }
    
    .loading-subtitle,
    .progress-text,
    .tip-text {
        color: #ffffff;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .enhanced-loading {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    }
    
    .loading-content {
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Performance Optimizations */
.enhanced-loading {
    will-change: opacity;
    transform: translateZ(0);
}

.loading-content {
    will-change: transform;
    transform: translateZ(0);
}

/* Loading Screen Hide Animation */
.enhanced-loading.hiding {
    animation: slideOut 0.8s ease-in-out forwards;
}

@keyframes slideOut {
    0% { 
        opacity: 1;
        transform: scale(1);
    }
    100% { 
        opacity: 0;
        transform: scale(0.95);
        visibility: hidden;
    }
}

/* Enhanced Loading with Shimmer Effect */
.loading-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Loading Screen with Parallax Effect */
.loading-background {
    perspective: 1000px;
}

.loading-content {
    transform-style: preserve-3d;
    animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateZ(0) rotateX(0deg); }
    50% { transform: translateZ(20px) rotateX(2deg); }
}

/* Loading Screen with Particle Trail */
.particle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: particleTrail 2s ease-out infinite;
}

@keyframes particleTrail {
    0% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    100% { 
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.region-card, .city-card {
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: scale(1) translateY(0);
  position: relative;
  overflow: hidden;
}

.region-card::before, .city-card::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.8s ease;
}

.region-card:hover::before, .city-card:hover::before {
  left: 100%;
}

.region-card.fade-out, .city-card.fade-out {
  opacity: 0;
  transform: scale(0.9) translateY(40px) rotateX(10deg);
  pointer-events: none;
  filter: blur(2px);
}

.region-card.fade-in, .city-card.fade-in {
  opacity: 1;
  transform: scale(1) translateY(0) rotateX(0deg);
  filter: blur(0);
}

/* Enhanced floating animation */
.region-card, .city-card {
  animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { 
    transform: translateY(0px) rotateX(0deg); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  50% { 
    transform: translateY(-8px) rotateX(2deg); 
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
}

/* Disable floating animation on mobile for better performance */
@media (max-width: 768px) {
  .region-card, .city-card {
    animation: none;
  }
  
  .region-card:hover, .city-card:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
}

/* Professional hover effects */
.region-card:hover, .city-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced region and city icons */
.region-icon, .city-icon {
  transition: all 0.4s ease;
  position: relative;
}

.region-card:hover .region-icon, .city-card:hover .city-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Professional content animations */
.region-content h4, .city-content h4 {
  transition: all 0.3s ease;
}

.region-card:hover .region-content h4, .city-card:hover .city-content h4 {
  color: var(--bd-primary, #2563eb);
  transform: translateX(5px);
}

/* Stats and features animation */
.region-stats .stat-item, .city-features .feature {
  transition: all 0.3s ease;
  position: relative;
}

.region-card:hover .region-stats .stat-item, .city-card:hover .city-features .feature {
  transform: translateY(-2px);
  color: var(--bd-primary, #2563eb);
}

/* Loading state for cards */
.region-card.loading, .city-card.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Modern Service Network Section */
.service-network-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-network-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="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

/* Header Styles */
.network-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.header-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: #1e3a8a;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Interactive Map Section */
.map-section {
  margin: 60px 0;
  position: relative;
  z-index: 2;
}

.turkey-map {
  position: relative;
  width: 100%;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.turkey-map-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.8;
  filter: brightness(0.9) contrast(1.1);
  max-width: 100%;
  max-height: 100%;
}

.map-region {
  position: absolute;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.region-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .region-dot {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .region-dot {
    width: 16px;
    height: 16px;
  }
}

.region-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .region-dot::before {
    width: 7px;
    height: 7px;
  }
}

@media (max-width: 480px) {
  .region-dot::before {
    width: 6px;
    height: 6px;
  }
}

.region-tooltip {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  color: #1e3a8a;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  min-width: 200px;
  z-index: 15;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
}

.map-region:hover .region-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.region-tooltip h4 {
  margin: 0 0 8px 0;
  font-size: 1rem;
  font-weight: 600;
}

.region-tooltip p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}



/* Service Stats */
.service-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 60px 0;
  position: relative;
  z-index: 2;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-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 ease;
}

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

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: white;
}

.stat-content h3 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.stat-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 1rem;
}

/* Network CTA */
.network-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.cta-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-network-section {
    padding: 60px 0;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .turkey-map {
    height: 300px;
    width: 100%;
  }
  
  .turkey-map-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  
  /* Responsive region positions for tablet */
  .map-region.marmara { top: 15%; left: 18%; }
  .map-region.ege { top: 22%; left: 10%; }
  .map-region.akdeniz { top: 72%; left: 22%; }
  .map-region.ic-anadolu { top: 32%; left: 38%; }
  .map-region.karadeniz { top: 6%; left: 48%; }
  .map-region.dogu-anadolu { top: 22%; left: 68%; }
  .map-region.guneydogu { top: 82%; left: 62%; }
  
  .service-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-item {
    padding: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .service-stats {
    grid-template-columns: 1fr;
  }
  
  .main-title {
    font-size: 1.8rem;
  }
  
  .turkey-map {
    height: 250px;
    width: 100%;
  }
  
  .turkey-map-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  
  /* Responsive region positions for mobile */
  .map-region.marmara { top: 10%; left: 12%; }
  .map-region.ege { top: 15%; left: 6%; }
  .map-region.akdeniz { top: 65%; left: 15%; }
  .map-region.ic-anadolu { top: 25%; left: 32%; }
  .map-region.karadeniz { top: 3%; left: 42%; }
  .map-region.dogu-anadolu { top: 15%; left: 62%; }
  .map-region.guneydogu { top: 75%; left: 58%; }
}

/* Container to maintain layout */
.regions-section, .cities-section {
  min-height: 600px;
  position: relative;
   /* Extra padding at bottom */
}

/* Ensure cards maintain their space even when hidden */
.region-card, .city-card {
  min-height: 200px;
  position: relative;
}

.region-card[style*="display: none"], .city-card[style*="display: none"] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9) translateY(40px) rotateX(10deg);
}