:root {
    color-scheme: light;
}
html {
    scroll-behavior: smooth;
}
html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Lexend';
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    padding: 5px 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.navbar-brand img {
    object-fit: contain;
    max-height: 100px;
}

/* Navbar links */
.navbar .nav-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #4b5563;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.navbar .nav-link:hover {
    color: #ff682d;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff682d;
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

/* Free trial button */
.free-trial-btn {
    background-color: #ffe066;
    color: #4b5563;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.free-trial-btn:hover {
    background-color: #ffcc00;
    color: #2b2b2b;
}

/* Navbar toggler icon */
/* Toggler container */
.navbar-toggler {
    border: none;
    background: transparent;
    outline: none;
    padding: 5px;
    position: relative;
    width: 35px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger bars */
.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    display: block;
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: #ff682d; /* Accent color */
    border-radius: 2px;
    transition: all 0.4s ease;
}

.navbar-toggler-icon::before {
    content: "";
    top: -10px;
}

.navbar-toggler-icon {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler-icon::after {
    content: "";
    bottom: -10px;
}

.navbar-toggler.collapsed .navbar-toggler-icon::before {
    top: -10px;
}

.navbar-toggler.collapsed .navbar-toggler-icon::after {
    bottom: -10px;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* =========================
   RESPONSIVE STYLING
========================= */
@media (max-width: 992px) {
    .navbar .navbar-nav {
        background-color: rgba(255,255,255,0.97);
        backdrop-filter: blur(6px);
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .navbar .nav-item {
        width: 100%;
    }

    .navbar .nav-link {
        padding: 10px 0;
        display: block;
    }

    .free-trial-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}


 /* WELCOME SECTION */
#welcome-section {
    padding-top: 165px;
    padding-bottom: 100px;
    background: #fdfefe;
    position: relative;
    overflow: hidden;
}

.welcome-eyebrow {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fea101;
    display: block;
    margin-bottom: 16px;
}

.welcome-title {
    font-family: 'Lexend', sans-serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.25;
    color: #2b2b2b;
    margin-bottom: 16px;
}

.welcome-tagline {
    font-size: 25px;
    font-weight: 700;
    color: #ff682d;
    margin-bottom: 18px;
}

.welcome-desc {
    max-width: 520px;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #5f6368;
    margin-bottom: 30px;
    font-weight: 500;
}

.welcome-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.primary-btn {
    background-color: #ff682d;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: #fea101;
    color: #ffffff;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid #ff682d;
    color: #ff682d;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: rgba(255, 104, 45, 0.250);
}

.carousel {
    width: 100%;
    position: relative;
}

.carousel-inner {
    border-radius: 30px;
    overflow: hidden;
}

.carousel-item {
    height: 450px;
}

#welcome-section .welcome-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#welcome-section .carousel-indicators {
    display: flex;
    justify-content: center; /* horizontally center */
    gap: 12px;
    position: absolute;
    bottom: 20px;
    width: 100%; /* take full carousel width */
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 10;
}

#welcome-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

#welcome-section .carousel-indicators button.active {
    background-color: #ff682d;
    width: 15px;
    height: 15px;
    box-shadow: 0 0 8px rgba(255, 104, 45, 0.6);
}

#welcome-section .carousel-indicators button:hover {
    background-color: #fea101;
}

/* Floating ShichiDuck */
.shichiduck {
    position: absolute;
    bottom: 20px;   /* distance from bottom */
    right: 20px;    /* distance from right */
    width: 55px;    /* adjust size as needed */
    height: auto;
    z-index: 20;    /* make sure it's above carousel */
    animation: floatDuck 3s ease-in-out infinite;
}

@keyframes floatDuck {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-15px); } /* moves up */
    100% { transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .shichiduck {
        width: 50px;
        bottom: 10px;
        right: 10px;
    }
}

.learn-more-wrapper {
    text-align: center;
    margin-top: 100px;
}

.learn-more-link {
    text-decoration: none;
    color: #444444;
    font-weight: 600;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.learn-more-link span {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.learn-more-arrow {
    font-size: 18px;
    /* color: #ff682d; */
    animation: arrowBounce 1.5s infinite ease-in-out;
}

@keyframes arrowBounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    #welcome-section {
        padding: 110px 0 90px;
    }

    .welcome-title {
        font-size: 36px;
    }

    .carousel-item {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .welcome-title {
        font-size: 30px;
    }

    .welcome-desc {
        font-size: 15px;
    }

    .carousel-item {
        height: 350px;
    }

    .welcome-actions {
        gap: 12px;
    }
}


/* =========================
   WHY SECTION – FULL SCREEN & RESPONSIVE FIXED
========================= */

#why-section {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

/* Carousel full height */
#whyShichidaIndicators,
#whyShichidaIndicators .carousel-inner,
#whyShichidaIndicators .carousel-item {
    min-height: 100vh;
    border-radius: 0 !important;
}

