﻿/* Global Styles converted from index.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --background: 210 40% 98%;
    --foreground: 222 47% 11%;
    --primary: 24 90% 50%;
    --primary-foreground: 0 0% 100%;
    --accent: 27 100% 60%;
    --muted: 210 20% 96%;
    --muted-foreground: 215 16% 47%;
    --border: 214 32% 91%;
    --card: 0 0% 100%;
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.font-heading {
    font-family: 'Outfit', sans-serif;
}

.text-gradient {
    background: linear-gradient(135deg, hsl(24, 90%, 50%) 0%, hsl(24, 100%, 45%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, hsl(24, 90%, 50%) 0%, hsl(24, 100%, 45%) 100%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

    .hover-lift:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(242, 107, 16, 0.15);
        border-color: rgba(242, 107, 16, 0.5);
    }

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
    animation: scale-float 10s infinite alternate ease-in-out;
}

@keyframes scale-float {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(20px, -20px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

.logo-strip-track {
    display: flex;
    animation: scroll-left 20s linear infinite;
    width: max-content;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



.site-footer {
    background-color: hsl(var(--foreground));
    color: hsl(var(--background));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand-logo {
    background: hsl(var(--background));
    border-radius: 0.75rem;
    padding: 0.5rem;
    display: inline-block;
    margin-bottom: 1rem;
}

    .footer-brand-logo img {
        height: 3.5rem;
        object-fit: contain;
    }

.footer-brand p {
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-section h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .footer-section ul li a {
        font-size: 0.875rem;
        opacity: 0.8;
        transition: color 0.3s;
    }

        .footer-section ul li a:hover {
            color: hsl(var(--primary));
        }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

    .footer-contact li svg {
        flex-shrink: 0;
        color: hsl(var(--primary));
        width: 1rem;
        height: 1rem;
        margin-top: 3px;
    }

    .footer-contact li a {
        transition: color 0.3s;
    }

        .footer-contact li a:hover {
            color: hsl(var(--primary));
        }

.footer-bottom {
    border-top: 1px solid hsl(var(--background) / 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
    opacity: 0.6;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}


/* ===== REDESIGNED WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    border: none;
    cursor: pointer;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    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);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6), 0 0 0 4px rgba(255, 255, 255, 0.2);
    animation: none;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover svg {
    transform: scale(1.1);
}

/* Tooltip on hover */
.whatsapp-tooltip {
    position: absolute;
    top: -40px;
    right: 0;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

    .whatsapp-tooltip::after {
        content: '';
        position: absolute;
        bottom: -5px;
        right: 20px;
        width: 10px;
        height: 10px;
        background: #128C7E;
        transform: rotate(45deg);
    }

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

        .whatsapp-btn svg {
            width: 28px;
            height: 28px;
        }
}


/* ===== GLASS DESIGN FOR MODALS ===== */
.modal-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

    .modal-popup:target {
        display: flex;
        animation: modalOverlayFade 0.3s ease;
    }

@keyframes modalOverlayFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Glass Container */
.modal-container {
    max-width: 1000px;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    animation: modalSlideUp 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .modal-container {
    background: rgba(28, 28, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Header with Gradient */
.modal-header {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .modal-header h2 {
        color: white;
        font-size: 26px;
        font-weight: 600;
        margin: 0;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }

.close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .close-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

/* Modal Body */
.modal-body {
    display: flex;
    flex-wrap: wrap;
    min-height: 400px;
}

/* Left column - Map */
.modal-map {
    flex: 2;
    min-width: 300px;
    padding: 25px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .map-container iframe {
        width: 100%;
        height: 250px;
        border: 0;
    }

.address-text {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 16px;
    font-size: 15px;
    line-height: 1.7;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--foreground);
}

 .address-text {
    background: rgba(0, 0, 0, 0.2);
    color: #f5f5f7;
}

.address-text strong {
    color: #ff7e5f;
}

/* Right column - Image box */
.modal-image-box {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.dark .modal-image-box {
    background: rgba(0, 0, 0, 0.2);
    border-left-color: rgba(255, 255, 255, 0.05);
}

.image-placeholder {
    background: linear-gradient(135deg, #ff7e5f, #feb47b, #4a90e2);
    background-size: 200% 200%;
    border-radius: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.image-placeholder img {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.branch-details {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .branch-details h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #ff7e5f;
    }

    .branch-details p {
        color: var(--foreground);
        margin-bottom: 8px;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

.branch-details p {
    color: #f5f5f7;
}

.branch-details p svg {
    width: 16px;
    height: 16px;
    fill: #ff7e5f;
}

/* Branch links styling */
.branch-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.branch-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
}

    .branch-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 126, 95, 0.4);
    }

/* Floating animation for elements */
.floating {
    animation: float 3s ease infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.swiper-pagination-bullet-active {
    background: #f97316 !important; 
}

