/* 
 * SwiftCare Custom Styles - Single Source of Truth
 * Extracted from inline styles and organized
 * Author: SwiftCare Template Organization
 */

/* ===== SWIFTCARE CUSTOM STYLES - SINGLE SOURCE OF TRUTH =====
   Consolidated styles to prevent conflicts and improve maintainability
   Version: 2.0 - Optimized & Cleaned
   ================================================================ */

/* ===== LOGO CONTROL STYLES ===== */
.sb_logo_wrapper img {
    max-width: 85px;
    height: auto;
    transition: all 0.3s ease;
}

/* ===== CRITICAL FIX: OVERRIDE BOOTSTRAP CONTAINER PADDING ===== */
.mid-header-section .container-fluid {
    padding-left: 0 !important;
    padding-right: 15px !important;
}

/* ===== CRITICAL FIX: OVERRIDE BOOTSTRAP COLUMN PADDING ===== */
.mid-header-section .col-lg-4,
.mid-header-section .col-md-4 {
    padding-left: 0 !important;
    padding-right: 15px;
}

/* ===== ULTIMATE FIX: FORCE LEFTMOST POSITIONING ===== */
.mid-header-section .sb-mid-header-combined {
    margin-left: -15px !important; /* Counteract any remaining Bootstrap padding */
    padding-left: 15px !important; /* Add back controlled spacing */
}

/* ===== NEW BRAND LAYOUT STYLES ===== */
.sb-mid-header-combined {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sb_logo_wrapper { 
    flex-shrink: 0; 
}

.brand-link { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    gap: 15px; 
}

.swift-logo { 
    max-width: 85px; 
    height: auto; 
    transition: all 0.3s ease; 
}

.brand-name {
    font-size: 28px !important;
    font-weight: 600 !important;
    color: #e12454 !important;
    margin: 0;
    letter-spacing: 0.8px;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    line-height: 1.1;
    white-space: nowrap;
}

/* ===== HOVER EFFECTS ===== */
.brand-link:hover .swift-logo { 
    transform: scale(1.05); 
}

.brand-link:hover .brand-name { 
    color: #b3183f; 
    text-decoration: none;
}

/* ===== RIGHT SECTION ALIGNMENT ===== */
.sb-mid-right-section { 
    margin-left: auto; 
}

/* ===== CONSOLIDATED MOBILE HEADER BRANDING ===== */
/* Base mobile styles */
.mobile-brand-link { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    gap: 10px; 
    padding-left: 15px !important;
}

.mobile-swift-logo { 
    max-width: 70px;
    max-height: 70px;
    height: auto; 
}

.mobile-brand-name { 
    font-size: 26px; 
    font-weight: 700; 
    color: #e12454; 
    white-space: nowrap;
}

/* Adjustments for smaller mobile screens */
@media (max-width: 480px) {
    .mobile-swift-logo {
        max-width: 60px;
        max-height: 60px;
    }
    .mobile-brand-name {
        font-size: 22px;
        white-space: nowrap;
    }
}

/* ===== SIDEBAR BRANDING ===== */
.sidebar-brand-link { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    gap: 12px; 
    padding-left: 15px !important;
}

.sidebar-swift-logo { 
    max-width: 65px; 
    height: auto; 
}

.sidebar-brand-name { 
    font-size: 28px; 
    font-weight: 700; 
    color: #e12454; 
    white-space: nowrap;
}

/* ===== BOOTSTRAP DATEPICKER INITIALIZATION ===== */
.bootstrap-iso .datepicker {
    font-size: 14px;
}

/* ===== ICON ADJUSTMENTS ===== */
.sb-mid-right-section li a .fas.fa-clock {
    color: #e12454;
    margin-right: 5px;
}

/* ===== SERVICE CARD ICON STYLES ===== */
.slider-box .icon i.fa-flask,
.slider-box .icon i.fa-syringe,
.slider-box .icon i.fa-vial,
.slider-box .icon i.fa-leaf,
.slider-box .icon i.fa-building,
.slider-box .icon i.fa-wheelchair {
    font-size: 24px;
    color: #e12454;
}

/* ===== IMAGE SECTION STYLES ===== */
.image-section img {
   width: 100%;
   height: 450px;
   object-fit: cover;
   object-position: center;
}

/* ===== HERO SECTION CARD DESIGN ===== */
.banner-section-wrapper {
   background: url('../images/WhatsApp Image 2025-07-12 at 18.54.32.jpeg') center center/cover no-repeat;
   background-color: #2c3e50;
   background-attachment: scroll;
   position: relative;
   min-height: 100vh !important;
   padding: 0 !important;
   display: flex;
   align-items: center;
   justify-content: flex-end;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
   overflow: hidden;
   padding-right: 80px !important;
}

.banner-section-wrapper::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(135deg, 
      rgba(0, 0, 0, 0.4) 0%, 
      rgba(0, 0, 0, 0.5) 40%, 
      rgba(0, 0, 0, 0.7) 70%, 
      rgba(0, 0, 0, 0.8) 100%);
   backdrop-filter: blur(1px);
   z-index: 1;
}

.banner-section-wrapper .container-fluid {
   width: 100%;
   padding: 0;
   position: relative;
   z-index: 2;
}

.hero-card-container {
   display: flex;
   align-items: flex-end;
   justify-content: flex-start;
   min-height: 100vh;
   padding: 0 3% 5% 3%;
}

.hero-content-card {
   background: rgba(255, 255, 255, 0.98);
   border-radius: 20px;
   box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 
               0 12px 30px rgba(0, 0, 0, 0.2);
   padding: 0;
   max-width: 380px;
   width: 100%;
   backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 255, 255, 0.3);
   overflow: hidden;
   animation: slideInLeft 1s ease-out;
   transform: translateZ(0);
}

@keyframes slideInLeft {
   from {
       opacity: 0;
       transform: translateX(-100px);
   }
   to {
       opacity: 1;
       transform: translateX(0);
   }
}

