:root{
    --primary-color:#ED212A;
    --dark:#222;
    --white:#fff;
    }
    
    
    /* ===============================
    BASE
    =============================== */
    
    body{
    font-family:'Poppins',sans-serif;
    color:var(--dark);
    overflow-x:hidden;
    line-height:1.6;
    }
    
    img{
    max-width:100%;
    height:auto;
    display:block;
    }
    
    
    /* ===============================
    HEADER
    =============================== */
    
    #header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    transition:all .35s ease;
    }
    
    .navbar{
    padding:20px 0;
    transition:all .3s ease;
    }
    
    
    /* ===============================
    SCROLL HEADER
    =============================== */
    
    #header.scrolled{
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    }
    
    #header.scrolled .navbar{
    padding:10px 0;
    }
    
    
    /* ===============================
    LOGO
    =============================== */
    
    .logo-large img{
    width:105px;
    }
    
    .logo-mini img{
    width:67px;
    }
    
    
    /* ===============================
    LOGO BEHAVIOR (RESPONSIVE)
    =============================== */
    
    /* mobile first */
    
    .logo-large{
    display:none;
    }
    
    .logo-mini{
    display:block;
    }
    
    
    /* tablet + desktop */
    
    @media (min-width:768px){
    
    .logo-large{
    display:block;
    }
    
    .logo-mini{
    display:none;
    }
    
    /* switch on scroll */
    
    #header.scrolled .logo-large{
    display:none;
    }
    
    #header.scrolled .logo-mini{
    display:block;
    }
    
    }
    
    
    /* ===============================
    NAVIGATION
    =============================== */
    
    .navbar-nav .nav-link{
    font-family:'Playfair Display',serif;
    font-size:16px;
    margin:0 18px;
    color:#333;
    position:relative;
    transition:0.3s;
    }
    
    .navbar-nav .nav-link:hover{
    color:var(--primary-color);
    }
    
    
    /* underline animation */
    
    .navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:0;
    height:2px;
    background:var(--primary-color);
    transition:0.3s;
    }
    
    .navbar-nav .nav-link:hover::after{
    width:100%;
    }

    /* active nav link */

