*{
    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: 80vh;
    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 */
.contact-page-wrapper {
    width: 1200px;
    margin: 60px auto;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.05);
    font-family: 'Poppins', sans-serif;
}

.contact-inner {
    display: flex;
    min-height: 700px;
}

/* Left Side: Form (60%) */
.contact-form-side {
    width: 60%;
    padding: 80px;
    background: #ffffff;
}

.contact-form-side h2 { font-size: 36px; color: #1a1a1a; margin-bottom: 10px; }
.contact-form-side p { color: #777; margin-bottom: 40px; }

.pyro-form .input-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.pyro-form input, .pyro-form select, .pyro-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fcfcfc;
    font-family: inherit;
    transition: 0.3s;
}

.pyro-form input:focus, .pyro-form textarea:focus {
    border-color: #ff9900;
    background: #fff;
    outline: none;
    box-shadow: 0 5px 15px rgba(255,153,0,0.1);
}

.submit-btn {
    background: #1a1a1a;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #ff9900;
    transform: translateY(-3px);
}

/* Right Side: Info Panel (40%) */
.contact-info-side {
    width: 40%;
    background: #1a1a1a;
    padding: 80px 50px;
    color: white;
    display: flex;
    flex-direction: column;
}

.info-header { margin-bottom: 50px; }
.info-header h3 { font-size: 24px; margin-bottom: 10px; }

.status-indicator {
    font-size: 13px;
    color: #2ed573;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator .dot {
    width: 8px;
    height: 8px;
    background: #2ed573;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.connect-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.connect-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: white;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    transition: 0.3s;
}

.connect-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.connect-item i { font-size: 24px; color: #ff9900; }
.connect-item strong { display: block; font-size: 16px; }
.connect-item span { font-size: 13px; color: #aaa; }

.social-wrapper { margin-top: auto; }
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover { background: #ff9900; border-color: #ff9900; }

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}











/* 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: 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: 30px;
    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 */
.contact-page-wrapper {
    width: 100%;
    margin: 40px auto;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.05);
    font-family: 'Poppins', sans-serif;
}

.contact-inner {
    display: flex;
    flex-direction: column;
    min-height: 700px;
}

/* Left Side: Form (60%) */
.contact-form-side {
    width: 100%;
    padding: 20px;
    background: #ffffff;
}

.contact-form-side h2 { font-size: 36px; color: #1a1a1a; margin-bottom: 10px; }
.contact-form-side p { color: #777; margin-bottom: 40px; }

.pyro-form .input-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.pyro-form input, .pyro-form select, .pyro-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fcfcfc;
    font-family: inherit;
    transition: 0.3s;
}

.pyro-form input:focus, .pyro-form textarea:focus {
    border-color: #ff9900;
    background: #fff;
    outline: none;
    box-shadow: 0 5px 15px rgba(255,153,0,0.1);
}

.submit-btn {
    background: #1a1a1a;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #ff9900;
    transform: translateY(-3px);
}

/* Right Side: Info Panel (40%) */
.contact-info-side {
    width: 100%;
    background: #1a1a1a;
    padding: 50px 30px;
    color: white;
    display: flex;
    flex-direction: column;
}

.info-header { margin-bottom: 50px; }
.info-header h3 { font-size: 24px; margin-bottom: 10px; }

.status-indicator {
    font-size: 13px;
    color: #2ed573;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator .dot {
    width: 8px;
    height: 8px;
    background: #2ed573;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.connect-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.connect-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: white;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    transition: 0.3s;
}

.connect-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.connect-item i { font-size: 24px; color: #ff9900; }
.connect-item strong { display: block; font-size: 16px; }
.connect-item span { font-size: 13px; color: #aaa; }

.social-wrapper { margin-top:20px; }
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover { background: #ff9900; border-color: #ff9900; }

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}






/* 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;
}







}