.hero-content-card .card-header {
   background: linear-gradient(135deg, #e12454 0%, #ff6b9d 100%);
   padding: 16px 28px;
   margin: 0;
   border-radius: 20px 20px 0 0;
}

.hero-content-card .card-subtitle {
   color: white;
   font-size: 16px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1.2px;
   margin: 0;
   text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content-card .card-body {
   padding: 28px 28px;
   text-align: left;
}

.hero-title {
   font-size: 42px !important;
   font-weight: 700 !important;
   letter-spacing: 0.5px !important;
   color: #2c3e50 !important;
   margin-bottom: 20px;
   text-shadow: none;
   line-height: 1.1;
}

.hero-title .highlight-text {
   color: #e12454 !important;
   font-weight: 800;
   position: relative;
}

.hero-title .highlight-text::after {
   content: '';
   position: absolute;
   bottom: 8px;
   left: 0;
   width: 100%;
   height: 3px;
   background: linear-gradient(90deg, #e12454, #ff6b9d);
   border-radius: 2px;
}

.hero-description {
   font-size: 18px !important;
   line-height: 1.6 !important;
   font-weight: 400 !important;
   color: #5a5a5a !important;
   margin-bottom: 28px;
}

.hero-actions {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
   align-items: center;
}

.hero-cta-btn {
   background: linear-gradient(135deg, #e12454 0%, #ff6b9d 100%);
   color: white !important;
   padding: 16px 32px;
   border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
   font-size: 16px;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   transition: all 0.3s ease;
   box-shadow: 0 8px 25px rgba(225, 36, 84, 0.3);
   border: 2px solid transparent;
   min-height: 52px;
   justify-content: center;
}

.hero-cta-btn:hover {
   transform: translateY(-3px);
   box-shadow: 0 12px 35px rgba(225, 36, 84, 0.4);
   color: white !important;
   text-decoration: none;
}

.hero-secondary-btn {
   background: transparent;
   color: #5a5a5a !important;
   padding: 16px 32px;
   border-radius: 50px;
   text-decoration: none;
   font-weight: 500;
   font-size: 16px;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   transition: all 0.3s ease;
   border: 2px solid #ddd;
   min-height: 52px;
   justify-content: center;
}

.hero-secondary-btn:hover {
   background: #f8f9fa;
   color: #2c3e50 !important;
   text-decoration: none;
   transform: translateY(-2px);
   border-color: #bbb;
}

/* ===== RESPONSIVE DESIGN FOR HERO CARD ===== */
@media (max-width: 1199px) {
    .hero-content-card {
        max-width: 450px;
        border-radius: 18px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 
                    0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .hero-title {
        font-size: 38px !important;
        font-weight: 700;
        line-height: 1.1;
    }
    
    .hero-title .highlight-text {
        font-weight: 800;
    }
    
    .hero-description {
        font-size: 17px !important;
        line-height: 1.6;
    }
    
    .hero-content-card .card-body {
        padding: 26px 26px;
    }
    
    .hero-content-card .card-header {
        padding: 15px 26px;
        border-radius: 18px 18px 0 0;
    }
}

@media (max-width: 991px) {
    .hero-card-container {
        justify-content: center;
        align-items: center;
        padding: 80px 4%;
    }
    
    .hero-content-card {
        max-width: 420px;
        border-radius: 16px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28), 
                    0 9px 22px rgba(0, 0, 0, 0.12);
    }
    
    .hero-title {
        font-size: 34px !important;
        font-weight: 700;
        line-height: 1.1;
    }
    
    .hero-title .highlight-text {
        font-weight: 800;
    }
    
    .hero-description {
        font-size: 16px !important;
        line-height: 1.6;
    }
    
    .hero-content-card .card-body {
        padding: 24px 24px;
    }
    
    .hero-content-card .card-header {
        padding: 14px 24px;
        border-radius: 16px 16px 0 0;
    }
}

@media (max-width: 768px) {
    .banner-section-wrapper {
        background: url('../images/ChatGPT_Image_Jul_4_2025_03_27_56_AM_iqf6aj%20copy.png?v=20250104') center center/cover no-repeat !important;
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    .banner-section-wrapper::before {
        background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.7) 70%,
            rgba(0, 0, 0, 0.8) 100%);
    }
    
    .hero-card-container {
        padding: 60px 3%;
        align-items: flex-end;
        justify-content: flex-start;
    }
    
    .hero-content-card {
        max-width: 380px;
        border-radius: 14px;
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-title .highlight-text {
        font-size: 34px;
    }
    
    .hero-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .hero-content-card .card-body {
        padding: 25px;
    }
    
    .hero-content-card .card-header {
        padding: 12px 25px;
    }
    
    .hero-actions {
        margin-top: 25px;
    }
    
    .hero-cta-btn,
    .hero-secondary-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .mobile-swift-logo {
        max-height: 55px !important;
    }
    
    /* Hide Useful Links and Opening Days on mobile footer */
    .footer-main-wrapper .links {
        display: none !important;
    }
    
    .footer-main-wrapper .time-wrapper {
        display: none !important;
    }
    
    /* Hide hero card on contact us page for mobile displays */
    .contact-hero.banner-section-wrapper {
        display: none !important;
    }
    
    /* Hide hero sections for privacy policy and terms pages on mobile displays */
    .privacy-hero.banner-section-wrapper,
    .terms-hero.banner-section-wrapper {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-card-container {
        padding: 40px 2%;
    }
    
    .hero-content-card {
        max-width: 340px;
        border-radius: 12px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2), 
                    0 6px 14px rgba(0, 0, 0, 0.08);
    }
    
    .hero-title {
        font-size: 26px !important;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    
    .hero-title .highlight-text {
        font-weight: 800;
    }
    
    .hero-description {
        font-size: 14px !important;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .hero-content-card .card-body {
        padding: 20px 20px;
    }
    
    .hero-content-card .card-header {
        padding: 10px 20px;
        border-radius: 12px 12px 0 0;
    }
    
    .hero-content-card .card-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .hero-cta-btn,
    .hero-secondary-btn {
        padding: 13px 24px;
        font-size: 14px;
        min-height: 46px;
    }
}

/* ===== EMERGENCY SECTION BACKGROUND ===== */
.emergency-main-wrapper {
   background: url('../images/emergency-section_img.png') !important;
   background-size: cover !important;
   background-position: center left !important;
   background-repeat: no-repeat !important;
   position: relative;
   min-height: 700px;
   display: flex;
   align-items: center;
}

.emergency-main-wrapper::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.95) 100%);
}

.sb-emergency-main-wrapper {
   position: relative;
   z-index: 2;
   background: rgba(255, 255, 255, 0.95);
   padding: 20px 18px;
   border-radius: 15px;
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.3);
   max-width: 90%;
   margin: 0 auto;
}

.sb-emergency-main-wrapper .content h4 {
   color: #fff !important;
   font-size: 28px !important;
   font-weight: 700;
   margin-bottom: 0;
   transform: translateX(-30px);
}

.sb-emergency-main-wrapper .content span i {
   color: #e12454 !important;
   font-size: 32px;
   margin-bottom: 15px;
   display: block;
}

/* ===== FORM CONTROL STYLES ===== */
.emergency-form .form-group {
   margin-bottom: 0.5rem;
}

.emergency-form .form-control {
   border-radius: 8px !important;
   border: 2px solid #e9ecef !important;
   padding: 10px 12px !important;
   font-size: 14px !important;
   transition: all 0.3s ease !important;
}

.emergency-form .form-control:focus {
   border-color: #e12454 !important;
   box-shadow: 0 0 0 0.2rem rgba(225, 36, 84, 0.15) !important;
}

.emergency-form label {
   font-weight: 500;
   color: #333;
   margin-bottom: 3px;
   display: block;
   font-size: 14px;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1199px) {
    .brand-name { font-size: 26px; }
    .swift-logo { max-width: 80px; }
}

@media (max-width: 991px) {
    .brand-name { font-size: 24px; }
    .swift-logo { max-width: 75px; }
    .mid-header-section .sb-mid-header-combined {
        margin-left: -10px !important;
        padding-left: 10px !important;
    }
}

@media (max-width: 768px) {
    .sb_logo_wrapper img { max-width: 65px; }
    .mobile-logo img { max-width: 60px; }
    .brand-name { font-size: 22px; }
    .swift-logo { max-width: 65px; }
    .mid-header-section .sb-mid-header-combined {
        margin-left: -10px !important;
        padding-left: 10px !important;
    }
}

@media (max-width: 480px) {
    .brand-name { font-size: 20px; }
    .swift-logo { max-width: 55px; }
    .mid-header-section .sb-mid-header-combined {
        margin-left: -8px !important;
        padding-left: 8px !important;
    }
    .gap-8 { gap: 10px; }
}

/* ===== ADDITIONAL LOGO POSITIONING FIXES ===== */
.main-header-wrapper .sb-main-header .mid-header-section {
    position: relative;
    padding: 20px 0px;
}

/* Ensure no conflicting margins or padding on rows */
.mid-header-section .row {
    margin-left: 0 !important;
    margin-right: 0;
}

/* Remove any default Bootstrap gutters */
.mid-header-section .no-gutters {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mid-header-section .no-gutters > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0;
}

/* ===== ENHANCED VISUAL IMPACT ===== */
.brand-link {
    transition: all 0.3s ease;
}

.brand-link:hover {
    transform: translateY(-1px);
}

.swift-logo {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.brand-name {
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* ===== END CONSOLIDATED STYLES ===== */

/* Navigation Book Now Button Styling */
.nav-book-btn {
    margin-left: 25px; /* Increased margin for better spacing */
}

/* Create a new button class specifically for navigation to avoid conflicts */
.nav-book-btn .nav-button {
    background: white;
    color: #e12454 !important;
    padding: 12px 24px; /* Increased horizontal padding for longer text */
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px; /* Slightly smaller font to fit better */
    text-transform: uppercase;
    letter-spacing: 0.3px; /* Reduced letter spacing */
    transition: all 0.3s ease;
    border: 2px solid #e12454;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(225, 36, 84, 0.2);
    white-space: nowrap;
    min-width: 180px; /* Increased min-width for longer text */
    justify-content: center;
}

.nav-book-btn .nav-button:hover {
    transform: translateY(-2px);
    background: #e12454;
    color: white !important;
    box-shadow: 0 6px 20px rgba(225, 36, 84, 0.4);
    text-decoration: none;
}

.nav-book-btn .nav-button .nav-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: inherit;
}

.nav-book-btn .nav-button:hover .nav-icon {
    transform: translateX(3px);
}

/* Mobile Book Now Button Styling */
.nav-book-mobile {
    margin: 15px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.mobile-nav-button {
    background: linear-gradient(135deg, #e12454, #ff4570);
    color: white !important;
    padding: 15px 20px; /* Adjusted padding for mobile */
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px; /* Slightly smaller font for mobile */
    text-transform: uppercase;
    letter-spacing: 0.3px; /* Reduced letter spacing */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 36, 84, 0.3);
    white-space: nowrap;
}

.mobile-nav-button:hover {
    background: linear-gradient(135deg, #ff4570, #e12454);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(225, 36, 84, 0.4);
    text-decoration: none;
}

.mobile-nav-button .nav-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-nav-button:hover .nav-icon {
    transform: translateX(3px);
}

/* Responsive adjustments for navigation */
@media (max-width: 1199px) {
    .nav-book-btn .nav-button {
        padding: 10px 20px; /* Reduced padding for smaller screens */
        font-size: 12px; /* Smaller font for better fit */
        min-width: 160px; /* Reduced min-width */
        letter-spacing: 0.2px;
    }
}

@media (max-width: 991px) {
    .nav-book-btn {
        margin-left: 20px; /* Reduced margin */
    }
    
    .nav-book-btn .nav-button {
        padding: 8px 16px; /* Further reduced padding */
        font-size: 11px; /* Smaller font */
        min-width: 140px; /* Smaller min-width */
        letter-spacing: 0.1px;
    }
}

@media (max-width: 768px) {
    .mobile-nav-button {
        font-size: 13px; /* Slightly smaller for mobile */
        padding: 12px 16px; /* Adjusted mobile padding */
    }
}

/* About Section Spacing Improvements */
.about-main-wrapper .sb-about-section {
    padding: 120px 0 !important; /* Increased from 100px to 120px */
}

.about-main-wrapper .sb-about-section .col-lg-4 {
    margin-bottom: 40px; /* Add bottom margin between sections */
}

.about-main-wrapper .sb-about-section h5 {
    margin-bottom: 20px !important; /* Increased spacing after header */
    margin-top: 10px !important; /* Add top margin for better separation */
}

.about-main-wrapper .sb-about-section .content {
    padding: 30px 20px; /* Add internal padding to content sections */
}

.about-main-wrapper .sb-about-section .icon {
    margin-bottom: 15px; /* Add space after icon */
    margin-right: 15px !important; /* Increased from 10px to 15px */
}

/* Responsive adjustments for about section spacing */
@media (max-width: 991px) {
    .about-main-wrapper .sb-about-section {
        padding: 80px 0 !important;
    }
    
    .about-main-wrapper .sb-about-section .col-lg-4 {
        margin-bottom: 50px; /* More space on smaller screens */
    }
}

@media (max-width: 768px) {
    .about-main-wrapper .sb-about-section {
        padding: 60px 0 !important;
    }
    
    .about-main-wrapper .sb-about-section .col-lg-4 {
        margin-bottom: 45px;
    }
    
    .about-main-wrapper .sb-about-section .content {
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .about-main-wrapper .sb-about-section {
        padding: 50px 0 !important;
    }
    
    .about-main-wrapper .sb-about-section .col-lg-4 {
        margin-bottom: 40px;
    }
}

/* About Section Header Alignment Fixes */
.about-main-wrapper .sb-about-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left align everything */
    text-align: left; /* Ensure left text alignment */
    min-height: 200px; /* Consistent height for all sections */
}

.about-main-wrapper .sb-about-section .icon {
    margin-bottom: 20px !important; /* Consistent spacing after icon */
    margin-right: 0 !important; /* Remove right margin */
    width: 100%; /* Full width for better control */
    display: flex;
    justify-content: flex-start; /* Left align icon */
}

.about-main-wrapper .sb-about-section .icon svg {
    width: 50px !important; /* Consistent icon size */
    height: 50px !important;
    margin: 0; /* Remove any extra margins */
}

.about-main-wrapper .sb-about-section .content {
    width: 100%;
    text-align: left !important; /* Force left alignment */
    padding: 0 !important; /* Remove padding to fix indentation */
}

.about-main-wrapper .sb-about-section h5 {
    font-size: 20px !important; /* Consistent font size */
    line-height: 1.4 !important; /* Better line height for multi-line headers */
    margin-bottom: 15px !important;
    margin-top: 0 !important;
    text-align: left !important;
    padding: 0 !important; /* Remove any padding */
    text-indent: 0 !important; /* Remove any text indentation */
    color: #333 !important;
    font-weight: 600 !important;
    word-wrap: break-word; /* Handle long text properly */
    hyphens: auto; /* Allow hyphenation for long words */
}

.about-main-wrapper .sb-about-section p {
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    text-indent: 0 !important;
    color: #666 !important;
    line-height: 1.6 !important;
    font-size: 14px !important;
}

/* Fix any Bootstrap column alignment issues */
.about-main-wrapper .row {
    align-items: stretch; /* Make all columns same height */
}

.about-main-wrapper .col-lg-4 {
    display: flex;
    flex-direction: column;
}

/* Responsive adjustments for header alignment */
@media (max-width: 991px) {
    .about-main-wrapper .sb-about-section h5 {
        font-size: 18px !important;
    }
    
    .about-main-wrapper .sb-about-section {
        min-height: 180px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .about-main-wrapper .sb-about-section h5 {
        font-size: 17px !important;
        line-height: 1.3 !important;
    }
    
    .about-main-wrapper .sb-about-section {
        min-height: 160px;
        text-align: center !important; /* Center on mobile for better appearance */
    }
    
    .about-main-wrapper .sb-about-section .icon {
        justify-content: center; /* Center icon on mobile */
    }
    
    .about-main-wrapper .sb-about-section .content,
    .about-main-wrapper .sb-about-section h5,
    .about-main-wrapper .sb-about-section p {
        text-align: center !important; /* Center text on mobile */
   }
}

@media (max-width: 480px) {
    .about-main-wrapper .sb-about-section h5 {
        font-size: 16px !important;
    }
    
    .about-main-wrapper .sb-about-section {
        min-height: 140px;
    }
}

/* FAQ Section Styling */
.faq-main-wrapper {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.sb-faq-section h6 {
    color: #e12454;
    font-weight: 600;
    margin-bottom: 10px;
}

.sb-faq-section h5 {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sb-faq-section p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Custom Accordion Styling */
.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
    background-color: #fff;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
    text-align: left;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background-color: #e12454;
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-body {
    padding: 25px;
    background-color: #fff;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* ===== MODERN PRICING SECTION STYLES ===== */
.pricing-main-wrapper {
    background-color: #ffffff;
    padding: 80px 0;
}

.sb-pricing-section {
    margin-bottom: 25px !important;
    padding-left: 0 !important;
    text-align: left !important;
}

.sb-pricing-section h6.home1-section-heading1 {
    color: #e12454;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left !important;
    display: block;
    line-height: 1.2;
}

.sb-pricing-section h5.home1-section-heading2 {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    line-height: 1.2;
    text-align: left !important;
    display: block;
}

.pricing-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 500;
    text-align: left !important;
    display: block;
    line-height: 1.4;
}

/* Left side - Text content */
.pricing-text-content {
    padding-right: 30px;
    margin-top: 15px;
}

.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.pricing-feature-item i {
    font-size: 20px;
    color: #e12454;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-feature-item h6 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Right side - Modern pricing card */
.pricing-card-modern {
    background: #fff;
    border: 2px solid #e12454;
    border-radius: 12px;
    padding: 40px 35px;
    box-shadow: 0 12px 35px rgba(225, 36, 84, 0.15);
    width: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 20px;
}

.pricing-header-modern {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-header-modern h4 {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.pricing-amount-modern {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.pricing-amount-modern .currency {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-right: 2px;
}

.pricing-amount-modern .amount {
    font-size: 48px !important;
    font-weight: 700 !important;
    color: #333;
    line-height: 1;
}

.pricing-period {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.pricing-features-modern {
    flex-grow: 1;
    margin-bottom: 30px;
}

.pricing-features-modern h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 25px;
    margin-bottom: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-item i {
    font-size: 14px;
    color: #e12454;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    font-weight: 500;
}

.pricing-cta-modern {
    text-align: center;
    margin-top: auto;
}

.pricing-btn-modern {
    display: block;
    width: 100%;
    background-color: #333;
    color: white;
    text-decoration: none;
    padding: 18px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.pricing-btn-modern:hover {
    background-color: #e12454;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 36, 84, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .pricing-text-content {
        padding-right: 15px;
        margin-bottom: 40px;
        margin-top: 10px;
    }
    
    .pricing-card-modern {
        min-height: 420px;
        padding: 35px 30px;
        margin-top: 15px;
    }
    
    .pricing-amount-modern .amount {
        font-size: 50px;
    }
    
    .sb-pricing-section h5.home1-section-heading2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .pricing-main-wrapper {
        padding: 60px 0;
    }
    
    .pricing-text-content {
        padding-right: 0;
        margin-bottom: 30px;
        margin-top: 5px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pricing-amount-modern .amount {
        font-size: 44px;
    }
    
    .pricing-card-modern {
        padding: 30px 25px;
        min-height: 400px;
        margin-top: 10px;
    }
    
    .pricing-features-modern h5 {
        font-size: 16px;
    }
    
    .feature-item span {
        font-size: 13px;
    }
    
    .sb-pricing-section h5.home1-section-heading2 {
        font-size: 28px;
    }
    
    .sb-pricing-section h6.home1-section-heading1 {
        font-size: 14px;
    }
}

/* ===== WHATSAPP CHAT BUTTON STYLES ===== */
#whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #20c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

#whatsapp-chat:hover {
    background: linear-gradient(135deg, #20c55e 0%, #25d366 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

#whatsapp-chat i {
    line-height: 1;
    margin: 0;
    padding: 0;
}

/* Hide the old return-to-top button */
#return-to-top {
    display: none !important;
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    #whatsapp-chat {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    #whatsapp-chat {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }
}

/* ===== ABOUT SERVICES LIST STYLING ===== */
.about-services-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-services-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

.about-services-list li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #e12454;
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .about-services-list li {
        font-size: 17px;
        margin-bottom: 18px;
    }
    
    .about-services-list li::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
        margin-right: 12px;
    }
}

/* ===== END ABOUT SERVICES LIST STYLING ===== */

/* ===== EMERGENCY SECTION RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .emergency-main-wrapper {
        background-position: center !important;
        min-height: auto;
        padding: 80px 0;
    }
    
    .emergency-main-wrapper::before {
        background: rgba(255, 255, 255, 0.9);
    }
    
    .sb-emergency-main-wrapper {
        margin-top: 0;
        padding: 18px 15px;
        max-width: 95%;
    }
    
    .sb-emergency-main-wrapper .content h4 {
        font-size: 24px !important;
    }
    
    .sb-emergency-main-wrapper .content span i {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .emergency-main-wrapper {
        padding: 50px 0;
        min-height: auto;
    }
    
    .sb-emergency-main-wrapper {
        padding: 12px 10px;
        max-width: 95%;
        border-radius: 10px;
    }
    
    .sb-emergency-main-wrapper .content {
        margin-bottom: 15px;
    }
    
    .sb-emergency-main-wrapper .content h4 {
        font-size: 20px !important;
        margin-bottom: 5px;
    }
    
    .sb-emergency-main-wrapper .content span i {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .emergency-form .form-group {
        margin-bottom: 0.3rem;
    }
    
    .emergency-form .form-control {
        padding: 6px 8px !important;
        font-size: 12px !important;
        height: 35px !important;
    }
    
    .emergency-form label {
        font-size: 12px;
        margin-bottom: 2px;
    }
    
    /* Removed problematic button styling - now handled by comprehensive button fixes above */
}

@media (max-width: 480px) {
    .emergency-main-wrapper {
        padding: 40px 0;
    }
    
    .sb-emergency-main-wrapper {
        padding: 15px 12px;
        max-width: 95%;
        border-radius: 12px;
    }
    
    .sb-emergency-main-wrapper .content {
        margin-bottom: 15px;
    }
    
    .sb-emergency-main-wrapper .content h4 {
        font-size: 20px !important;
        margin-bottom: 8px;
    }
    
    .sb-emergency-main-wrapper .content span i {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .emergency-form .form-group {
        margin-bottom: 0.75rem;
    }
    
    .emergency-form .form-control {
        padding: 12px 15px !important;
        font-size: 14px !important;
        height: 48px !important;
    }
    
    .emergency-form label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    /* Button styling now handled by comprehensive fixes above */
    
    .emergency-form .row .col-md-6,
    .emergency-form .row .col-md-12 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 360px) {
    .sb-emergency-main-wrapper {
        padding: 12px 10px;
        max-width: 98%;
        border-radius: 10px;
    }
    
    .sb-emergency-main-wrapper .content h4 {
        font-size: 18px !important;
    }
    
    .sb-emergency-main-wrapper .content span i {
        font-size: 22px;
    }
    
    .emergency-form .form-control {
        padding: 10px 12px !important;
        font-size: 13px !important;
        height: 44px !important;
    }
    
    .emergency-form label {
        font-size: 12px;
    }
    
    /* Button styling now handled by comprehensive fixes above */
}

/* ===== FOOTER LAYOUT IMPROVEMENTS ===== */
.footer-main-wrapper .sb-footer-section .footer-logo {
   padding-bottom: 25px;
}

.footer-main-wrapper .sb-footer-section .footer-logo img {
   max-width: 120px;
   height: auto;
   width: auto;
   display: block;
}

.footer-main-wrapper .sb-footer-section {
   padding-right: 20px;
}

.footer-main-wrapper .sb-footer-section ul li {
   padding-bottom: 12px;
   display: flex;
   align-items: flex-start;
}

.footer-main-wrapper .sb-footer-section ul li a {
   display: flex;
   align-items: flex-start;
   color: #fff;
   line-height: 1.5;
   font-size: 14px;
}

.footer-main-wrapper .sb-footer-section ul li a i {
   padding-right: 15px;
   margin-top: 2px;
   font-size: 16px;
   color: #e12454;
   min-width: 20px;
}

.footer-main-wrapper h4 {
   font-size: 20px;
   padding-bottom: 20px;
   color: #fff;
   margin-bottom: 0;
}

.footer-main-wrapper .links ul li {
   padding-bottom: 8px;
}

.footer-main-wrapper .links ul li a {
   color: #fff;
   font-size: 14px;
   transition: all 0.3s ease;
}

.footer-main-wrapper .links ul li a i {
   padding-right: 8px;
   color: #e12454;
   font-size: 12px;
}

.footer-main-wrapper .time-wrapper {
   display: flex;
   justify-content: space-between;
   gap: 30px;
}

.footer-main-wrapper .time-wrapper > div {
   flex: 1;
}

.footer-main-wrapper .time-wrapper ul li {
   padding-bottom: 8px;
   color: #fff;
   font-size: 14px;
}

.footer-main-wrapper .sb-footer-section ul li .footer-media {
   display: flex;
   justify-content: flex-start;
   margin-top: 10px;
   gap: 15px;
}

.footer-main-wrapper .sb-footer-section ul li .footer-media li {
   padding-right: 0;
}

.footer-main-wrapper .sb-footer-section ul li .footer-media li a {
   width: 38px;
   height: 38px;
   text-align: center;
   font-size: 16px;
   line-height: 38px;
   display: block;
   border-radius: 50%;
   position: relative;
   overflow: hidden;
   border: 1px solid rgba(255, 255, 255, 0.3);
   z-index: 1;
   transition: all 0.3s ease;
}

.footer-main-wrapper .sb-footer-section ul li .footer-media li a:hover {
   border-color: #e12454;
   transform: translateY(-2px);
}

/* ===== FOOTER RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 991px) {
   .footer-main-wrapper .time-wrapper {
      flex-direction: column;
      gap: 20px;
   }
   
   .footer-main-wrapper .sb-footer-section .footer-logo img {
      max-width: 100px;
   }
   
   .footer-main-wrapper h4 {
      font-size: 18px;
      padding-bottom: 15px;
   }
}

@media (max-width: 768px) {
   .footer-main-wrapper .sb-footer-section {
      padding-right: 0;
      margin-bottom: 30px;
   }
   
   .footer-main-wrapper .sb-footer-section .footer-logo {
      text-align: center;
      padding-bottom: 20px;
   }
   
   .footer-main-wrapper .sb-footer-section .footer-logo img {
      max-width: 90px;
      margin: 0 auto;
   }
   
   .footer-main-wrapper .links,
   .footer-main-wrapper .time-wrapper {
      text-align: center;
   }
   
   .footer-main-wrapper .time-wrapper {
      justify-content: center;
      gap: 30px;
   }
   
   .footer-main-wrapper .sb-footer-section ul li .footer-media {
      justify-content: center;
   }
}

@media (max-width: 480px) {
   .footer-main-wrapper .sb-footer-section .footer-logo img {
      max-width: 80px;
   }
   
   .footer-main-wrapper .time-wrapper {
      flex-direction: column;
      gap: 20px;
   }
   
   .footer-main-wrapper h4 {
      font-size: 16px;
   }
   
   .footer-main-wrapper .sb-footer-section ul li a,
   .footer-main-wrapper .links ul li a,
   .footer-main-wrapper .time-wrapper ul li {
      font-size: 13px;
   }
}

/* ===== ENHANCED BRANDING & TYPOGRAPHY ===== */
.mobile-brand-name, .sidebar-brand-name {
   font-size: 22px !important;
   font-weight: 600 !important;
   color: #e12454 !important;
}

.mobile-swift-logo, .sidebar-swift-logo {
   max-height: 45px !important;
   width: auto !important;
}

.hero-description {
   font-size: 22px !important;
   line-height: 1.7 !important;
   font-weight: 400 !important;
}

.card-subtitle {
   font-size: 16px !important;
   font-weight: 500 !important;
}

/* Updated hero title typography for uppercase emphasis */
.hero-title {
   font-size: 58px !important;
   font-weight: 700 !important;
   letter-spacing: 1px !important;
}

/* Enhanced form styling for new address fields */
.form-control {
   border-radius: 8px !important;
   border: 2px solid #e9ecef !important;
   padding: 12px 15px !important;
   font-size: 15px !important;
   transition: all 0.3s ease !important;
}

.form-control:focus {
   border-color: #e12454 !important;
   box-shadow: 0 0 0 0.2rem rgba(225, 36, 84, 0.15) !important;
}

select.form-control {
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
   background-position: right 12px center !important;
   background-repeat: no-repeat !important;
   background-size: 16px 12px !important;
   padding-right: 40px !important;
}

/* Enhanced pricing section styling */
.pricing-header-modern h4 {
   font-size: 24px !important;
   font-weight: 600 !important;
   color: #2c3e50 !important;
}

.pricing-amount-modern .amount {
   font-size: 48px !important;
   font-weight: 700 !important;
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
   .swift-logo, .mobile-swift-logo, .sidebar-swift-logo {
      max-height: 38px !important;
   }
   
   .brand-name, .mobile-brand-name, .sidebar-brand-name {
      font-size: 18px !important;
   }
   
   .hero-description {
      font-size: 19px !important;
   }
   
   .hero-title {
      font-size: 42px !important;
   }
}

@media (max-width: 480px) {
   .swift-logo, .mobile-swift-logo, .sidebar-swift-logo {
      max-height: 32px !important;
   }
   
   .brand-name, .mobile-brand-name, .sidebar-brand-name {
      font-size: 16px !important;
   }
   
   .hero-description {
      font-size: 17px !important;
   }
   
   .hero-title {
      font-size: 36px !important;
   }
}

/* ===== SERVICE CARD ENHANCEMENTS ===== */
.slider-service-section .owl-carousel {
    margin-top: 30px;
}

.slider-box {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.slider-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(225, 36, 84, 0.15);
}

.slider-box h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px 0;
    line-height: 1.3;
    color: #2c3e50;
}

.slider-box p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 20px;
}

/* Mobile Menu Styles */
#sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    overflow-y: auto;
}

#sidebar.opened {
    right: 0;
}

#toggle_close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #e12454;
    z-index: 100;
    height: 25px;
    width: 25px;
    text-align: center;
    border-radius: 50px;
}

/* Sidebar Content Styles - Moved from style.css for consolidation */
#sidebar .sidebar_logo {
    float: left;
    width: 100%;
    padding: 24px;
}

#sidebar #cssmenu {
    width: 280px;
}

#sidebar #cssmenu ul li {
    border-bottom: 1px solid #aaa;
    position: relative;
}

#sidebar #cssmenu ul li a {
    padding: 10px 20px;
    display: inline-block;
    width: 100%;
    color: #222222;
    text-transform: capitalize;
}

#sidebar #cssmenu ul li .social-icon {
    display: flex !important;
    justify-content: space-evenly;
    margin-top: 20px;
}

#sidebar #cssmenu ul li .social-icon li {
    border: none;
    width: 47px;
    height: 46px;
    background: #ffd9db;
    line-height: 26px;
    border-radius: 50%;
    text-align: center;
}

