/* ---------- GLOBAL ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* ---------- HEADER ---------- */
header.top-header {
    width: 100%;
    padding: 18px 7%;
    background-color: skyblue ; /* Light cleaning color */
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
}

/* ---------- LOGO ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 125px;
    height: 125px;
}

.logo h1 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    text-shadow: 5px 5px 5px blue;
}

/* ============================
   TABLET (max-width: 992px)
============================ */
@media (max-width: 992px) {
    header.top-header {
        padding: 14px 5%;
    }

    .logo img {
        width: 90px;
        height: 90px;
    }

    .logo h1 {
        font-size: 1.9rem;
    }

    .nav-links {
        gap: 20px;
    }

    .contact-box {
        display: none; /* optional: hides phone box on tablet */
    }
}

/* ============================
   MOBILE (max-width: 768px)
============================ */
@media (max-width: 768px) {
    header.top-header {
        padding: 12px 5%;
    }

    .logo img {
        width: 70px;
        height: 70px;
    }

    .logo h1 {
        font-size: 1.6rem;
    }

    /* Hide desktop nav */
    .navbar {
        display: none;
    }

    /* Hamburger */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: #fff;
        border-radius: 5px;
        transition: 0.3s;
    }

    /* Mobile dropdown menu */
    .mobile-menu {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: #C4A484;
        padding: 20px 0;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        z-index: 999;
    }

    .mobile-menu a {
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
        font-weight: 600;
    }

    .mobile-menu.active {
        display: flex;
    }
}

/* ---------- NAVBAR ---------- */
.navbar ul {
    display: flex;
    list-style: none;
    gap: 28px;
    
}

.navbar a {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    transition: 0.2s;
    text-shadow: 5px 5px 5px blue;
    text-decoration: none;
}

.navbar a:hover {
    color: blue;
}



.who-we-are {
    scroll-margin-top: 80px; /* adjust to your navbar height */
}


  .btn {
    display: inline-block;
    padding: 14px 28px;
    background:blue; 
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Hover effect */
.btn:hover {
    background: lightblue;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Click effect */
.btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}


/* ============================
   TABLET (max-width: 992px)
============================ */
@media (max-width: 992px) {
    .navbar ul {
        gap: 20px;
    }

    .navbar a {
        font-size: 1.4rem;
    }
}

/* ============================
   MOBILE (max-width: 768px)
============================ */
@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: #C4A484;
        padding: 25px 0;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 22px;
        z-index: 999;
    }

    .mobile-menu a {
        color: #fff;
        font-size: 1.6rem;
        font-weight: 500;
        text-shadow: 5px 5px 5px black;
        text-decoration: none;
    }

    .mobile-menu a:hover {
        color: #2a1803;
    }

    .mobile-menu.active {
        display: flex;
    }
    
 
}


/* ---------- DROPDOWN ---------- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 32px;
    left: 0;
    background: #111;
    padding: 10px 0;
    border-radius: 4px;
    min-width: 150px;
    transition: 0.2s ease;
}

.dropdown-menu li {
    padding: 8px 15px;
}

.dropdown-menu li a {
    color: #fff;
}

.dropdown.open .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

/* ---------- CONTACT BOX ---------- */
.contact-box {
    display: flex;
    align-items: center;
    background: #10B981;
    padding: 20px 30px;
    border-radius: 6px;
    gap: 10px;
    color: #fff;
    text-shadow: 5px 5px 5px black;
}

.small-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
}

/* UNIVERSAL CONTACT BOX FIX */
.contact-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    height: auto;
    padding: 12px 20px;
    justify-content: center;
    text-align: center;
}

.contact-box > div {
    min-width: 0;
    flex: 1;
}