/* Slide content */
.why-slide {
    min-height: 100vh;
    padding: 140px 60px;
    gap: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image styling */
.why-image img {
    width: 360px;
    padding: 30px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Text styling */
.why-text {
    max-width: 520px;
}

.why-text h3 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.35;
    color: #ffffff;
    transition: all 0.3s ease;
    margin: 0;
}

#why-section .carousel {
    position: relative;
}

/* Custom carousel indicators */
.carousel-indicators {
    bottom: 40px;
    gap: 10px;
    z-index: 10;
}

.carousel-indicators [data-bs-target] {
    width: 22px;
    height: 6px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.35s ease;
}

.carousel-indicators .active {
    width: 44px;
    background-color: #ff682d;
}

/* -------------------------
   Medium Screens (tablets)
------------------------- */
@media (max-width: 991px) {
    .why-slide {
        padding: 100px 24px;
        gap: 50px;
    }

    .why-image img {
        width: 280px;
    }

    .why-text h3 {
        font-size: 28px;
    }
}

/* -------------------------
   Small Screens (phones)
------------------------- */
@media (max-width: 768px) {
    #whyShichidaIndicators {
        position: relative;
    }

    /* Let carousel grow naturally */
    #why-section,
    #whyShichidaIndicators,
    #whyShichidaIndicators .carousel-inner,
    #whyShichidaIndicators .carousel-item {
        min-height: unset;
        height: auto;
    }

    .carousel-indicators {
        position: absolute !important;
        left: 50%;
        bottom: 24px;              /* controls vertical position */
        transform: translateX(-50%);
        margin: 0;
        z-index: 5;
        pointer-events: auto;
    }

    .carousel-item {
        overflow: visible;
    }

    .why-slide {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 48px 16px 80px; /* extra bottom space for dots */
        gap: 16px;
        padding-bottom: 100px;
    }

    /* Smaller image */
    .why-image img {
        width: 140px;
        max-width: 60vw;
        padding: 0;
    }

    .why-text {
        max-width: 100%;
    }

    .why-text h3 {
        font-size: 18px;
        line-height: 1.35;
        letter-spacing: 1px;
        color: #2b2b2b;
        word-break: break-word;
    }

    /* Push indicators BELOW content */
    .carousel-indicators {
        position: relative;
        bottom: 0;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {

    .why-slide {
        padding: 36px 14px 70px;
        gap: 12px;
    }

    .why-image img {
        width: 110px;
    }

    .why-text h3 {
        font-size: 16px;
    }

    .carousel-indicators [data-bs-target] {
        width: 14px;
        height: 4px;
    }

    .carousel-indicators .active {
        width: 28px;
    }
}

/* FEATURES SECTION */
#features-section {
    position: relative;
    padding: 60px 15px;
    background-image: url(https://www.shichida.com.au/wp-content/uploads/2021/12/success_image-scaled.jpg); /* replace with your image */
    background-size: cover;
    background-attachment: fixed; /* this is parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    /* optional overlay for better contrast */
    color: #333;
}

#features-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(174, 174, 174, 0.7); /* light overlay to keep text readable */
    z-index: 0;
}

#features-section .d-flex {
    position: relative; /* so feature cards are above overlay */
    z-index: 1;
}

#features-section .feature-item {
    width: 280px;
    padding: 25px 20px;
    border-radius: 25px;
    /* soft gradient background */
    background: rgba(246, 250, 253, 0.80);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

#features-section .feature-item::after {
    content: '';
    width: 40px;
    height: 3px;
    background: #E91E63;
    margin: 10px auto 0;
    border-radius: 10px;
    display: block;
}
#features-section .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}
#features-section .feature-item img {
    width: 100px;
    height: 100px;
    padding: 15px;
    border-radius: 50%;
    background: #E91E63;
    object-fit: contain;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08); /* subtle shadow */
    transition: all 0.3s ease;
}

#features-section .feature-item img:hover {
    transform: scale(1.1);
}

#features-section .feature-text {
    font-weight: 800;
    letter-spacing: 2px;
    color: #333;
    font-size: 18px;
    margin-top: 15px;
    display: block;
}

