*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   body{
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
   }
   body::-webkit-scrollbar{
       display: none;
   }
    .spp-main-header{
    display: none;
   }
   .spp-nav-menu-list {
    display: none; /* Mobile view varra varaikkum ithu hidden-ah irukkum */
    list-style: none;
    gap: 20px;
}
      .whatsapp-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 15px;
}

/* SVG Icon Size */
.whatsapp-modern svg {
    fill: white;
    width: 35px;
    height: 35px;
}

/* Tooltip design */
.tooltip {
    position: absolute;
    right: 80px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-family: sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    white-space: nowrap;
}

/* Hover Effects */
.whatsapp-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-modern:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Simple breathing animation */
@keyframes pulse {
    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-modern {
    animation: pulse 2s infinite;
}
   .navbar{
    height: 100px;
    width: 100%;
    /* background-color: aqua; */
    overflow: hidden;
    padding: 15px;
   }
   .subnavbar{
    height: 100%;
    width: 100%;
    /* background-color: blue; */
    display: flex;
    align-items: center;
    justify-content: space-between;
   }
   .logo{
    height: 100%;
    width: 25%;
    /* background-color: aquamarine; */
   }
   .logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
   }
   .links{
    height: 100%;
    width: 55%;
    /* background-color: beige; */
    display: flex;
    align-items: center;
    justify-content: space-around;
   }
   .links a{
    text-decoration: none;
    color: rgba(0, 0, 0, 0.77);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

/* underline effect */
.links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: rgb(241,174,88); /* underline color */
    transition: width 0.3s ease;
}

/* hover underline */
.links a:hover::after{
    width: 0%;
}

