/* ===== GOOGLE FONT ===== */
/* Make sure this is added in your HTML <head>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
*/

:root {
  --sun-blue: #1f6b9a;    /* Logo Blue */
  --sun-orange: #f2643b;  /* Logo Orange */
  --dark-navy: #0f2f44;   /* Logo Navy */
  --bg-light: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: var(--dark-navy);
  color: #ffffff;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.top-bar-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.top-bar-login {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 12px;
  border-radius: 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.top-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

/* All icons use logo orange */
.top-bar-item i,
.top-bar-login i,
.fa-user-circle {
  color: var(--sun-orange);
  font-size: 14px;
}

.top-bar-item:hover {
  color: #ffffff;
}

.top-bar-login:hover {
  background: var(--sun-orange);
  color: #fff;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 992px) {
  .hide-mobile {
    display: none;
  }
}

@media (max-width: 600px) {
  .top-bar-wrapper {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 5px 0;
  }
  
  .top-bar-left {
    flex-direction: column;
    gap: 8px;
  }
}
/* ================= MAIN HEADER ================= */

.main-header {
  background: #ffffff;
  height: 85px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
}

.main-header .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== Logo ===== */
.logo img {
  height: 60px;
  display: block;
}

/* ===== Navigation ===== */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #0f2f44;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: var(--sun-orange);
}

/* Dropdown icons in orange */
.nav-icon {
  color: var(--sun-orange);
  font-size: 12px;
  margin-left: 5px;
}

/* ===== Button (Orange) ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  border-radius: 8px;
  background: var(--sun-orange);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #d94f29;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 100, 59, 0.3);
}

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #0f2f44;
  border-radius: 3px;
}
/* ================= NAV TRANSITION ================= */

.nav-menu {
  transition: right 0.4s cubic-bezier(0.77,0,0.18,1);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}

.close-menu {
  font-size: 22px;
  cursor: pointer;
  color: var(--sun-orange);
}

/* ================= DESKTOP DROPDOWN ================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: #ffffff;
  border-radius: 12px;
  padding: 15px 0;
  min-width: 260px;
  border: 1px solid #eaeaea;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: block !important;
}

.dropdown-menu li {
  width: 100%;
  display: block;
  border: none;
}

.dropdown-menu li a {
  padding: 10px 14px;
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: all 0.25s ease;
}

.dropdown-menu li a:hover {
  color: var(--sun-orange);
  background: rgba(242, 100, 59, 0.05);
  padding-left: 10px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Container for the sub-menu */
.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa; /* Light grey background to distinguish from main links */
    border-left: 3px solid #f2643b; /* Orange accent line on the left */
}

/* Individual sub-menu items */
.mobile-dropdown-menu li a {
    padding: 12px 40px !important; /* Extra padding to the left */
    font-size: 14px;
    color: #444 !important;
    border-bottom: 1px solid #eee;
    display: block;
    transition: all 0.3s ease;
}

/* Hover/Active state for sub-menu items */
.mobile-dropdown-menu li a:hover {
    color: #f2643b !important; /* SoftSunrise Orange */
    background: rgba(242, 100, 59, 0.05); /* Very light orange tint */
    padding-left: 45px !important; /* Slight "slide" effect on hover */
}

/* Last item shouldn't have a border */
.mobile-dropdown-menu li:last-child a {
    border-bottom: none;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px; /* Space for the arrow */
    cursor: pointer;
}

.mobile-dropdown-toggle i {
    font-size: 12px;
    color: #f2643b;
    transition: transform 0.3s ease;
}