.navbar-nav .nav-link.active{
    color:var(--primary-color);
    }
    
    .navbar-nav .nav-link.active::after{
    width:100%;
    }
    
    
    /* ===============================
    ORDER BUTTON
    =============================== */
    
    .btn-order{
    border:2px solid var(--primary-color);
    /*padding:10px 24px;*/
    padding:10px;
    color:var(--primary-color);
    display:inline-flex;
    gap:10px;
    align-items:center;
    text-decoration:none;
    transition:0.3s;
    }
    
    .btn-order:hover{
    background:var(--primary-color);
    color:#fff;
    }
    
    .btn-line-dark{
    width:30px;
    height:2px;
    background:var(--primary-color);
    display:inline-block;
    }
    
    
    /* ===============================
    CUSTOM HAMBURGER
    =============================== */
    
    .navbar-toggler{
    border:none;
    padding:0;
    width:32px;
    height:24px;
    position:relative;
    }
    
    .navbar-toggler:focus{
    box-shadow:none;
    }
    
    .toggler-icon{
    display:block;
    width:100%;
    height:3px;
    background:#333;
    position:absolute;
    left:0;
    transition:all .3s ease;
    }
    
    /* hamburger bar positions */
    
    .top-bar{
    top:0;
    }
    
    .middle-bar{
    top:10px;
    }
    
    .bottom-bar{
    top:20px;
    }
    
    
    /* ===============================
    HAMBURGER ANIMATION
    =============================== */
    
    /* closed */
    
    .navbar-toggler[aria-expanded="false"] .top-bar{
    transform:rotate(0);
    top:0;
    }
    
    .navbar-toggler[aria-expanded="false"] .middle-bar{
    opacity:1;
    }
    
    .navbar-toggler[aria-expanded="false"] .bottom-bar{
    transform:rotate(0);
    top:20px;
    }
    
    
    /* open */
    
    .navbar-toggler[aria-expanded="true"] .top-bar{
    top:10px;
    transform:rotate(45deg);
    }
    
    .navbar-toggler[aria-expanded="true"] .middle-bar{
    opacity:0;
    }
    
    .navbar-toggler[aria-expanded="true"] .bottom-bar{
    top:10px;
    transform:rotate(-45deg);
    }
    
    
    /* ===============================
    HERO SECTION
    =============================== */
    
    .hero-section{
        min-height:100dvh;
    background:url('../images/hero-background.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    text-align:center;
    position:relative;
    padding-top:160px;
    }
    
    .hero-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    /*background:rgba(255,255,255,0.75);*/
    }
    
    .hero-section .container{
    position:relative;
    z-index:2;
    max-width:900px;
    }
    
    
    /* hero script */
    
    .script-font{
    font-family:'Great Vibes',cursive;
    color:var(--primary-color);
    font-size:3rem;
    margin-bottom:10px;
    }
    
    
    /* hero title */
    
    .hero-title{
    font-family:'Playfair Display',serif;
    font-size:60px;
    line-height:1.2;
    margin-bottom:25px;
    }
    
    
    /* hero description */
    
    .hero-desc{
    max-width:600px;
    margin:auto;
    margin-bottom:30px;
    color:#555;
    }
    
    
    /* ===============================
    MAIN BUTTON
    =============================== */
    
    .btn-main{
    background:var(--primary-color);
    color:#fff;
    padding:12px 28px;
    display:inline-flex;
    gap:10px;
    align-items:center;
    text-decoration:none;
    transition:0.3s;
    }
    
    .btn-main:hover{
    background:#c01820;
    }
    
    .btn-line{
    width:30px;
    height:2px;
    background:#fff;
    }
    
    
    /* ===============================
    DECORATION IMAGES
    =============================== */
    
    .hero-leaf{
    position:absolute;
    left:-120px;
    bottom:80px;
    width:150px;
    }
    
    .hero-chili{
    position:absolute;
    right:-120px;
    bottom:120px;
    width:140px;
    }
    
    
    /* ===============================
    MOBILE MENU
    =============================== */
    
    @media(max-width:991px){
    
    .navbar-collapse{
    background:#fff;
    margin-top:15px;
    padding:25px;
    border-radius:6px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    }
    
    .navbar-nav{
    text-align:center;
    }
    
    .navbar-nav .nav-link{
    margin:12px 0;
    font-size:18px;
    }
    
    .hero-leaf,
    .hero-chili{
    display:none;
    }
    
    }
    
    
    /* ===============================
    RESPONSIVE HERO
    =============================== */
    
    @media(max-width:768px){
    
       

    .hero-title{
    font-size:38px;
    }
    
    .script-font{
    font-size:34px;
    }
    
    .hero-section{
        min-height:auto;
        padding-top:120px;
       /* padding-bottom:80px;*/
       padding-bottom: 10px;
    }
    .rmv-pad{
        padding-top: 0px !important;
    }
    
    }
    
    @media(max-width:480px){
    
    .hero-title{
    font-size:30px;
    }
    
    .hero-desc{
    font-size:14px;
    }

 
    
    }

  /* =================================
TODAY SPECIAL
================================= */

.today-special{
    background:#fff;
    padding:0px 0px 100px 0px;
    }
    
    .ts-ext{
        background: #EBEBEB;
    }