#features-section .d-flex {
    gap: 30px; /* spacing between cards */
}

@media (max-width: 768px) {
    #features-section .feature-item {
        width: 45%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    #features-section .feature-item {
        width: 100%;
    }

    #features-section .feature-text {
        font-size: 16px;
        letter-spacing: 1px;
    }
}


/* ABOUT SECTION */
#about-section .img-frame {
    display: inline-block;
    padding: 12px;
    /* black border thickness */
    background-color: #f3f4f6;
    border-radius: 25px;
    position: relative;
}

#about-section .img-fixed {
    width: 550px;
    /* 👈 exact size you want */
    height: 550px;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

#about-section .list {
    list-style: none;
    padding-left: 0;
}

#about-section .list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #4b5563;
}

#about-section .list i {
    color: #ffcc00;
    margin-top: 4px;
}

#about-section .shichida-quote {
    padding-left: 20px;
    border-left: 4px solid #ff682d;
    font-style: italic;
    color: #555;
    max-width: 650px;
}

#about-section .shichida-quote span {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #333;
}

.about-content {
    align-items: flex-start;
    /* desktop: left aligned */
}

/* Small screens */
@media (max-width: 1200px) {
    .about-content {
        align-items: center;
        /* center the whole block */
        margin-top: 40px;
        /* space above title */
    }

    .about-content h1,
    .about-content p,
    .about-content ul,
    .about-content blockquote {
        max-width: 650px;
        width: 100%;
    }
}
@media (max-width: 576px) {

    #about-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    #about-section .img-fixed {
        width: 100%;
        max-width: 100%;  /* smaller only on phones */
        height: 500px;
        object-fit: cover;
    }

    #about-section .img-frame {
        display: block;
        margin: 0 auto;
    }

}

/* =========================
   PROGRAM SECTION
========================= */
#program-section {
    padding-top: 200px;
    padding-bottom: 200px;
    background: #F2F7F4;
}

#program-section h1 {
    font-family: Lexend, sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    color: #111827;
}

#program-section p {
    font-family: Quicksand, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #4b5563;
}

#program-section .row {
    gap: 24px;
}

#program-section .program-card {
    max-width: 320px;
    height: 260px;
    margin: auto;
    padding: 26px 22px;
    border-radius: 28px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#program-section .card-front,
#program-section .card-back {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#program-section .card-back {
    display: none;
}

#program-section .program-card.active .card-front {
    display: none;
}

#program-section .program-card.active .card-back {
    display: flex;
}

#program-section .card-front i {
    font-size: 34px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff682d, #fea101);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 10px 22px rgba(255, 104, 45, 0.35);
}

#program-section h5 {
    font-weight: 800;
    letter-spacing: 1.6px;
    font-size: 17px;
    margin-bottom: 14px;
    color: #111827;
}

#program-section .card-back p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #374151;
}

#program-section .read-more-btn {
    margin-top: 10px;
    background: rgba(255, 104, 45, 0.12);
    color: #ff682d;
    border: none;
    padding: 8px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
        transition: all 0.3s ease;

}
#program-section .read-more-btn:hover {
    background: #ff682d;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 104, 45, 0.3);
    transform: translateY(-2px);
}

#program-section .back-btn {
    background: none;
    border: none;
    color: #ff682d;
    font-size: 18px;
    margin-bottom: 12px;
    cursor: pointer;
}


/* =========================
   BENEFITS SECTION
========================= */

#benefits-section {
    padding-top: 200px;
    padding-bottom: 200px;
    background: #fdfefe;
    font-family: 'Quicksand', sans-serif;
}

.benefits-container {
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    border-radius: 32px;
    padding: 60px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: none;
}

.benefits-container .text-center h1 {
    font-weight: 600;
    font-size: 40px;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 12px;
    color: #111827;
}

.benefits-container .text-center p {
    font-size: 17px;
    font-weight: 600;
    color: #4b5563;
}

#benefit-section {
    background-color: white;
}
.benefit-card {
    width: 320px;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    padding: 30px 20px;
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Icon styles */
.benefit-card i {
    font-size: 36px;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff682d, #fea101);
    transition: all 0.3s ease;
}

.benefit-card:hover i {
    transform: scale(1.2);
}

/* Heading */
.benefit-card h5 {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 1.2px;
    color: #111827;
}

.benefit-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 992px) {
    .benefit-card {
        width: 45%;
        margin: 20px auto;
    }

    .benefits-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 768px) {
    .benefit-card {
        width: 90%;
        margin: 20px auto;
        padding: 25px 15px;
    }

    .benefits-container .text-center h1 {
        font-size: 28px;
    }

    .benefits-container .text-center p {
        font-size: 16px;
    }

    .benefits-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}