#sidebar #cssmenu ul li .social-icon li a {
    color: #e12454;
    display: inline-block;
    padding: 10px 0px;
}

/* Navigation Active State */
.navbar-nav .nav-link.active {
    color: #f7f1f3 !important;

}

/* Mobile Menu Toggle Button */
#sidebar-toggle {
    cursor: pointer;
    padding: 10px;
}

#sidebar-toggle .line {
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 6px 0;
    display: block;
    transition: all 0.3s ease;
}



/* Responsive Adjustments */
@media (max-width: 991px) {
    .menu-items-wrapper {
        display: none !important;
    }
    
    .mobile-menu-wrapper {
        display: block !important;
    }

    .mobile-menu-wrapper .row {
        align-items: center !important;
    }
}

.mobile-menu-wrapper {
    background-color: #ffffff !important;
    color: #333333;
}

.mobile-menu-wrapper .nav-link {
    color: #333333 !important;
}

/* Hero section adjustments */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: auto 100%;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        background-size: contain;
        background-position: top center;
        padding-top: 0;
    }

    .hero-section .container {
        position: relative;
        padding: 20px;
        margin-top: 45vh;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        background-size: contain;
    }
    
    .hero-section .container {
        margin-top: 40vh;
    }
}

/* Ensure content stays properly positioned */
@media (max-width: 576px) {
    .hero-section {
        padding-top: 80%;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Return to Top Button */
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e12454;
    width: 50px;
    height: 50px;
    text-decoration: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
}

#return-to-top i {
    color: #fff;
    font-size: 20px;
}