/* Rotate arrow when active */
.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    /* ... other styles ... */

    /* Fixed Navigation Panel */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex; /* Changed to flex to manage header/list */
        flex-direction: column;
        overflow-x: hidden;
        z-index: 1002;
    }

    /* Improved Mobile Nav Header - Fixed Alignment */
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background: var(--dark-navy); /* Solid navy for brand consistency */
        color: white;
        border-bottom: 3px solid var(--sun-orange);
    }

    .mobile-nav-header span {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .close-menu {
        width: 35px;
        height: 35px;
        background: var(--sun-orange);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: 0.3s ease;
        cursor: pointer;
    }

    .close-menu:hover {
        transform: rotate(90deg);
        background: #d94f29;
    }

    /* Ensure the list scrolls if it's long */
    .nav-menu ul {
        flex: 1;
        overflow-y: auto;
    }
}

/* Add this to your CSS */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}

/* Ensure the hamburger button is visible */
.mobile-menu-btn {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #0f2f44;
    border-radius: 3px;
    display: block;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex; /* Show on mobile */
    }
    
    .desktop-nav {
        display: none; /* Hide desktop links */
    }

    /* Fixed Navigation Panel */
    #mobileNav {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 1200;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        display: block !important;
    }

    #mobileNav.active {
        right: 0; /* Slide in */
    }

    /* Overlay styling */
    #navOverlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        display: none;
        z-index: 1150;
    }

    #navOverlay.active {
        display: block;
    }
}

/* Mobile Dropdown Logic */
.mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
    background: #f9f9f9;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    /* Hide the Get Quote button in the main header */
    .header-actions .btn-primary {
        display: none !important;
    }

    /* Ensure the hamburger button stays aligned */
    .mobile-menu-btn {
        display: flex;
        margin-left: auto; /* Pushes it to the right */
    }
}