.ts-ext-md{
        background: #F9F9F9;
    }
    
    /* section titles */
    
    .section-script{
    font-family:'Great Vibes',cursive;
    font-size:28px;
    color:#444;
    margin-bottom:10px;
    }
    
    .section-heading{
    font-family:'Playfair Display',serif;
    font-size:48px;
    color:var(--primary-color);
    margin-bottom:20px;
    }
    
    .special-note{
    max-width:650px;
    margin:auto;
    color:#666;
    font-size:15px;
    padding-bottom: 20px;
    }
    
    .special-note a{
    color:#2a6fd6;
    text-decoration:none;
    }
    
    
    /* food cards */
    
    .food-card{
    /*background:#fff;*/
    transition:.3s;
    display:flex;
    flex-direction:column;
    height:100%;
    }
    
    .food-img{
    height:260px;
    overflow:hidden;
    }
    
    .food-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    }
    
    
    /* body */
    
    .food-body{
    padding:30px;
    flex:1;
    display:flex;
    flex-direction:column;
    }
    
    .food-body h3{
    font-family:'Playfair Display',serif;
    font-size:24px;
    margin-bottom:15px;
    }
    
    .food-body p{
    color:#666;
    font-size:15px;
    margin-bottom:20px;
    }
    
    
    /* rating */
    
    .food-rating{
    color:#F5B301;
    font-size:20px;
    margin-bottom:20px;
    }
    
    
    /* order button */
    
    .btn-outline-order{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:10px 22px;
    border:2px solid #333;
    color:#333;
    text-decoration:none;
    font-family:'Playfair Display',serif;
    }
    
    .btn-outline-order span{
    width:30px;
    height:2px;
    background:#333;
    display:inline-block;
    }
    
    .btn-outline-order:hover{
    background:var(--primary-color);
    border-color:var(--primary-color);
    color:#fff;
    }
    
    .btn-outline-order:hover span{
    background:#fff;
    }
    
    
    /* card hover */
    
    .food-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    }
    
    
    /* =================================
    RESPONSIVE
    ================================= */
    
    @media(max-width:992px){
    
    .section-heading{
    font-size:38px;
    }
    
    }
    
    @media(max-width:768px){
    
    .section-heading{
    font-size:30px;
    }
    
    .section-script{
    font-size:22px;
    }
    
    .today-special{
    padding:80px 0;
    }
    
    .food-body{
    padding:25px;
    }
    
    .food-img{
    height:220px;
    }
    
    }

    /* =================================
WORKING HOURS SECTION
================================= */

.working-hours{
    /**background:url('../images/working-hours-bg.jpg') center/cover no-repeat;
    background: var(--primary-color);**/
    position:relative;
    padding:70px 0;
    color:#fff;
    }
    
    
    /* dark overlay */
    
    .working-hours::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    /*background:rgba(0,0,0,0.45);*/
    }
    
    .working-hours .container{
    position:relative;
    z-index:2;
    }
    
    
    /* left content */
    
    .working-title{
    font-family:'Playfair Display',serif;
    font-size:64px;
    color:#fff;
    margin-bottom:20px;
    }
    
    .working-text{
    font-size:20px;
    margin-bottom:30px;
    opacity:0.9;
    }
    
    
    /* hours card */
    
    .hours-card{

    text-align:center;
    color:#333;
    box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);
padding:50px 0;
    }
    
    .hours-day{
    font-family:'Playfair Display',serif;
    font-size:20px;
    margin-bottom:15px;
    }
    
    .hours-time{
    font-family:'Playfair Display',serif;
    font-size:36px;
    margin-bottom:40px;
    }
    
    .hours-order{
    font-family:'Playfair Display',serif;
    font-size:20px;
    margin-bottom:10px;
    }
    
    .hours-phone{
    font-family:'Playfair Display',serif;
    font-size:36px;
    font-weight:600;
    }
    
    
    /* =================================
    RESPONSIVE
    ================================= */
    
    @media(max-width:992px){
    
    .working-title{
    font-size:48px;
    }
    
    .hours-card{
    margin-top:30px;
    }
    
    }
    
    @media(max-width:768px){
    
    .working-hours{
    padding: 0px 0 80px 0;
    text-align:center;
    }
    
    .working-title{
    font-size:36px;
    }
    
    .working-text{
    font-size:16px;
    }
    
    .hours-card{
    padding:40px 20px;
    }
    
    .hours-time{
    font-size:28px;
    }
    
    .hours-phone{
    font-size:28px;
    }
    
    }
/* =================================
FULL MENU
================================= */