#return-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(225, 36, 84, 0.4);
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
.contact-hero.banner-section-wrapper {
   display: none !important;
}

.form-main-wrapper {
   padding: 80px 0;
   background: #f8f9fa;
}

.social-media-section {
   background: white;
   border-radius: 20px;
   padding: 40px 30px;
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
   height: fit-content;
   position: sticky;
   top: 120px;
}

.contact-info-header h5 {
   color: #2c3e50;
   font-size: 24px;
   font-weight: 700;
   margin-bottom: 15px;
}

.contact-info-header p {
   color: #666;
   font-size: 16px;
   line-height: 1.6;
   margin-bottom: 0;
}

.social-media-section section {
   display: flex;
   align-items: flex-start;
   gap: 20px;
   padding: 25px 0;
   border-bottom: 1px solid #f0f0f0;
}

.social-media-section section:last-child {
   border-bottom: none;
   margin-bottom: 0;
}

.social-media-section section span {
   background: linear-gradient(135deg, #e12454 0%, #ff6b9d 100%);
   color: white;
   width: 50px;
   height: 50px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   flex-shrink: 0;
   box-shadow: 0 8px 20px rgba(225, 36, 84, 0.3);
}

.social-media-section section div h6 {
   color: #2c3e50;
   font-size: 18px;
   font-weight: 600;
   margin-bottom: 8px;
}

.social-media-section section div p {
   color: #e12454;
   font-size: 16px;
   font-weight: 600;
   margin-bottom: 5px;
}

.social-media-section section div small {
   color: #666;
   font-size: 14px;
   display: block;
   line-height: 1.4;
}

.form-section {
   background: white;
   border-radius: 20px;
   padding: 40px;
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-section h6 {
   color: #eef0f3;
   font-size: 28px;
   font-weight: 700;
   margin-bottom: 15px;
}

.form-description {
   color: #666;
   font-size: 16px;
   line-height: 1.6;
}

.contact-form .form-control {
   border: 2px solid #e9ecef;
   border-radius: 12px;
   padding: 15px 20px;
   font-size: 16px;
   transition: all 0.3s ease;
}

.contact-form .form-control:focus {
   border-color: #e12454;
   box-shadow: 0 0 0 0.2rem rgba(225, 36, 84, 0.1);
}

.contact-form .input-group-text {
   background: #f8f9fa;
   border: 2px solid #e9ecef;
   border-left: none;
   border-radius: 0 12px 12px 0;
   color: #666;
}

.contact-form .form-control:focus + .input-group-text {
   border-color: #e12454;
   color: #e12454;
}

.contact-form textarea.form-control {
   resize: vertical;
   min-height: 120px;
}

.contact-form select.form-control {
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
   background-position: right 12px center !important;
   background-repeat: no-repeat !important;
   background-size: 16px 12px !important;
   padding-right: 40px !important;
}

.checkbox-wrap {
   display: flex;
   align-items: center;
   gap: 12px;
   margin: 15px 0;
}

.checkbox-wrap input[type="checkbox"] {
   margin: 0;
   transform: scale(1.2);
   accent-color: #e12454;
   flex-shrink: 0;
}

.checkbox-wrap label {
   color: #666;
   font-size: 14px;
   line-height: 1.5;
   cursor: pointer;
   margin: 0;
}

.checkbox-wrap label a {
   color: #e12454;
   text-decoration: underline;
}

.map-area {
   margin-top: 0;
}

.map-area iframe {
   border-radius: 20px 20px 0 0;
   border: none;
}

/* ===== RESPONSIVE CONTACT PAGE ===== */
@media (max-width: 991px) {
    .contact-hero.banner-section-wrapper {
        min-height: 60vh !important;
    }
    
    .contact-hero .hero-card-container {
        min-height: 60vh;
        padding: 0 3%;
    }
    
    .form-main-wrapper {
        padding: 60px 0;
    }
    
    .social-media-section {
        margin-bottom: 40px;
        position: static;
    }
    
    .form-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero.banner-section-wrapper {
        min-height: 50vh !important;
    }
    
    .contact-hero .hero-card-container {
        min-height: 50vh;
        padding: 0 2%;
    }
    
    .social-media-section {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .social-media-section section {
        padding: 20px 0;
    }
    
    .social-media-section section span {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .form-section {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .form-section h6 {
        font-size: 24px;
    }
    
    .contact-form .form-control {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .contact-hero .hero-content-card .card-body {
        padding: 30px 25px;
    }
    
    .social-media-section {
        padding: 25px 15px;
    }
    
    .social-media-section section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .form-section {
        padding: 20px 15px;
    }
    
    .contact-form .input-group {
        flex-direction: column;
    }
    
    .contact-form .input-group-text {
        border-radius: 12px;
        border: 2px solid #e9ecef;
        margin-top: 5px;
        justify-content: center;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero.banner-section-wrapper {
   background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/Picture 1 (5).jpg') no-repeat center center;
   background-size: cover;
   min-height: 60vh;
}

.about-content-wrapper {
   padding: 80px 0;
}

.about-image-section {
   position: relative;
   margin-bottom: 40px;
}

.experience-badge {
   position: absolute;
   bottom: -20px;
   right: 30px;
   background: #e12454;
   color: white;
   padding: 20px;
   border-radius: 10px;
   text-align: center;
}

.experience-badge .years {
   font-size: 36px;
   font-weight: bold;
   display: block;
   line-height: 1;
}

.about-content-section h2 {
   color: #2c3e50;
   margin-bottom: 25px;
   font-size: 36px;
}

.about-content-section h3 {
   color: #2c3e50;
   margin: 30px 0 15px;
   font-size: 24px;
}

.values-list {
   list-style: none;
   padding: 0;
}

.values-list li {
   margin-bottom: 15px;
   font-size: 16px;
}

.values-list li i {
   color: #e12454;
   margin-right: 10px;
}

.feature-box {
   background: white;
   padding: 30px;
   border-radius: 10px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   margin-bottom: 30px;
   transition: all 0.3s ease;
}

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

.feature-box i {
   font-size: 40px;
   color: #e12454;
   margin-bottom: 20px;
}

.feature-box h4 {
   color: #2c3e50;
   margin-bottom: 15px;
}

.team-member {
   text-align: center;
   margin-bottom: 30px;
}

.team-member img {
   width: 150px;
   height: 150px;
   margin-bottom: 20px;
   border: 5px solid #f8f9fa;
   transition: all 0.3s ease;
}

.team-member:hover img {
   border-color: #e12454;
}

.team-member h4 {
   color: #2c3e50;
   margin-bottom: 5px;
}

.team-member p {
   color: #666;
}

/* ===== TERMS & PRIVACY PAGE STYLES ===== */
.terms-hero.banner-section-wrapper,
.privacy-hero.banner-section-wrapper {
   background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/Picture 1 (5).jpg') no-repeat center center;
   background-size: cover;
   min-height: 50vh;
}

.terms-content-wrapper,
.privacy-content-wrapper {
   padding: 80px 0;
   background: #f8f9fa;
}

.terms-content,
.privacy-content {
   background: white;
   padding: 40px;
   border-radius: 20px;
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.terms-section,
.privacy-section {
   margin-bottom: 40px;
}

.terms-section:last-child,
.privacy-section:last-child {
   margin-bottom: 0;
}

.terms-section h2,
.privacy-section h2 {
   color: #2c3e50;
   font-size: 24px;
   margin-bottom: 20px;
   padding-bottom: 10px;
   border-bottom: 2px solid #e12454;
}

.terms-section p,
.privacy-section p {
   color: #666;
   line-height: 1.8;
   margin-bottom: 20px;
}

.terms-section ul,
.privacy-section ul {
   list-style: none;
   padding-left: 20px;
}

.terms-section ul li,
.privacy-section ul li {
   position: relative;
   padding-left: 25px;
   margin-bottom: 15px;
   color: #666;
}

.terms-section ul li:before,
.privacy-section ul li:before {
   content: "\f105";
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   position: absolute;
   left: 0;
   color: #e12454;
}

.last-updated {
   font-style: italic;
   color: #999;
   text-align: right;
   margin-top: 40px;
   border-top: 1px solid #eee;
   padding-top: 20px;
}

/* ===== CTA SECTION STYLES ===== */
.cta-section {
   background: linear-gradient(rgba(225, 36, 84, 0.9), rgba(225, 36, 84, 0.9)), url('../images/Picture 1 (5).jpg') no-repeat center center;
   background-size: cover;
   padding: 80px 0;
   color: white;
   text-align: center;
   margin-top: 60px;
}

.cta-section h2 {
   font-size: 36px;
   margin-bottom: 20px;
}

.cta-section p {
   font-size: 18px;
   margin-bottom: 30px;
   opacity: 0.9;
}

.cta-section .button-btn {
   background: white;
   color: #e12454;
   padding: 15px 30px;
   border-radius: 50px;
   text-decoration: none;
   font-weight: bold;
   display: inline-block;
   transition: all 0.3s ease;
}

.cta-section .button-btn:hover {
   background: #2c3e50;
   color: white;
   transform: translateY(-3px);
}

.cta-section .button-btn span {
   margin-left: 10px;
} 

.about-us {
    padding: 20px 0;
}

.about-us h6 {
    margin-bottom: 8px;
    color: #e42564;
}

.about-us h2 {
    margin-bottom: 12px;
    line-height: 1.3;
}

.about-us ul {
    margin-top: 12px;
    padding-left: 0;
}

.about-us ul li {
    margin-bottom: 6px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    padding-left: 25px;
    position: relative;
}

.about-us ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 15px;
    height: 15px;
    background-color: #e42564;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

@media (max-width: 768px) {
    .about-us {
        padding: 15px 0;
    }
    
    .about-us ul li {
        margin-bottom: 5px;
        font-size: 0.95em;
    }
    
    .about-us ul li::before {
        top: 5px;
        width: 12px;
        height: 12px;
    }
} 

.about-main-wrapper {
    padding: 20px 0 !important;
    margin: 0 !important;
}

.about-main-wrapper .sb-about-section {
    padding: 20px !important;
    margin-bottom: 15px !important;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-main-wrapper .sb-about-section .content {
    margin-top: 15px !important;
    padding: 0 !important;
}

.about-main-wrapper .sb-about-section h5 {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 !important;
    color: #e12454;
}

@media (max-width: 768px) {
    .about-main-wrapper {
        padding: 15px 0 !important;
    }
    
    .about-main-wrapper .sb-about-section {
        padding: 15px !important;
        margin-bottom: 10px !important;
    }
    
    .about-main-wrapper .sb-about-section h5 {
        font-size: 16px;
    }
}

/* Force override any conflicting styles */
.about-main-wrapper .row.plr-50 {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 !important;
}

.about-main-wrapper .col-lg-4,
.about-main-wrapper .col-md-4,
.about-main-wrapper .col-sm-12 {
    padding: 10px !important;
}

/* About Section Styles - High Specificity Override */
.about-main-wrapper {
    padding: 20px 0 !important;
    margin: 0 !important;
}

.about-main-wrapper .sb-about-section {
    padding: 20px !important;
    margin-bottom: 15px !important;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-main-wrapper .about-content {
    padding: 0 !important;
}

.about-main-wrapper .about-content .about-intro-text {
    padding: 10px 0 !important;
    margin: 0 0 15px 0 !important;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.about-main-wrapper .about-content h4 {
    margin-bottom: 15px !important;
    color: #e12454;
    font-size: 28px;
    line-height: 1.3;
}

.about-main-wrapper .about-content .about-services-list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.about-main-wrapper .about-content .about-services-list li {
    position: relative;
    padding: 8px 0 8px 30px !important;
    margin: 0 !important;
    font-size: 15px;
    line-height: 1.5;
}

.about-main-wrapper .about-content .about-services-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e12454;
    font-weight: bold;
}

@media (max-width: 768px) {
    .about-main-wrapper {
        padding: 15px 0 !important;
    }
    
    .about-main-wrapper .about-content h4 {
        font-size: 26px;
    }
    
    .about-main-wrapper .about-content .about-intro-text {
        font-size: 17px;
        padding: 8px 0 !important;
    }
    
    .about-main-wrapper .about-content .about-services-list li {
        font-size: 16px;
        padding: 6px 0 6px 25px !important;
    }
}

/* Reset About Section Spacing */
.image-about-wrapper {
    padding: 0 !important;
    margin: 0 !important;
}

.image-about-wrapper .row.plr-50 {
    padding: 0 15px !important;
    margin: 0 !important;
}

.image-about-wrapper .about-content {
    padding: 20px !important;
    margin: 0 !important;
}

.image-about-wrapper .about-content h6 {
    margin-bottom: 10px !important;
}

.image-about-wrapper .about-content h4 {
    margin-bottom: 15px !important;
    font-size: 28px;
    line-height: 1.3;
    color: #e12454;
}

.image-about-wrapper .about-content .about-intro-text {
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.image-about-wrapper .about-content .about-services-list {
    margin: 5px !important;
    padding: 0 !important;
    list-style: none;
}

.image-about-wrapper .about-content .about-services-list li {
    margin: 0 0 10px 0 !important;
    padding-left: 25px !important;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}

.image-about-wrapper .about-content .about-services-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #e12454;
    font-weight: bold;
}

@media (max-width: 768px) {
    .image-about-wrapper .row.plr-50 {
        padding: 0 10px !important;
    }
    
    .image-about-wrapper .about-content {
        padding: 15px !important;
    }
    
    .image-about-wrapper .about-content h4 {
        font-size: 26px;
    }
    
    .image-about-wrapper .about-content .about-intro-text {
        font-size: 17px;
    }
    
    .image-about-wrapper .about-content .about-services-list li {
        font-size: 16px;
        margin-bottom: 8px !important;
    }
}

/* Contact Form Mobile Fixes */
.form-main-wrapper {
    padding: 40px 0;
}

.form-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-form .input-group {
    position: relative;
    width: 100%;
}

.contact-form .input-group-text {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: transparent;
    border: none;
    color: #e12454;
    z-index: 4;
}

.contact-form .form-control {
    padding: 12px 40px 12px 15px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #e12454;
    box-shadow: 0 0 0 0.2rem rgba(225, 36, 84, 0.15);
}

.contact-form textarea.form-control {
    min-height: 120px;
    padding: 15px;
}

.contact-form select.form-control {
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23e12454' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
}

.checkbox-wrap {
    margin: 15px 0;
}

.checkbox-wrap input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-wrap label {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .form-main-wrapper {
        padding: 20px 0;
    }

    .form-section {
        padding: 20px;
        margin: 0 15px;
    }

    .contact-form .input-group {
        margin-bottom: 15px;
    }

    .contact-form .form-control {
        font-size: 14px;
        padding: 10px 35px 10px 12px;
    }

    .contact-form textarea.form-control {
        min-height: 100px;
    }

    .checkbox-wrap {
        margin: 10px 0;
    }

    .checkbox-wrap label {
        font-size: 13px;
    }
}

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

    .contact-form .input-group {
        margin-bottom: 12px;
    }

    .contact-form .form-control {
        font-size: 13px;
        padding: 8px 30px 8px 10px;
    }

    .contact-form .input-group-text {
        font-size: 14px;
        padding: 0 10px;
    }

    .checkbox-wrap label {
        font-size: 12px;
    }
}

/* Contact Form Styles - High Specificity Override */
.form-main-wrapper .form-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin: 40px 0;
}

.form-main-wrapper .contact-form .input-group {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    min-height: 50px;
    margin-bottom: 20px;
    position: relative;
}

.form-main-wrapper .contact-form .form-control {
    width: 100%;
    height: 50px !important;
    padding: 10px 45px 10px 15px !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    transition: all 0.3s ease !important;
}

.form-main-wrapper .contact-form textarea.form-control {
    height: 120px !important;
    padding: 15px !important;
    resize: vertical;
}

.form-main-wrapper .contact-form .input-group-text {
    position: absolute;
    right: 15px;
    background: transparent !important;
    border: none !important;
    color: #e12454;
    padding: 0 !important;
    z-index: 4;
}

.form-main-wrapper .contact-form .form-control:focus {
    border-color: #e12454 !important;
    box-shadow: 0 0 0 0.2rem rgba(225, 36, 84, 0.15) !important;
}

.form-main-wrapper .contact-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23e12454' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 45px !important;
}

.form-main-wrapper .checkbox-wrap {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-main-wrapper .checkbox-wrap input[type="checkbox"] {
    margin: 0;
    transform: scale(1.2);
    accent-color: #e12454;
    flex-shrink: 0;
}

.form-main-wrapper .checkbox-wrap label {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .form-main-wrapper .form-section {
        padding: 20px;
        margin: 20px 15px;
    }

    .form-main-wrapper .contact-form .form-control {
        height: 45px !important;
        font-size: 15px !important;
    }

    .form-main-wrapper .contact-form textarea.form-control {
        height: 100px !important;
    }

    .form-main-wrapper .checkbox-wrap label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .form-main-wrapper .form-section {
        padding: 15px;
        margin: 15px 10px;
    }

    .form-main-wrapper .contact-form .form-control {
        height: 40px !important;
        font-size: 14px !important;
        padding: 8px 40px 8px 12px !important;
    }

    .form-main-wrapper .contact-form .input-group-text {
        right: 12px;
        font-size: 14px;
    }

    .form-main-wrapper .checkbox-wrap {
        margin: 10px 0;
    }

    .form-main-wrapper .checkbox-wrap label {
        font-size: 12px;
    }
}

.mid-header-section {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}
.menu-items-wrapper {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

@media (max-width: 767px) {
  .about-content .home1-section-heading1,
  .image-about-wrapper .about-content .home1-section-heading1,
  .about-main-wrapper .about-content .home1-section-heading1 {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #e12454 !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }
  /* Footer address fix: ensure no ADDRESS label */
  .footer-main-wrapper .sb-footer-section ul li a i.fa-map-marker-alt + br + * {
    font-size: 16px !important;
    color: #333 !important;
    font-style: normal !important;
  }
}

@media (max-width: 767px) {
  .sb-service-section .home1-section-heading1,
  .services-main-wrapper .home1-section-heading1,
  .slider-service-section .home1-section-heading1 {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #e12454 !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }
}

/* ===== HOW SWIFTCARE WORKS SECTION ===== */
/* How It Works Section Styles */
.how-it-works-main-wrapper {
    padding: 80px 0;
    background: #f8f9fa;
}

.how-it-works-main-wrapper .row {
    display: flex;
    align-items: stretch;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 40px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #e12454;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    box-shadow: 0 5px 15px rgba(225, 36, 84, 0.3);
}

.step-icon {
    margin: 30px 0 20px 0;
}

.step-icon svg {
    width: 60px;
    height: 60px;
}

.step-icon-fill {
    fill: #e12454;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
}

.step-features {
    margin-top: auto;
    padding-top: 20px;
}

.feature-tag {
    display: inline-block;
    background: #e12454;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    margin: 3px;
}

@media (max-width: 768px) {
    .step-card {
        margin-bottom: 30px;
        min-height: 350px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 14px;
    }
}

/* ===== COMPREHENSIVE BUTTON FIXES FOR ALL PAGES ===== */
/* Fix for submit button icon display and mobile responsiveness */
.button-btn {
    position: relative;
    display: inline-block;
    background-color: #e12454 !important;
    color: #fff !important;
    padding: 12px 60px 12px 25px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    line-height: 1.2 !important;
    min-height: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.button-btn::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #b3183f !important;
    transition: all 0.3s ease !important;
    z-index: -1 !important;
}

.button-btn:hover::before {
    left: 0 !important;
}

.button-btn:hover {
    color: #fff !important;
    text-decoration: none !important;
}

.button-btn span {
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 35px !important;
    height: 35px !important;
    background-color: #ffd9db !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    z-index: 2 !important;
}

.button-btn span i {
    color: #e12454 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.button-btn:hover span {
    background-color: #e12454 !important;
}

.button-btn:hover span i {
    color: #ffd9db !important;
}

/* Enhanced Mobile Button Styling */
@media (max-width: 768px) {
    .button-btn {
        padding: 14px 65px 14px 28px !important;
        font-size: 15px !important;
        min-height: 52px !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .button-btn span {
        right: 10px !important;
        width: 38px !important;
        height: 38px !important;
    }
    
    .button-btn span i {
        font-size: 15px !important;
    }
}

@media (max-width: 480px) {
    .button-btn {
        padding: 16px 70px 16px 30px !important;
        font-size: 16px !important;
        min-height: 54px !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 15px auto !important;
        display: block !important;
        border-radius: 35px !important;
    }
    
    .button-btn span {
        right: 12px !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .button-btn span i {
        font-size: 16px !important;
    }
}

/* Form Response Message Styling */
.form-response-message {
    margin-bottom: 20px !important;
    padding: 15px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    text-align: center !important;
    display: none !important;
}

.form-response-message.success {
    background-color: #d4edda !important;
    color: #155724 !important;
    border: 1px solid #c3e6cb !important;
    display: block !important;
}

.form-response-message.error {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    border: 1px solid #f5c6cb !important;
    display: block !important;
}

/* ===== FOOTER SOCIAL ICON FIXES ===== */
.footer-media li a i {
    font-family: 'Font Awesome 5 Brands' !important;
    font-weight: 400 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.footer-media li a i.fab {
    font-family: 'Font Awesome 5 Brands' !important;
}

.footer-media li a i.fas {
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
}

/* ===== RETURN TO TOP BUTTON FIX ===== */
#return-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 50px !important;
    height: 50px !important;
    background: #e12454 !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

#return-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
}

#return-to-top:hover {
    background: #b3183f !important;
    transform: translateY(-2px) !important;
}

#return-to-top i {
    font-size: 18px !important;
    color: white !important;
}

/* ===== CONTACT FORM SEND BUTTON FIX ===== */
.contact-form .btn-primary,
.contact-form .btn-submit,
.contact-form button[type="submit"] {
    background: #e12454 !important;
    border: none !important;
    color: white !important;
    padding: 12px 30px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.contact-form .btn-primary:hover,
.contact-form .btn-submit:hover,
.contact-form button[type="submit"]:hover {
    background: #b3183f !important;
    transform: translateY(-2px) !important;
}

.contact-form .btn-primary i,
.contact-form .btn-submit i,
.contact-form button[type="submit"] i {
    font-size: 14px !important;
    color: white !important;
}

/* ===== NAVBAR BOOK APPOINTMENT BUTTON ICON FIX ===== */
.nav-button i.nav-icon,
.mobile-nav-button i.nav-icon {
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* ===== SOCIAL MEDIA ICONS FIX ===== */
.social-icon li a i {
    font-family: 'Font Awesome 5 Brands' !important;
    font-weight: 400 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.social-icon li a i.fab {
    font-family: 'Font Awesome 5 Brands' !important;
}

.social-icon li a i.fas {
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
}

/* ===== GENERAL FONTAWESOME ICON FIXES ===== */
.fa, .fas, .far, .fal, .fad, .fab {
    -moz-osx-font-smoothing: grayscale !important;
    -webkit-font-smoothing: antialiased !important;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
}

.fas {
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
}

.fab {
    font-family: 'Font Awesome 5 Brands' !important;
    font-weight: 400 !important;
}

.far {
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 400 !important;
}

/* ===== END COMPREHENSIVE BUTTON FIXES ===== */

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #e12454; /* Pink Background */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.floating-call-btn:hover {
    background-color: #c41e4a; /* Darker Pink on Hover */
    color: #FFF;
    transform: scale(1.1);
}

/* Adjust position on smaller screens */
@media (max-width: 767px) {
    .floating-call-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 22px;
    }
}

/* ===== UNIVERSAL BUTTON OVERRIDES ===== */
.button-btn,
.hero-cta-btn,
.submitForm,
.tb_es_btn_wrapper button {
    background-color: #e12454 !important;
    color: #ffffff !important;
    border: 2px solid #e12454 !important;
    transition: all 0.3s ease-in-out;
}

.button-btn:hover,
.hero-cta-btn:hover,
.submitForm:hover,
.tb_es_btn_wrapper button:hover {
    background-color: #c41e4a !important;
    border-color: #c41e4a !important;
    color: #ffffff !important;
}

/* Ensure icons inside buttons are also white */
.button-btn i,
.hero-cta-btn i,
.submitForm i {
    color: #ffffff !important;
}

/* ===== NAVIGATION BOOK APPOINTMENT BUTTON ===== */
.nav-button {
    background-color: #ffffff !important;
    color: #e12454 !important;
    border: 2px solid #e12454 !important;
}

.nav-button:hover {
    background-color: #e12454 !important;
    color: #ffffff !important;
    border-color: #e12454 !important;
}

/* Ensure icon in nav button is pink */
.nav-button i {
    color: #e12454 !important;
}

.nav-button:hover i {
    color: #ffffff !important;
}