.contact-box a,
.contact-box span,
.phone-number {
    white-space: normal !important;
    font-size: 0.9rem;
    line-height: 1.2;

    color: #ffffff !important;   /* <-- THIS fixes the blue */
    text-decoration: none;
}
a[href^="tel"] {
    color: #ffffff !important;
    text-decoration: none !important;
}
/* ---------- HERO SECTION ---------- */
.hero {
    width: 100%;
    min-height: 100vh;
    padding: 120px 7% 60px; /* header space + breathing room */
    margin-top: 50px;
    display: flex;
    align-items: center;
    background: #000;
    position: relative;
    overflow: hidden;
    background-image: url('image2.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


    section.hero {
margin-top: 90px;
}

/* Background image on the right */
.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.75);
}

/* Content on the left */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: skyblue; /* Light cleaning color */
    margin-bottom: 10px;
    text-shadow: 5px 5px 5px black;
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
    text-shadow: 5px 5px 5px black;
}

.hero-text {
    font-size: 1.6rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
    text-shadow: 5px 5px 5px skyblue; /* Light cleaning color */
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 28px;
    font-size: 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
}

.btn.primary {
    background: skyblue; /* Light cleaning color */ 
    color: #000;
}

.btn.primary:hover {
    background: white;
}

.btn.outline {
    border: 2px solid #fff;
    color: #fff;
    
}

.btn.outline:hover {
    background: #fff;
    color:skyblue; /* Light cleaning color */
}




/* ============================
   MOBILE HERO (≤ 768px)
============================ */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 170px 7% 60px; /* extra top margin for portrait mobile */
        flex-direction: column;
        text-align: center;
        margin-top: 0;
        background-position: center;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        z-index: 2;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
        font-size: 1.4rem;
        padding: 12px 20px;
    }
    

}

/* ---------- WHO WE ARE SECTION ---------- */
.who-we-are {
    width: 100%;
    padding: 100px 7%;
    background-color: skyblue;   /* Light cleaning color */
     background-image: url('image105.png');
}

.wwa-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 25px;
    gap: 60px;
}

/* LEFT SIDE */
.wwa-left {
    flex: 1;
}

.wwa-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.wwa-title {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: skyblue; /* Light cleaning color */
   }

.wwa-text {
    font-size: 1.6rem;
    line-height: 1.7;
    color:black; 
    text-shadow: 5px 5px 5px white;
}

/* RIGHT SIDE */
.wwa-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: white;
    text-shadow: 5px 5px 5px black;
}

