/* Paste all the <style> content from the original HTML file here */
/* For example: */
:root {
    --primary-color: #2A9D8F; /* Teal */
    --primary-color-darker: #21867A; /* Darker Teal for hovers */
    --secondary-color: #264653; /* Dark Slate Gray/Blue */
    --secondary-color-darker: #1D353F; /* Darker Slate Gray/Blue */
    --accent-color: #E9C46A; /* Saffron - for highlights */
    --light-gray: #F8F9FA; /* Off-white, cleaner */
    --dark-gray: #343A40; /* Darker gray for text */
    --white: #FFFFFF;
    --green: #25D366; /* WhatsApp Green - brand color, keep */
    --success-color: #28A745; /* Standard success green - keep or adjust if needed */
    --discount-banner-bg: #F4A261; /* Sandy Brown - warm, analogous to accent */
    --discount-banner-text: #264653; /* Dark Slate for text on banner */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Almarai', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    padding-bottom: 100px; /* Add padding to prevent content overlap with floating banner */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn { 
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white); 
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color); 
}

.universal-call-trigger-style {
    display: inline-block;
    padding: 10px 20px; 
    background-color: var(--primary-color);
    color: var(--white) !important; 
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.universal-call-trigger-style:hover {
    background-color: var(--primary-color-darker); 
    color: var(--white) !important;
    transform: translateY(-1px); 
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.top-header {
    background-color: var(--secondary-color);
    padding: 10px 0;
    color: var(--white);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
}

.phone-number { 
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 15px;
}

.phone-number i {
    margin-left: 5px;
}

.social-links a {
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color); 
}

.main-header {
    padding: 15px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-right: 25px;
}

.nav-menu li:last-child {
    margin-right: 0;
}

.nav-menu a {
    font-weight: 700;
    color: var(--dark-gray);
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}
.nav-menu a.universal-call-trigger-style {
    padding: 8px 15px; 
}


.nav-menu a:not(.universal-call-trigger-style):hover { 
    color: var(--primary-color);
}

.nav-menu a:not(.universal-call-trigger-style)::after { 
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:not(.universal-call-trigger-style):hover::after {
    width: 100%;
    right: auto;
    left: 0;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}
.hero-buttons .universal-call-trigger-style, .hero-buttons .btn-secondary {
     padding: 12px 30px; 
}


.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--white);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(42, 157, 143, 0.5); 
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: var(--white);
    font-size: 1.5rem;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
}