.full-menu{
    padding:70px 0;
    background:#fff;
    }
    
    
    /* subtitle */
    
    .menu-subtitle{
    max-width:600px;
    margin:auto;
    color:#777;
    font-size:18px;
    }
    
    
    /* =================================
    TABS
    ================================= */
    
    .menu-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
    margin-top:40px;
    margin-bottom: auto;
    margin-right: auto;
    margin-left: auto;
    max-width: 1002px;
    }
    
    .menu-tabs .nav-link{
    border:1px solid #ddd;
    padding:12px 28px;
    color:#666;
    font-family:'DM Sans',sans-serif;
    background:#fff;
    transition:.25s;
    text-transform:uppercase;
    }
    
    .menu-tabs .nav-link:hover{
    border-color:var(--primary-color);
    color:var(--primary-color);
    }
    
    .menu-tabs .nav-link.active{
    background:var(--primary-color);
    color:#fff;
    border-color:var(--primary-color);
    }
    
    
    /* =================================
    MENU LAYOUT
    ================================= */
    
    .menu-wrapper{
    display:flex;
    gap:60px;
    align-items:stretch;   /* important */
    justify-content:center;
    margin-top:60px;
    }
    
    
    /* =================================
    MENU LIST
    ================================= */
    
    .menu-list{
    flex:1;
    max-width:760px;
    
    display:flex;
    flex-direction:column;
    gap:35px;
    
    overflow-y:auto;
    max-height:617px;      /* keeps height close to image */
    
    padding-right:20px;
    }
    
    
    /* scrollbar */
    
    .menu-list::-webkit-scrollbar{
    width:6px;
    }
    
    .menu-list::-webkit-scrollbar-track{
    background:#f5f5f5;
    }
    
    .menu-list::-webkit-scrollbar-thumb{
    background:#ccc;
    border-radius:10px;
    }
    
    .menu-list::-webkit-scrollbar-thumb:hover{
    background:#aaa;
    }
    
    
    /* =================================
    MICHELIN MENU ITEM
    ================================= */
    
    .menu-item{
    padding-bottom:20px;
    border-bottom:1px dotted #ddd;
    }
    
    .menu-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin-bottom:6px;
    }
    
    .menu-name{
    font-family:'Playfair Display',serif;
    font-size:30px;
    margin:0;
    }
    
    .menu-price{
    font-family:'Cinzel',serif;
    font-size:26px;
    font-weight:700;
    white-space:nowrap;
    }
    
    .menu-desc{
   /** font-family:'DM Sans',sans-serif;**/
   font-family:'Playfair Display',serif;
    font-size:18px;
    color:#777;
    margin:0;
    line-height:1.5;
    }
    
    
    /* =================================
    MENU IMAGE
    ================================= */
    
    .menu-image{
    flex:1;
    max-width:520px;
    }
    
    .menu-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:8px;
    }
    
    
    /* =================================
    RESPONSIVE
    ================================= */
    
    @media (max-width:992px){
    
    .menu-wrapper{
    gap:40px;
    }
    
    .menu-name{
    font-size:26px;
    }
    
    .menu-price{
    font-size:22px;
    }
    
    .menu-desc{
    font-size:16px;
    }
    
    }
    
    
    /* MOBILE */
    
    @media (max-width:768px){
    
    .menu-wrapper{
    flex-direction:column;
    }
    
    .menu-image{
    display:none;
    }
    
    .menu-tabs .nav-link{
    padding:10px 18px;
    font-size:14px;
    text-transform:uppercase;
    }
    
    .menu-name{
    font-size:22px;
    }
    
    .menu-price{
    font-size:20px;
    }
    
    .menu-desc{
    font-size:15px;
    }
    
    .menu-list{
    max-height:none;
    overflow:visible;
    padding-right:0;
   gap: 12px;
    }
    
    }

    /* =================================
ABOUT / GALLERY
================================= */

.about-section{
    padding:70px 0;
    background:#fff;
    }
    
    
    /* gallery layout */
    
    .about-gallery{
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto auto;
    gap:15px;
    }
    
    
    /* large image */
    
    .gallery-large{
    grid-row:1 / span 2;
    }
    
    
    /* gallery images */
    
    .about-gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:6px;
    transition:.35s;
    }
    
    
    /* hover effect */
    
    .about-gallery a{
    display:block;
    overflow:hidden;
    border-radius:6px;
    }
    
    .about-gallery a:hover img{
    transform:scale(1.05);
    }
    
    
    /* text */
    
    .about-content p{
    font-family:'DM Sans',sans-serif;
    font-size:18px;
    line-height:1.7;
    color:#777;
    margin-bottom:25px;
    }
    
    
    /* =================================
    RESPONSIVE
    ================================= */
    
    @media(max-width:992px){
    
    .about-content p{
    font-size:16px;
    }
    
    }
    
    
    /* MOBILE */
    
    @media(max-width:768px){
    
    .about-gallery{
    grid-template-columns:1fr;
    }
    
    .gallery-large{
    grid-row:auto;
    }
    
    }

    /* =================================
FOOD GALLERY
================================= */