.wwa-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.wwa-icon {
    width: 55px;
    height: 55px;
    text-shadow: 5px 5px 5px black;
    color: skyblue; /* Light cleaning color */
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.wwa-item h4 {
    font-size: 1.8rem;
    margin-bottom: 6px;
    color:black;
     text-shadow: 5px 5px 5px white;
}

.wwa-item p {
    font-size: 1.5rem;
    color:black;
     text-shadow: 5px 5px 5px white;
}

.wwa-icon {
    color: skyblue; /* Light cleaning color */
    font-size: 1.5rem;
    font-weight: bold;
}

.marsh-img {
    width: 500px;
    height: 500px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}

/* MOBILE WHO WE ARE */
@media (max-width: 768px) {
    .who-we-are {
        padding: 70px 7%;
        text-align: center;
    }

    .wwa-container {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .wwa-left,
    .wwa-right {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

    .wwa-subtitle {
        font-size: 1.5rem;
    }

    .wwa-title {
        font-size: 2.4rem;
        line-height: 1.25;
    }

    .wwa-text {
        font-size: 1.3rem;
    }

    .wwa-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .wwa-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .wwa-item h4 {
        font-size: 1.5rem;
    }

    .wwa-item p {
        font-size: 1.2rem;
    }

    .marsh-img {
        width: 260px;
        height: 260px;
    }
}

/* TABLET WHO WE ARE */
@media (max-width: 992px) {
    .who-we-are {
        padding: 80px 5%;
    }

    .wwa-container {
        gap: 40px;
    }

    .wwa-title {
        font-size: 2.8rem;
    }

    .wwa-text {
        font-size: 1.4rem;
    }

    .wwa-item h4 {
        font-size: 1.6rem;
    }

    .wwa-item p {
        font-size: 1.3rem;
    }

    .wwa-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .marsh-img {
        width: 380px;
        height: 380px;
    }
}

/* ---------- SPECIAL COFFEE BEANS SECTION ---------- */
.special-beans {
    width: 100%;
    padding: 100px 7%;
    background: skyblue; /* Light cleaning color */
    color: #fff;
    text-align: center;
    
    background-size: cover;
    background-position: center;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

#special-beans {
    scroll-margin-top: 175px;
}

.beans-subtitle {
    color: blue; /* Light cleaning color */
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 5px 5px 5px white;
}

.beans-title {
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 50px;
    text-shadow: 5px 5px 5px black;
    
}

/* MOBILE SPECIAL BEANS */
@media (max-width: 768px) {
    .special-beans {
        padding: 70px 7%;
        text-align: center;
        background-position: center;
    }

    .beans-title {
        font-size: 2.4rem;
        line-height: 1.25;
        margin-bottom: 30px;
    }

    .beans-subtitle {
        font-size: 1.4rem;
    }

    .beans-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 100%;
        
    }

    .bean-card {
        padding: 18px;
    }

    .bean-card h4 {
        font-size: 1.5rem;
    }

    .bean-card p {
        font-size: 1.2rem;
    }

    .bean-btn {
        width: 100%;
        max-width: 240px;
        padding: 10px 14px;
        font-size: 1.3rem;
    }
}

/* TABLET SPECIAL BEANS */
@media (max-width: 992px) {
    .special-beans {
        padding: 80px 5%;
        background-position: center;
    }

    .beans-title {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }

    .beans-subtitle {
        font-size: 2.6rem;
    }

    .beans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .bean-card h4 {
        font-size: 1.6rem;
    }

    .bean-card p {
        font-size: 1.3rem;
    }

    .bean-btn {
        font-size: 1.3rem;
        padding: 10px 16px;
    }
}

/* ---------- GRID ---------- */
.beans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    
}

/* TABLET GRID */
@media (max-width: 992px) {
    .beans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* MOBILE GRID */
@media (max-width: 768px) {
    .beans-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* ---------- CARD ---------- */
.bean-card {
    background: rgb(1, 51, 67);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    transition: 0.3s ease;
}

.bean-card:hover {
    transform: translateY(-6px);
}

.bean-img {
    width: 300px;
    height: 275px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
    margin-bottom: 15px;
}

.bean-card h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.bean-card p {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 20px;
    text-shadow: 5px 5px 5px black;
}

.bean-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #10B981;
    color: #fff;
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
    text-shadow: 5px 5px 5px black;
}

.bean-btn:hover {
    background: #0e9a6c;
}

/* MOBILE CARD */
@media (max-width: 768px) {
    .bean-card {
        padding: 16px;
        text-align: center;
    }

    .bean-img {
        height: 150px;
        border-radius: 6px;
    }

    .bean-card h4 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .bean-card p {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .bean-btn {
        width: 100%;
        max-width: 220px;
        padding: 10px 14px;
        font-size: 1.3rem;
    }
}

/* TABLET CARD */
@media (max-width: 992px) {
    .bean-card {
        padding: 18px;
    }

    .bean-img {
        height: 160px;
    }

    .bean-card h4 {
        font-size: 1.6rem;
    }

    .bean-card p {
        font-size: 1.3rem;
    }

    .bean-btn {
        font-size: 1.3rem;
        padding: 9px 16px;
    }
}

/* SECTION WRAPPER */
.approach-section {
  background: white;  /* light blue */
  padding: 80px 0;
  color:skyblue; /* Light cleaning color */
  font-family: "Inter", sans-serif;
  background-image: url('image105.png');
    background-size: cover;
}
  

/* LAYOUT */
.approach-container {
  width: 90%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* TEXT SIDE */
.section-label {
  font-size: 25px;
  font-weight: 600;
  color:skyblue; /* Light cleaning color */
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 65px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 40px;
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: 40px;
  color: black;
}

/* PHASE BOX */
.phase-box {
  background: skyblue; /* Light cleaning color */;
  padding: 25px 30px;
  border-radius: 12px;
  border-left: 4px blue; /* Light cleaning color */
  max-width: 520px;
  margin: 25px;
}

.phase-title {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.phase-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.phase-desc {
  font-size: 16px;
  line-height: 1.6;
  color: white;
}

/* IMAGE SIDE */
.approach-image img {
  width: 580px;
  
  height:580px;
  border-radius: 14px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .approach-container {
    flex-direction: column;
    text-align: left;
  }

  .approach-image img {
    max-width: 100%;
  }
}

.process-section {
  background-image: url('image105.png');
  background-size: cover;
  padding: 80px 0;
  font-family: "Inter", sans-serif;
}

.process-container {
  width: 90%;
  max-width: 1250px;
  margin: 0 auto;
}

.process-header {
  max-width: 850px;
  margin-bottom: 50px;
}

.process-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.process-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
#process-grid {
  scroll-margin-top: 360px; /* adjust this number */
}
.stage-number {
  font-size: 14px;
  font-weight: 700;
  color: blue;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.stage-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.stage-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
 
/* Responsive */
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== INFO SECTION LAYOUT ========== */
.info-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: url('image105.png');
    background-size: cover;
    margin: 60px auto;
    width: 100%;
    max-width: 1400px;
    overflow: hidden;
    border-radius: 10px;
    justify-content: center;
    align-items: stretch;
    scroll-margin-top: 200px;
    font-size: 25px;
    
}

.info-hours a {
    color: black !important;
    text-decoration: none;
}

.info-hours a:hover {
    text-decoration: underline;
}

/* TABLET INFO SECTION */
@media (max-width: 992px) {
    .info-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        font-size: 22px;
        margin: 50px auto;
    }
}

/* MOBILE INFO SECTION */
@media (max-width: 768px) {
    .info-section {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px;
        font-size: 20px;
        margin: 40px auto;
    }
}

/* LEFT IMAGE */
.info-image img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    align-items: center;
    justify-content: center;
    margin: 50px 35px;
}

/* TABLET IMAGE */
@media (max-width: 992px) {
    .info-image img {
        width: 280px;
        height: 280px;
        margin: 40px auto;
    }
}

/* MOBILE IMAGE */
@media (max-width: 768px) {
    .info-image img {
        width: 220px;
        height: 220px;
        margin: 30px auto;
        display: block;
    }
}

/* OPENING HOURS */
.info-hours {
    background: url('image105.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;   
    color: black; 
    
    padding: 40px 30px;
    
    
}

.hours-phone {
    color: black !important;
}

.info-hours h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.info-hours ul {
    list-style: none;
    padding: 0;
}

.info-hours li {
    margin-bottom: 12px;
    font-size: 1.8rem;
}

.info-hours span {
    font-weight: bold;
}

.info-hours h4 {
    font-size: 25px;
}

/* RESERVATION BOX */
.info-reservation {
    background:lightblue; /* Light cleaning color */
     background-image: url('image105.png');
     background-size: cover;
     background-position: center;
    color:  black;
    padding: 40px 30px;
}

.info-reservation h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-reservation p {
    margin-bottom: 12px;
    font-size: 1rem;
}

.contact-btn {
    margin-top: 20px;
    padding: 12px 20px;
    background: #10b981;
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #0d966a;
}

/* MOBILE INFO HOURS & RESERVATION */
@media (max-width: 768px) {
    .info-hours,
    .info-reservation {
        padding: 25px 20px;
        text-align: center;
    }

    .info-hours h2,
    .info-reservation h2 {
        font-size: 1.4rem;
        margin-bottom: 14px;
    }

    .info-hours ul {
        padding: 0;
    }

    .info-hours li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .info-hours h4 {
        font-size: 20px;
    }
.info-reservation * {
color: white !important;
}


    .info-reservation p {
        font-size: 0.9rem;
    }

    .contact-btn {
        width: 100%;
        max-width: 240px;
        padding: 10px 16px;
        font-size: 1rem;
        margin-top: 16px;
    }

    .info-hours ul,
    .info-hours li,
    .info-hours span {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
        
    }
}

/* TABLET INFO HOURS & RESERVATION */
@media (max-width: 992px) {
    .info-hours,
    .info-reservation {
        padding: 30px 25px;
        align-items: center;
    }

    .info-hours a[href^="tel"] {
        color: #ffffff !important;
        text-decoration: none !important;
    }

    .info-hours h2,
    .info-reservation h2 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .info-hours li,
    .info-reservation p {
        font-size: 0.95rem;
    }

    .info-hours h4 {
        font-size: 22px;
    }

    .contact-btn {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}

/* ===========================
   MODERN FOOTER — CENTERED
=========================== */
/* Footer Base */
.footer {
  background: #0d1b2a;
  color: #ffffff;
  padding: 60px 0 30px;
  font-family: "Inter", sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Brand Column */
.footer-logo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-socials a {
  margin-right: 15px;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.8;
}

.footer-socials a:hover {
  opacity: 1;
}

/* Column Titles */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #dce3e9;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.85;
}

.footer-col ul li a:hover {
  opacity: 1;
}

/* Newsletter */
.newsletter-box {
  display: flex;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}

.newsletter-box input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.send-btn {
  background: #1b263b;
  color: #ffffff;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
}

.send-btn:hover {
  background: #415a77;
}

.newsletter-text {
  font-size: 14px;
  opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
  width: 90%;
  max-width: 1300px;
  margin: 40px auto 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-copy {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* =========================
   MOBILE FIX (≤ 768px)
========================= */
@media (max-width: 768px) {

    .menu-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .menu-left,
    .menu-right {
        width: 100%;
    }

    .menu-section {
        font-size: 30px;
        margin: 25px 0;
    }

    .menu-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .menu-text h4 {
        font-size: 26px;
    }

    .menu-text p {
        font-size: 1.1rem;
    }

    .price {
        font-size: 22px;
        margin-left: 0;
    }

    .menu-feature-title {
        font-size: 1.8rem;
    }

    .menu-feature-desc {
        font-size: 1.2rem;
    }

    .menu-feature-price {
        font-size: 1.5rem;
    }
}
/* =========================
   TABLET FIX (≤ 992px)
========================= */
@media (max-width: 992px) {

    .menu-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .menu-left,
    .menu-right {
        width: 100%;
        max-width: 650px;
    }

    .menu-section {
        font-size: 38px;
    }

    .menu-text h4 {
        font-size: 32px;
    }

    .menu-text p {
        font-size: 1.3rem;
    }

    .price {
        font-size: 28px;
    }

    .menu-feature-title {
        font-size: 2rem;
    }

    .menu-feature-desc {
        font-size: 1.4rem;
    }

    .menu-feature-price {
        font-size: 1.8rem;
    }
}
/* Testimonial Section */
.sp-testimonials {
  background: lightblue;
  padding: 90px 0;
  font-family: "Inter", sans-serif;
}

.sp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 40px;
}

.sp-testimonial-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  transition: 0.3s ease;
}

.sp-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.sp-testimonial-stars {
  font-size: 20px;
  color: blue;;
  margin-bottom: 15px;
}

.sp-testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

.sp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sp-testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.sp-testimonial-author h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}

.sp-testimonial-author span {
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 900px) {
  .sp-testimonial-grid {
    grid-template-columns: 1fr;
  }
}























