*{
    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: 100vh;
    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;
}


/* Container - 1200px Fixed */
.shipping-page-wrapper {
    width: 1200px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 40px;
    padding: 60px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* box-shadow: 0 40px 100px rgba(0,0,0,0.04); */
}

/* Header */
.shipping-header {
    text-align: center;
    margin-bottom: 70px;
}

.ship-icon-circle {
    width: 80px;
    height: 80px;
    background: #ff9900;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.3);
}

.shipping-header h1 { font-size: 38px; color: #1a1a1a; margin-bottom: 10px; }
.shipping-header p { color: #888; font-size: 16px; }

/* Horizontal Process Flow */
.shipping-process {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 80px;
}

.shipping-process::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #f0f0f0;
    z-index: 1;
}

.process-step {
    width: 20%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #ff9900;
    color: #ff9900;
    border-radius: 50%;
    line-height: 55px;
    font-weight: 800;
    margin: 0 auto 15px;
    font-size: 20px;
    transition: 0.3s;
}

.process-step:hover .step-icon {
    background: #ff9900;
    color: white;
    transform: scale(1.1);
}

.process-step h4 { font-size: 16px; margin-bottom: 8px; color: #333; }
.process-step p { font-size: 13px; color: #777; line-height: 1.4; }

/* Timeline Table Layout */
.timeline-section h2 { font-size: 24px; margin-bottom: 30px; text-align: center; }

.timeline-table {
    background: #fcfcfc;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.table-row {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.table-row.header {
    background: #1a1a1a;
    color: white;
    font-weight: 600;
}

.cell { flex: 1; font-size: 15px; }

/* Shipping Notes */
.shipping-notes {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.note-item {
    background: #fff9f0;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.note-item i { color: #ff9900; font-size: 20px; }
.note-item p { font-size: 13px; color: #555; margin: 0; line-height: 1.5; }






/* 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;
}


/* Container - 1200px Fixed */
.shipping-page-wrapper {
    width: 100%;
    margin: 0px auto;
    background: #ffffff;
    border-radius: 40px;
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* box-shadow: 0 40px 100px rgba(0,0,0,0.04); */
}

/* Header */
.shipping-header {
    text-align: center;
    margin-bottom: 70px;
}

.ship-icon-circle {
    width: 80px;
    height: 80px;
    background: #ff9900;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.3);
}

.shipping-header h1 { font-size: 26px; color: #1a1a1a; margin-bottom: 10px; }
.shipping-header p { color: #888; font-size: 16px; }

/* Horizontal Process Flow */
.shipping-process {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 80px;
}

.shipping-process::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #f0f0f0;
    z-index: 1;
}

.process-step {
    width: 20%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #ff9900;
    color: #ff9900;
    border-radius: 50%;
    line-height: 55px;
    font-weight: 800;
    margin: 0 auto 15px;
    font-size: 20px;
    transition: 0.3s;
}

.process-step:hover .step-icon {
    background: #ff9900;
    color: white;
    transform: scale(1.1);
}

.process-step h4 { font-size: 16px; margin-bottom: 8px; color: #333; }
.process-step p { font-size: 13px; color: #777; line-height: 1.4; }

/* Timeline Table Layout */
.timeline-section h2 { font-size: 24px; margin-bottom: 30px; text-align: center; }

.timeline-table {
    background: #fcfcfc;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.table-row {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.table-row.header {
    background: #1a1a1a;
    color: white;
    font-weight: 600;
}

.cell { flex: 1; font-size: 15px; }

/* Shipping Notes */
.shipping-notes {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.note-item {
    background: #fff9f0;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.note-item i { color: #ff9900; font-size: 20px; }
.note-item p { font-size: 13px; color: #555; margin: 0; line-height: 1.5; text-align: center; }









/* 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;
}







}