.food-gallery{
    padding:70px 0;
    background:#fff;
    }
    
    
    /* gallery grid */
    
    .gallery-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:250px;
    gap:15px;
    padding:0 40px;
    }
    
    
    /* large image */
    
    .gallery-item.large{
    grid-column:span 2;
    grid-row:span 2;
    }
    
    
    /* gallery images */
    
    .gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:6px;
    display:block;
    }
    
    .gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease;
    }
    
    
    /* hover zoom */
    
    .gallery-item:hover img{
    transform:scale(1.08);
    }
    
    
    /* overlay */
    
    .gallery-item::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.15);
    opacity:0;
    transition:.3s;
    }
    
    .gallery-item:hover::after{
    opacity:1;
    }
    
    
    /* =================================
    RESPONSIVE
    ================================= */
    
    @media(max-width:1200px){
    
    .gallery-wrapper{
    grid-template-columns:repeat(3,1fr);
    }
    
    }
    
    
    @media(max-width:768px){
    
    .gallery-wrapper{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:180px;
    padding:0 20px;
    }
    
    .gallery-item.large{
    grid-column:span 2;
    grid-row:span 1;
    }
    
    }
    
    
    @media(max-width:480px){
    
    .gallery-wrapper{
    grid-template-columns:1fr;
    grid-auto-rows:220px;
    }
    
    .gallery-item.large{
    grid-column:span 1;
    }
    
    }

    /* =================================
TESTIMONIALS
================================= */

.testimonials{
    padding:70px 0;
    background:#f9f9f9;
    }
    
    
    /* card */
    
    .testimonial-card{
    background:#fff;
    padding:40px;
    height:100%;
    transition:.3s;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    border-radius:6px;
    }
    
    
    /* hover */
    
    .testimonial-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
    }
    
    
    /* title */
    
    .testimonial-title{
    font-family:'Playfair Display',serif;
    font-size:26px;
    margin-bottom:20px;
    text-transform:uppercase;
    }
    
    
    /* text */
    
    .testimonial-text{
    font-family:'DM Sans',sans-serif;
    font-size:17px;
    color:#777;
    line-height:1.7;
    margin-bottom:30px;
    }
    
    
    /* user */
    
    .testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
    }
    
    .testimonial-user img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
    }
    
    .testimonial-user span{
    font-family:'DM Sans',sans-serif;
    font-weight:600;
    letter-spacing:1px;
    }
    
    
    /* =================================
    RESPONSIVE
    ================================= */
    
    @media (max-width:992px){
    
    .testimonial-title{
    font-size:22px;
    }
    
    .testimonial-text{
    font-size:16px;
    }
    
    }
    
    
    @media (max-width:768px){
    
    .testimonials{
    padding:50px 0;
    }
    
    .testimonial-card{
    padding:30px;
    }
    
    .testimonial-title{
    font-size:20px;
    }
    
    }

    /* =================================
LOCATION SECTION
================================= */