.features {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(42, 157, 143, 0.1); 
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(42, 157, 143, 0.1); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.why-choose-us {
    padding: 60px 0;
    background-image: linear-gradient(rgba(38, 70, 83, 0.85), rgba(38, 70, 83, 0.85)), url("https://raw.githubusercontent.com/code-house10/images/refs/heads/main/1213.jpg"); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.why-choose-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.why-choose-text {
    flex: 1;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.why-choose-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}
.why-choose-text .universal-call-trigger-style {
     padding: 12px 30px; 
}


.why-choose-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.why-choose-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    background-color: rgba(42, 157, 143, 0.3); 
}

.why-choose-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.why-choose-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.services {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(42, 157, 143, 0.1); 
}

.service-img {
    height: 220px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.service-content .universal-call-trigger-style {
    padding: 8px 15px; 
    display: inline-flex; 
    align-items: center; 
}
.service-content .universal-call-trigger-style i {
     margin-left: 5px; 
     transition: transform 0.3s ease;
}
.service-content .universal-call-trigger-style:hover i {
    transform: translateX(-5px); 
}


.areas-serve {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.area-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.area-card:hover {
    transform: translateY(-8px);
}

.area-img {
    height: 180px;
    overflow: hidden;
}

.area-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-content {
    padding: 20px;
}

.area-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.area-content p {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.testimonials {
    padding: 60px 0;
    background-color: #fdfdfd; 
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    text-align: center;
    border-left: 5px solid var(--primary-color);
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    font-style: italic;
}

.testimonial-content::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f10d";
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.5;
    position: absolute;
    top: -10px;
    right: 0px;
}

.testimonial-content::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f10e";
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.5;
    position: absolute;
    bottom: -15px;
    left: 0px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.author-info p {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(42, 157, 143, 0.3); 
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.blog {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(42, 157, 143, 0.1); 
}

.blog-img {
    height: 200px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--secondary-color); 
}

.blog-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color); 
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: color 0.3s ease, padding-right 0.3s ease;
}
.footer-contact .universal-call-trigger-style {
    padding: 5px 10px; 
    font-weight: normal; 
}


.footer-links a:not(.universal-call-trigger-style):hover {
    color: var(--accent-color); 
    padding-right: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start; 
}

.footer-contact i {
    margin-left: 10px;
    color: var(--accent-color); 
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    color: var(--white);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}
.copyright a {
    color: var(--accent-color); 
    text-decoration: underline;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 1024px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 120px; 
    }
    .hero {
        height: auto;
        min-height: 500px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .why-choose-content {
        flex-direction: column;
        gap: 30px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0 0 25px 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }
     .nav-menu a.universal-call-trigger-style {
        width: 100%; 
        padding: 10px 15px;
    }


    .close-menu {
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--primary-color);
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .top-header-content {
        flex-direction: row; 
    }

    .contact-info {
        flex-direction: row; 
        align-items: center; 
        gap: 5px; 
    }


    .social-links {
    }

    .hero {
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .btn, .universal-call-trigger-style { 
        width: 80%;
        max-width: 300px;
        padding: 10px 20px;
    }
     .hero-buttons .universal-call-trigger-style, .hero-buttons .btn-secondary {
        width: 80%; max-width: 300px; padding: 10px 20px;
    }


    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title::after {
        width: 60px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .why-choose-text h2 {
        font-size: 1.8rem;
    }
    .why-choose-text .universal-call-trigger-style {
        width: 80%; max-width: 300px; padding: 10px 20px;
    }


    .testimonial-content {
        font-size: 1rem;
    }

    .testimonial-content::before,
    .testimonial-content::after {
        font-size: 2rem;
    }

    .slider-arrows {
        padding: 0 10px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo img {
        height: 40px;
    }
}

@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .testimonial-slide {
        padding: 20px 15px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }
}

.floating-call-btn-left {
    position: fixed;
    left: 20px;
    bottom: 90px; 
    z-index: 1050;
    display: flex;
    align-items: center;
    background-color: var(--primary-color); 
    color: var(--white);
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 1rem;
    text-decoration: none;
}

.floating-call-btn-left:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: var(--primary-color-darker);
}

.floating-btn-icon {
    font-size: 1.2rem;
    animation: pulse-call-animation 2s infinite ease-in-out;
}

.floating-btn-text {
    font-weight: 700;
    margin-right: 8px;
}

.floating-btn-action-text-part {
}

@keyframes pulse-call-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .floating-call-btn-left {
        padding: 8px 12px;
        font-size: 0.9rem;
        left: 15px;
        bottom: 105px; 
    }
    .floating-btn-icon { font-size: 1.1rem; }
    .floating-btn-text { margin-right: 6px; }
}

@media (max-width: 480px) {
    .floating-btn-action-text-part { display: none; }
    .floating-call-btn-left { padding: 8px 10px; }
}

.call-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none; 
    align-items: center;
    justify-content: center;
    z-index: 2000; 
    padding: 15px; 
    opacity: 0; 
    transition: opacity 0.3s ease-out;
}

.call-modal-overlay.active {
    display: flex; 
    opacity: 1; 
}

.call-modal-content {
    background-color: var(--white);
    padding: 25px; 
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); 
    width: 100%;
    max-width: 450px; 
    text-align: center; 
    transform: scale(0.95); 
    opacity: 0; 
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.call-modal-overlay.active .call-modal-content {
    transform: scale(1); 
    opacity: 1; 
}

.bg-success { 
     background-color: var(--success-color) !important;
}
.bg-success:hover {
    background-color: #218838 !important; 
}

.discount-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--discount-banner-bg);
    color: var(--discount-banner-text);
    padding: 10px 15px;
    text-align: center;
    z-index: 1060; 
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-top: 2px solid var(--primary-color);
}
.discount-banner p {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
}
.discount-banner .countdown-timer {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
}
.discount-banner .timer-segment {
    display: inline-block;
    margin: 0 5px;
    padding: 2px 5px;
    background-color: rgba(0,0,0,0.1);
    border-radius: 3px;
}
.discount-banner .timer-label {
    font-size: 0.7rem;
    display: block;
    color: var(--dark-gray); 
}
.discount-banner-close {
    position: absolute;
    top: 5px;
    left: 15px; 
    font-size: 1.5rem;
    color: var(--discount-banner-text);
    cursor: pointer;
    line-height: 1;
    padding: 5px;
}

@media (min-width: 768px) {
    .discount-banner {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        padding: 12px 15px;
    }
    .discount-banner p {
        font-size: 1.1rem;
    }
    .discount-banner .countdown-timer {
        font-size: 1.2rem;
    }
     .discount-banner-close {
        top: 50%;
        transform: translateY(-50%);
    }
}