/* ========================= */
/* MEET OUR TEAM */
/* ========================= */
#team-section{
    background: #f5f9fd;
    padding-top: 200px;
    padding-bottom: 200px;
    position: relative;
}

.team-image-wrapper{
    position:relative;
    display:inline-block;
}

.team-photo{
    width:700px;
    height: 500px;
    object-fit: cover;
    max-width:100%;
    border-radius:30px;
    position:relative;
    z-index:2;
    box-shadow:0 10px 10px rgba(0,0,0,0.08);
}

.duck{
    width:150px;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:1;
    opacity:0.95;
}

.duck-left{
    left:-32%;
    transform:translateY(-50%) rotate(-15deg);
}

.duck-right{
    right:-32%;
    transform:translateY(-50%) rotate(15deg);
}

.team-features{
    margin-top:35px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    font-family:Quicksand;
}

.feature-pill{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 24px;
    background:linear-gradient(145deg,#ffffff,#f7fbff);
    border-radius:60px;
    font-weight:700;
    font-size:17px;
    letter-spacing:0.2px;
    color:#374151;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    transition:all 0.25s ease;
}

.feature-pill i{
    display:flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    border-radius:50%;
    background:#fff1d9;
    color:#ff682d;
    font-size: 20px;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.feature-pill:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(0,0,0,0.1);
}


 /* =========================
   CONTACT SECTION
========================= */
#contact-section {
    background: #fef7cdbb; /* soft cream */
    padding-top: 80px;
    padding-bottom: 80px;
    font-family: 'Quicksand', sans-serif;
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-family: 'Lexend', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.contact-header p {
    color: #4b5563;
    font-weight: 600;
    font-size: 17px;
}

/* Wrapper */
.contact-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Card */
.contact-card {
    background-color: #ffffff;
    max-width: 750px;
    width: 100%;
    padding: 50px 40px;
    border-radius: 32px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

/* Card Title */
.contact-card h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111827;
}

/* Contact rows */
.contact-row {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    color: #4b5563;
    line-height: 1.6;
    align-items: flex-start;
    font-weight: 600;
}

.contact-row i {
    color: #ff682d;
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-row a {
    color: #4b5563;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-row a:hover {
    color: #fea101;
}

/* Map */
.map-wrapper {
    margin-top: 30px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.row.mt-3.mb-3 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.contact-row .d-flex span {
    color: #111827;
    font-weight: 500;
}

#contact-section .free-trial-btn {
    background-color: #ffecb3;
    width: 100%;
    border-radius: 100px;
    padding: 12px 0;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

#contact-section .free-trial-btn a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 700;
    font-size: 16px;
    display: block;
}

#contact-section .free-trial-btn:hover {
    background: #ffdd66;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,104,45,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }

    .contact-header h1 {
        font-size: 32px;
    }

    .contact-header p {
        font-size: 15px;
    }

    .contact-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media (max-width: 576px) {
    .contact-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* =========================
   SITE FOOTER - 4 COLUMNS
========================= */

#site-footer {
    background-color: #f9fafb;
    font-family: 'Quicksand', sans-serif;
    padding: 60px 20px 30px;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* COLUMN STYLES */
.footer-column {
    flex: 1 1 220px;
}

/* BRAND / TAGLINE */
.footer-column h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: black;
}

.footer-column p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    font-weight: bold;
}

/* HEADINGS FOR EXPLORE / CONTACT / HOURS */
.footer-column h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
    color: black;
    letter-spacing: 1px;
    font-family: 'Lexend';
}

/* LISTS */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.footer-column ul li i {
    color: #ff682d;
}

.footer-column ul li a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fea101;
}


/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #e5e7eb;
    padding-top: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
    background-color: #f9fafb;
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .footer-container {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-column ul li {
        font-size: 13px;
    }
    .footer-column h2 {
        font-size: 20px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 9999;
    flex-wrap: nowrap;
}

.whatsapp-text {
    background-color: white;
    color: #2b2b2b;
    padding: 5px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.whatsapp-icon {
    background-color: #25D366;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effects */
.whatsapp-text:hover {
    color: black;
}
.whatsapp-icon:hover {
    color: white;
}

/* Mobile view – stack vertically or hide text */
@media (max-width: 576px) {
    .whatsapp-text {
        display: none; /* only icon shows */
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}