.location-section{
    padding:70px 0;
    background:#fff;
    }
    
    .location-title{
    font-family:'Playfair Display',serif;
    font-size:48px;
    margin-bottom:20px;
    }
    
    .location-text{
    font-family:'DM Sans',sans-serif;
    font-size:18px;
    color:#777;
    margin-bottom:30px;
    max-width:420px;
    }
    
    
    /* map button */
    
    .btn-map{
    display:inline-block;
    padding:14px 32px;
    background:#333;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    transition:.3s;
    }
    
    .btn-map:hover{
    background:var(--primary-color);
    }
    
    
    /* google map */
    
    .map-wrapper{
    border-radius:12px;
    overflow:hidden;
    }
    
    .map-wrapper iframe{
    width:100%;
    height:360px;
    border:0;
    }
    
    
    
    /* =================================
    FOOTER CTA
    ================================= */
    
    .footer-cta{
    position:relative;
    padding:100px 0;
    background:url('../images/footer-bg.jpg') center/cover no-repeat;
    color:#fff;
    text-align:center;
    }
    
    .footer-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
   /* background:rgba(0,0,0,0.65);*/
    }
    
    .footer-cta .container{
    position:relative;
    z-index:2;
    }
    
    
    /* heading */
    
    .footer-heading{
    font-family:'Playfair Display',serif;
    font-size:42px;
    margin-bottom:50px;
    text-transform:uppercase;
    }
    
    
    /* info blocks */
    
    .footer-info{
    display:flex;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
    margin-bottom:50px;
    }
    
    .footer-item{
    display:flex;
    align-items:center;
    gap:12px;
    text-align:left;
    max-width:260px;
    }
    
    .footer-item i{
    font-size:22px;
    color:var(--primary-color);
    }
    
    .footer-item span{
    font-family:'DM Sans',sans-serif;
    font-size:16px;
    }
    
    
    /* allergy */
    
    .footer-allergy{
    font-family:'Playfair Display',serif;
    font-size:28px;
    margin-bottom:40px;
    }
    
    .footer-allergy span{
    color:var(--primary-color);
    }
    
    
    /* logo */
    
    .footer-logo{
        display:flex;
        justify-content:center;
        align-items:center;
        margin-bottom:25px;
        }

  .footer-logo img{
width:70px;
display:block;
}
    
    
    /* social */
    
    .footer-social{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-bottom:30px;
    }
    
    .footer-social a{
    color:#fff;
    text-decoration:none;
    border-bottom:2px solid transparent;
    padding-bottom:4px;
    }
    
    .footer-social a:hover{
    border-color:var(--primary-color);
    }
    
    
    /* copyright */
    
    .footer-copy{
    font-family:'DM Sans',sans-serif;
    font-size:14px;
    color:#ccc;
    }
    
    
    
    /* =================================
    RESPONSIVE
    ================================= */
    
    @media (max-width:992px){
    
    .location-title{
    font-size:38px;
    }
    
    .footer-heading{
    font-size:32px;
    }
    
    }
    
    
    @media (max-width:768px){
    
    .location-section{
    padding:50px 0;
    text-align:center;
    }
    
    .location-text{
    margin:auto;
    margin-bottom:30px;
    }
    
    .footer-info{
    gap:30px;
    }
    
    .footer-heading{
    font-size:26px;
    }
    
    }






    /* =================================
SCROLL REVEAL ANIMATION
================================= */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all 0.8s ease;
    }
    
    .reveal.active{
    opacity:1;
    transform:translateY(0);
    }


/* =================================
SCROLL TO TOP
================================= */

#scrollTopBtn{
position:fixed;
right:25px;

/* move clearly above WhatsApp */
bottom:30px;

width:48px;
height:48px;

background:var(--primary-color);
color:#fff;

border:none;
border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:20px;
cursor:pointer;

opacity:0;
visibility:hidden;

transition:all .3s ease;

box-shadow:0 6px 20px rgba(0,0,0,0.18);

z-index:998;
}

#scrollTopBtn:hover{
background:#c01820;
transform:translateY(-4px);
}

/* show button */

#scrollTopBtn.show{
opacity:1;
visibility:visible;
}


/* =================================
WHATSAPP FLOAT BUTTON
================================= */

.whatsapp-float{

position:fixed;

bottom:25px;
right:25px;

width:60px;
height:60px;

background:#25D366;
color:#fff;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:30px;

box-shadow:0 10px 25px rgba(0,0,0,0.25);

transition:all .3s ease;

z-index:999;
}

.whatsapp-float:hover{
background:#20ba5a;
transform:translateY(-4px);
}


/* =================================
MOBILE FIX
================================= */

@media(max-width:768px){

.whatsapp-float{
width:55px;
height:55px;
font-size:26px;

bottom:20px;
right:20px;
}

#scrollTopBtn{
width:44px;
height:44px;

bottom:105px;
right:20px;
}

.menu-subtitle {
    font-size: 15px;
}
}

.testimonial-user img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #eee;
    }

    .footer-social a{
        transition:0.3s;
        }
        
        .footer-social a:hover{
        color:#ED212A;
        border-bottom:2px solid #ED212A;
        }