/* Basic styles */
* {
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* General Header */
header {
    background: transparent;
    padding: 10px 0;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .logo a,
header .nav-links a,
header .hamburger i {
    color: #fff;
}

header.scrolled .nav-links a:hover {
    color: #ff6600;
}    

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo a {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0; /* Reset margin */
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6600;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* CTA Button */
.cta-button {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e65c00;
}

/* Popup styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

#edit-booking-branch-form input, #edit-delivery-branch-form input {
    width: calc(100% - 24px);
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

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

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Floating WhatsApp Icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.whatsapp-float i {
    margin-top: 16px;
}

/* Modern Contact Banner */
.contact-banner {
    background: linear-gradient(90deg, #1e1e1e, #2b2b2b);
    color: #fff;
    padding: 25px 0;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.contact-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-banner-text {
    flex-grow: 1;
    text-align: left;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.contact-banner-text .icon {
    font-size: 36px;
    margin-right: 20px;
    color: #ff6600;
}

.contact-banner-text .text-content {
    display: flex;
    flex-direction: column;
}

.contact-banner-text .help-text {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

.contact-banner-text .phone-number {
    font-size: 26px;
    font-weight: 700;
    color: #ff6600;
}

.contact-banner .cta-button {
    background-color: #ff6600;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 50px; /* Pill-shaped button */
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.contact-banner .cta-button:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #222;
    color: #ccc;
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section .logo {
    margin-bottom: 20px;
}

.footer-section .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.footer-section .logo img {
    height: 50px;
    margin-right: 15px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    background-color: #444;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    background-color: #ff6600;
    color: #fff;
}

.footer-section h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ff6600;
}

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

.footer-section.links ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-section.links ul li a:hover {
    color: #ff6600;
}

.footer-section.contact p {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section.contact i {
    color: #ff6600;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid #333;
}

@media (max-width: 992px) {
    .contact-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .contact-banner-text {
        margin-right: 0;
        margin-bottom: 25px;
        text-align: center;
        flex-direction: column;
    }

    .contact-banner-text .icon {
        margin-bottom: 15px;
    }

    .contact-banner-text .phone-number {
        font-size: 24px;
    }
}