/* ===== MOBILE NAVIGATION FIXES ===== */
@media (max-width: 992px) {
    /* Ensure overlay doesn't block clicks incorrectly */
    .nav-overlay {
        pointer-events: none;
    }
    
    .nav-overlay.active {
        pointer-events: auto;
    }
    
    /* Fix menu clickability */
    .nav-menu {
        pointer-events: none;
    }
    
    .nav-menu.active {
        pointer-events: auto;
    }
    
    /* Ensure dropdown links are clickable */
    .dropdown-menu a {
        pointer-events: auto !important;
        cursor: pointer !important;
        position: relative;
        z-index: 1003;
    }
    
    /* Fix scrolling issue */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* Ensure the menu itself scrolls properly */
    .nav-menu.active {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix dropdown menu display */
    .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    /* Better touch targets */
    .dropdown-menu a {
        padding: 15px 35px !important;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    /* Remove any potential overlapping issues */
    .main-header {
        position: relative;
        z-index: 1000;
    }
    
    .nav-menu {
        z-index: 1002;
    }
    
    /* Fix for iOS */
    .nav-menu.active {
        -webkit-overflow-scrolling: touch;
    }
}

/* ===== NEW HEADER ADDITIONS (KEEP ALL EXISTING STYLES) ===== */

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list li a {
    color: var(--dark-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.desktop-nav .nav-list li a i {
    font-size: 12px;
    color: var(--sun-orange);
}

.desktop-nav .nav-list li a:hover {
    color: var(--sun-orange);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--dark-navy);
    transition: all 0.3s ease;
    display: block;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 1002;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--dark-navy);
    color: var(--white);
}

.mobile-nav-header span {
    font-weight: 600;
    font-size: 18px;
}

.mobile-nav-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: var(--sun-orange);
    transform: rotate(90deg);
}

.mobile-nav-list {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-nav-list li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-list > li > a,
.mobile-dropdown-toggle a {
    display: block;
    padding: 15px 20px;
    color: var(--dark-navy);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-dropdown-toggle a {
    flex: 1;
}

.mobile-dropdown-toggle i {
    padding: 15px 20px;
    color: var(--sun-orange);
    transition: transform 0.3s ease;
    font-size: 14px;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    background: #f8f9fa;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu a {
    padding: 12px 35px !important;
    font-size: 14px;
    color: #666;
}

.mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-quote {
    width: 100%;
    text-align: center;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-header .container {
        height: 70px;
    }
    
    .logo img {
        height: 40px;
    }
}

@media (min-width: 993px) {
    .mobile-nav,
    .mobile-menu-btn,
    .mobile-nav-header,
    .mobile-nav-footer,
    .mobile-quote {
        display: none;
    }
}

/* Fix body scroll */
body.nav-open {
    overflow: hidden;
}





/* Footer */
footer { 
    background: var(--dark-navy);
    color: #cbd5e1; 
}

footer i {
    color: var(--sun-orange);
}

footer a:hover {
    color: var(--sun-orange) !important;
}
/* Footer links */

/* ===== FOOTER OVERRIDES - ADD AT END OF style.css ===== */

/* Footer background */
.footer-section {
    background-color: #0d233e !important;
}

/* Change all blue text-primary to orange */
.footer-section .text-primary,
.footer-section p.text-primary,
.footer-section i.text-primary,
.footer-section .bi.text-primary,
.footer-section [class*="text-primary"] {
    color: var(--sun-orange) !important;
}

/* Fix the subscribe button */
.footer-section .btn-primary {
    background-color: var(--sun-orange) !important;
    border-color: var(--sun-orange) !important;
    color: white !important;
}

.footer-section .btn-primary:hover {
    background-color: #d94f29 !important;
    border-color: #d94f29 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 100, 59, 0.3);
}

/* Style the badges (JazzCash, EasyPaisa, etc) */
.footer-section .badge.bg-light {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    padding: 8px 16px !important;
}

.footer-section .badge.bg-light:hover {
    background-color: var(--sun-orange) !important;
    border-color: var(--sun-orange);
}

/* Improve text readability */
.footer-section .text-light.opacity-75 {
    color: #ffffff !important;
    opacity: 0.9 !important;
}

.footer-section h4, 
.footer-section h5 {
    color: #ffffff !important;
    font-weight: 700 !important;
}

/* Footer links */
.footer-section a:not(.btn-primary) {
    color: #ffffff !important;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-section a:not(.btn-primary):hover {
    color: var(--sun-orange) !important;
    opacity: 1;
}

/* Horizontal rule */
.footer-section hr {
    opacity: 0.2 !important;
    background-color: #ffffff !important;
}

/* Copyright text */
.footer-section .small.opacity-50,
.footer-section .text-light.opacity-50 {
    color: #ffffff !important;
    opacity: 0.7 !important;
}

/* Email input field */
.footer-section .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px;
}

.footer-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-section .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: none;
    border-color: var(--sun-orange);
}


    /* WhatsApp Widget Container */
    .whatsapp-widget {
        position: fixed;
        bottom: 30px;
        left: 30px;
        z-index: 9999;
        font-family: 'Montserrat', sans-serif;
    }

    /* Main WhatsApp Button */
    .whatsapp-btn {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: white;
        border: none;
        font-size: 32px;
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        animation: pulse-whatsapp 2s infinite;
        position: relative;
        z-index: 2;
    }

    .whatsapp-btn:hover {
        transform: scale(1.1);
        animation: none;
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    }

    @keyframes pulse-whatsapp {
        0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
        70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
        100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    /* Notification Badge */
    .whatsapp-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background: #f2643b;
        color: white;
        font-size: 11px;
        font-weight: 700;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid white;
        box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        animation: pulse-badge 1.5s infinite;
    }

    @keyframes pulse-badge {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }

    /* Chat Window */
    .whatsapp-chat-window {
        position: absolute;
        bottom: 85px;
        left: 0;
        width: 320px;
        background: white;
        border-radius: 24px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
        display: none;
        overflow: hidden;
        border: 1px solid #eef2f6;
        animation: slideInLeft 0.3s ease;
        transform-origin: bottom left;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateY(20px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* Chat Header */
    .whatsapp-header {
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: white;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        position: relative;
    }

    .whatsapp-header::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 30px;
        width: 20px;
        height: 20px;
        background: #25D366;
        transform: rotate(45deg);
        z-index: -1;
    }

    .whatsapp-avatar {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        backdrop-filter: blur(5px);
        border: 2px solid rgba(255,255,255,0.3);
    }

    .whatsapp-header-info h4 {
        font-size: 16px;
        font-weight: 700;
        margin: 0 0 4px 0;
        color: white;
    }

    .whatsapp-header-info p {
        font-size: 12px;
        margin: 0;
        opacity: 0.9;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .online-dot {
        width: 8px;
        height: 8px;
        background: #4caf50;
        border-radius: 50%;
        display: inline-block;
        animation: pulse-online 1.5s infinite;
    }

    @keyframes pulse-online {
        0% { opacity: 1; }
        50% { opacity: 0.5; }
        100% { opacity: 1; }
    }

    /* Chat Body */
    .whatsapp-body {
        padding: 20px;
        background: #f8fafc;
        max-height: 300px;
        overflow-y: auto;
    }

    /* Message Bubbles */
    .message {
        display: flex;
        margin-bottom: 15px;
        animation: fadeInMessage 0.3s ease;
    }

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

    .message.support {
        justify-content: flex-start;
    }

    .message.user {
        justify-content: flex-end;
    }

    .message-bubble {
        max-width: 80%;
        padding: 12px 16px;
        border-radius: 20px;
        font-size: 13px;
        line-height: 1.5;
        position: relative;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }

    .message.support .message-bubble {
        background: white;
        color: #1e293b;
        border-bottom-left-radius: 4px;
        border: 1px solid #eef2f6;
    }

    .message.user .message-bubble {
        background: #25D366;
        color: white;
        border-bottom-right-radius: 4px;
    }

    .message-time {
        font-size: 9px;
        opacity: 0.6;
        margin-top: 4px;
        display: block;
        text-align: right;
    }

    /* Quick Reply Options */
    .quick-replies {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px dashed #eef2f6;
    }

    .quick-reply-btn {
        background: white;
        border: 1px solid #eef2f6;
        border-radius: 50px;
        padding: 8px 15px;
        font-size: 12px;
        font-weight: 500;
        color: var(--dark-navy);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .quick-reply-btn:hover {
        background: #25D366;
        border-color: #25D366;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
    }

    .quick-reply-btn i {
        font-size: 14px;
        color: #25D366;
        transition: all 0.3s ease;
    }

    .quick-reply-btn:hover i {
        color: white;
    }

    /* Chat Footer */
    .whatsapp-footer {
        padding: 15px;
        background: white;
        border-top: 1px solid #eef2f6;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .whatsapp-input {
        flex: 1;
        padding: 12px 15px;
        border: 1px solid #eef2f6;
        border-radius: 50px;
        font-size: 13px;
        font-family: 'Montserrat', sans-serif;
        transition: all 0.3s ease;
    }

    .whatsapp-input:focus {
        outline: none;
        border-color: #25D366;
        box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
    }

    .whatsapp-send-btn {
        width: 45px;
        height: 45px;
        background: #25D366;
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .whatsapp-send-btn:hover {
        background: #128C7E;
        transform: scale(1.1);
    }

    /* Close Button */
    .close-chat {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        background: rgba(255,255,255,0.2);
        border: none;
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

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

    /* Mobile Responsive */
    @media (max-width: 576px) {
        .whatsapp-widget {
            bottom: 20px;
            left: 20px;
        }
        
        .whatsapp-btn {
            width: 55px;
            height: 55px;
            font-size: 28px;
        }
        
        .whatsapp-chat-window {
            width: 280px;
            bottom: 75px;
        }
    }

    /* Floating Animation for Widget */
    .floating-widget {
        animation: float-widget 3s ease-in-out infinite;
    }

    @keyframes float-widget {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