/* active page underline */
.links a.active::after{
    width: 100%;
}
.slider {
    position: relative;
    width: 100%;
    height: 530px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.active {
    opacity: 1;
}

.content {
    margin-top: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    animation: fadeIn 1s ease-in-out;
}

.content h2 {
    font-size: 60px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.content span{
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.content p {
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    margin: 0 10px;
}

/* Main Wrapper - 1200px Fixed */
.offers-pricelist-wrapper {
    width: 1200px;
    margin: 60px auto;
    display: flex;
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.06);
    font-family: 'Poppins', sans-serif;
}

.offers-zone, .pricelist-zone {
    width: 50%;
    padding: 60px;
    box-sizing: border-box;
}

.zone-title {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.zone-title span { color: #ff9900; }

/* Left Side: Offers Zone */
.offers-zone {
    background: #1a1a1a;
    color: white;
    position: relative;
}

.offer-badge {
    background: #ff4757;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

.promo-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ff9900;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.discount-tag {
    color: #ff9900;
    font-weight: 800;
    font-size: 13px;
    display: block;
}

.promo-icon i {
    font-size: 40px;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

.combo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.combo-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.combo-item i { color: #ff9900; font-size: 20px; }

/* Right Side: Price List Zone */
.pricelist-zone {
    background: #fdfdfd;
}

.pricelist-zone p { color: #777; margin-bottom: 35px; }

.dl-card {
    background: white;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    transition: 0.3s;
}

.dl-card:hover {
    transform: translateX(10px);
    border-color: #ff9900;
}

.dl-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dl-info i { font-size: 24px; color: #ff9900; }
.dl-info h4 { margin: 0; font-size: 16px; color: #333; }
.dl-info span { font-size: 11px; color: #999; }

.dl-btn {
    width: 45px;
    height: 45px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.dl-btn:hover {
    background: #ff9900;
    color: white;
}

/* Featured Download Style */
.highlight-dl {
    background: #fff9f0;
    border-color: #ffead1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}







/* Parent Division with Fixed Dimensions */
.main-footer-wrapper {
    width: 100%; /* Fixed PX Width */
    height: 450px; /* Fixed PX Height */
    margin: 170px auto;
    background: #1a1a1a; /* Dark professional theme */
    border-radius: 0px 0px 0px 0px;
    position: relative;
    overflow: hidden;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
}

/* Internal Container using Percentages */
.main-footer-wrapper .footer-content-inner {
    width: 100%;
    height: 80%; /* Takes up 80% of fixed height */
    display: flex;
    /* align-items: center; */
    justify-content: space-evenly;
    padding: 5% 5% 0 5%;
    box-sizing: border-box;
}

/* Columns using Percentages */
.main-footer-wrapper .footer-content-inner .footer-col {
    width: 100%; 
    padding: 0 1%;
}
.location-col {
    margin-left: 20PX;
    width: 100%; /* Wider column for locations */
}
/* Location Card Styling */
.location-col .location-card {
    /* background: rgba(255, 255, 255, 0.03); */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 15px;
    padding: 15px;
    margin-top: 10px;
    transition: all 0.4s ease;
}

.location-card:hover {
    background: rgba(255, 153, 0, 0.05);
    border-color: #ff9900;
    transform: translateY(-5px);
}

.map-icon-wrapper {
    font-size: 24px;
    color: #ff9900;
    margin-bottom: 10px;
}

.address-details p {
    font-size: 13px;
    color: #b3b3b3;
    margin: 3px 0;
    line-height: 1.4;
}

.address-details strong {
    color: white;
    display: block;
    margin-bottom: 5px;
}

/* Directions Link Styling */
.location-card .map-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #ff9900;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.map-link:hover {
    color: white;
    text-shadow: 0 0 5px #ff9900;
}

/* Map Icon Animation on Hover */
.location-card:hover .fa-map-marked-alt {
    animation: bounceMap 0.6s ease infinite alternate;
}

@keyframes bounceMap {
    from { transform: translateY(0); }
    to { transform: translateY(-5px); }
}
/* About Section */
.footer-col .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    
}

.footer-col .brand-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #b3b3b3;
}

/* Social Icons */
.footer-col .social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    background: #ff9900; /* Matching your button color */
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: #e68a00;
}

/* Links Section */
.footer-col .footer-heading {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col .footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff9900;
}

.footer-col .footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-menu li a:hover {
    color: #ff9900;
    padding-left: 8px;
}
/* Business Hours Specific Styling */
.hours-col .hours-list {
    margin-top: 10px;
}

.hours-list .hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
    font-size: 13px;
}

.hour-item .day {
    color: #b3b3b3;
    font-weight: 500;
}

.hour-item .time {
    color: white;
}

/* Highlight Sunday or Special Times */
.hour-item .time.highlight {
    color: #ff9900;
    font-weight: bold;
}

/* Seasonal Note with Pulse Animation */
.hours-col .seasonal-note {
    margin-top: 15px;
    font-size: 12px;
    color: #ff4757; /* Red/Pink for urgency */
    font-style: italic;
    animation: flashText 1.5s infinite;
}

@keyframes flashText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hover effect for the entire hours section */
.hours-col:hover .hour-item {
    border-bottom-color: rgba(255, 153, 0, 0.3);
    transition: 0.3s;
}
/* Contact Mini-Cards (Echoing your design) */
.footer-col .contact-mini-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #ff9900;
    transition: 0.3s;
}

.contact-mini-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mini-icon {
    font-size: 20px;
    color: #ff9900;
}

.mini-text span {
    display: block;
    font-size: 13px;
}

/* Bottom Bar */
.main-footer-wrapper .footer-bottom {
    width: 100%;
    height: 20%; /* Remaining 20% of fixed height */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
}


@media screen and (max-width: 768px){

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   body{
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
   }
   body::-webkit-scrollbar{
       display: none;
   }
    /* Unique CSS using SPP prefix */
.spp-main-header {
    display: block;
    height: 10vh;
    width: 100%;
    padding: 10px 10px;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 9999; /* Higher z-index to stay on top */
}

.spp-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.spp-brand-logo img {
    height: 45px;
    display: block;
}

.spp-nav-menu-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.spp-menu-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.spp-menu-link:hover {
    color: #f39c12; /* Your Theme Orange */
}

/* Mobile Specific Styles */
.spp-hamburger-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.spp-bar {
    width: 28px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}
/* Burger Animation Logic */
.spp-hamburger-trigger {
    transition: all 0.3s ease-in-out;
}

.spp-bar {
    transition: all 0.3s ease-in-out;
}

/* X Animation when active */
.spp-hamburger-trigger.spp-cross-icon .spp-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.spp-hamburger-trigger.spp-cross-icon .spp-bar:nth-child(2) {
    opacity: 0; /* Middle line disappears */
    transform: translateX(-20px);
}

.spp-hamburger-trigger.spp-cross-icon .spp-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
    .spp-hamburger-trigger {
        display: flex;
    }

    .spp-nav-menu-list {
        position: fixed;
        top: 10vh;
        right: -100%; /* Hidden by default */
        width: 250px;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        padding: 40px 20px;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    /* Unique Active Class */
    .spp-nav-menu-list.spp-is-active {
        right: 0;
    }

    .spp-menu-item {
        margin-bottom: 25px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 10px;
    }
}
   .whatsapp-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 15px;
}

/* SVG Icon Size */
.whatsapp-modern svg {
    fill: white;
    width: 35px;
    height: 35px;
}

/* Tooltip design */
.tooltip {
    position: absolute;
    right: 80px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-family: sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    white-space: nowrap;
}

/* Hover Effects */
.whatsapp-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-modern:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Simple breathing animation */
@keyframes pulse {
    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-modern {
    animation: pulse 2s infinite;
}
   .navbar{
    display: none;
    height: 100px;
    width: 100%;
    /* background-color: aqua; */
    overflow: hidden;
    padding: 15px;
   }
   .subnavbar{
    height: 100%;
    width: 100%;
    /* background-color: blue; */
    display: flex;
    align-items: center;
    justify-content: space-between;
   }
   .logo{
    height: 100%;
    width: 25%;
    /* background-color: aquamarine; */
   }
   .logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
   }
   .links{
    height: 100%;
    width: 55%;
    /* background-color: beige; */
    display: flex;
    align-items: center;
    justify-content: space-around;
   }
   .links a{
    text-decoration: none;
    color: rgba(0, 0, 0, 0.77);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

/* underline effect */
.links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: rgb(241,174,88); /* underline color */
    transition: width 0.3s ease;
}

/* hover underline */
.links a:hover::after{
    width: 0%;
}

/* active page underline */
.links a.active::after{
    width: 100%;
}
.slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.active {
    opacity: 1;
}

.content {
    margin-top: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    animation: fadeIn 1s ease-in-out;
}

.content h2 {
    font-size: 35px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.content span{
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.content p {
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    margin: 0 10px;
}

/* Main Wrapper - 1200px Fixed */
.offers-pricelist-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.06);
    font-family: 'Poppins', sans-serif;
}

.offers-zone, .pricelist-zone {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.zone-title {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.zone-title span { color: #ff9900; }

/* Left Side: Offers Zone */
.offers-zone {
    background: #1a1a1a;
    color: white;
    position: relative;
}

.offer-badge {
    background: #ff4757;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

.promo-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ff9900;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.discount-tag {
    color: #ff9900;
    font-weight: 800;
    font-size: 13px;
    display: block;
}

.promo-icon i {
    font-size: 40px;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

.combo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.combo-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.combo-item i { color: #ff9900; font-size: 20px; }

/* Right Side: Price List Zone */
.pricelist-zone {
    background: #fdfdfd;
}

.pricelist-zone p { color: #777; margin-bottom: 35px; }

.dl-card {
    background: white;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    transition: 0.3s;
}

.dl-card:hover {
    transform: translateX(10px);
    border-color: #ff9900;
}

.dl-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dl-info i { font-size: 24px; color: #ff9900; }
.dl-info h4 { margin: 0; font-size: 16px; color: #333; }
.dl-info span { font-size: 11px; color: #999; }

.dl-btn {
    width: 45px;
    height: 45px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.dl-btn:hover {
    background: #ff9900;
    color: white;
}

/* Featured Download Style */
.highlight-dl {
    background: #fff9f0;
    border-color: #ffead1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}






/* Parent Division with Fixed Dimensions */
.main-footer-wrapper {
    width: 100%; /* Fixed PX Width */
    height: auto; /* Fixed PX Height */
    margin: 170px auto;
    background: #1a1a1a; /* Dark professional theme */
    border-radius: 0px 0px 0px 0px;
    position: relative;
    overflow: hidden;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
}

/* Internal Container using Percentages */
.main-footer-wrapper .footer-content-inner {
    width: 100%;
    height: 100%; /* Takes up 80% of fixed height */
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-evenly;
    padding: 5% 5% 0 5%;
    box-sizing: border-box;
}

/* Columns using Percentages */
.main-footer-wrapper .footer-content-inner .footer-col {
    margin-top: 20px;
    width: 100%; 
    padding: 0 0%;
}
.location-col {
    margin-left: 0PX;
    width: 100%; /* Wider column for locations */
}
/* Location Card Styling */
.location-col .location-card {
    /* background: rgba(255, 255, 255, 0.03); */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 15px;
    padding: 0px;
    margin-top: 10px;
    transition: all 0.4s ease;
}

.location-card:hover {
    background: rgba(255, 153, 0, 0.05);
    border-color: #ff9900;
    transform: translateY(-5px);
}

.map-icon-wrapper {
    font-size: 24px;
    color: #ff9900;
    margin-bottom: 10px;
}

.address-details p {
    font-size: 13px;
    color: #b3b3b3;
    margin: 3px 0;
    line-height: 1.4;
}

.address-details strong {
    color: white;
    display: block;
    margin-bottom: 5px;
}

/* Directions Link Styling */
.location-card .map-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #ff9900;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.map-link:hover {
    color: white;
    text-shadow: 0 0 5px #ff9900;
}

/* Map Icon Animation on Hover */
.location-card:hover .fa-map-marked-alt {
    animation: bounceMap 0.6s ease infinite alternate;
}

@keyframes bounceMap {
    from { transform: translateY(0); }
    to { transform: translateY(-5px); }
}
/* About Section */
.footer-col .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    
}

.footer-col .brand-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #b3b3b3;
}

/* Social Icons */
.footer-col .social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    background: #ff9900; /* Matching your button color */
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: #e68a00;
}

/* Links Section */
.footer-col .footer-heading {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col .footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff9900;
}

.footer-col .footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-menu li a:hover {
    color: #ff9900;
    padding-left: 8px;
}
/* Business Hours Specific Styling */
.hours-col .hours-list {
    margin-top: 10px;
}

.hours-list .hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
    font-size: 13px;
}

.hour-item .day {
    color: #b3b3b3;
    font-weight: 500;
}

.hour-item .time {
    color: white;
}

/* Highlight Sunday or Special Times */
.hour-item .time.highlight {
    color: #ff9900;
    font-weight: bold;
}

/* Seasonal Note with Pulse Animation */
.hours-col .seasonal-note {
    margin-top: 15px;
    font-size: 12px;
    color: #ff4757; /* Red/Pink for urgency */
    font-style: italic;
    animation: flashText 1.5s infinite;
}

@keyframes flashText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hover effect for the entire hours section */
.hours-col:hover .hour-item {
    border-bottom-color: rgba(255, 153, 0, 0.3);
    transition: 0.3s;
}
/* Contact Mini-Cards (Echoing your design) */
.footer-col .contact-mini-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #ff9900;
    transition: 0.3s;
}

.contact-mini-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mini-icon {
    font-size: 20px;
    color: #ff9900;
}

.mini-text span {
    display: block;
    font-size: 13px;
}

/* Bottom Bar */
.main-footer-wrapper .footer-bottom {
    width: 100%;
    height: 60px; /* Remaining 20% of fixed height */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    font-size: 12px;
    text-align: center;
    color: #666;
}







}