/* ============================================================
   THEME & GLOBAL - LIGHT MODE ONLY
============================================================ */
:root {
  --primary: #2f5b3c;
  --secondary: #c59b6d;
  --bg: #f4f2ec;
  --bg-alt: #ffffff;
  --card: #ffffff;
  --text: #222222;
  --muted: #6f7478;
  --border-subtle: #e3e1da;
  --transition: 0.3s ease;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top left, #fdfcf8 0, var(--bg) 45%, #ece8dd 100%);
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
  line-height: 1.6;
}

section {
  padding: 90px 60px;
}

@media (max-width: 768px) {
  section {
    padding: 70px 20px;
  }
}

/* ============================================================
   LOADING SCREEN - Modern & Smooth
============================================================ */
#loadingScreen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; 
  height: 100%;
  background: #fdfdfd; /* soft background instead of plain white */
  display: flex; 
  justify-content: center; 
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.loader {
  width: 80px; 
  height: 80px;
  border: 6px solid #e0e0e0;
  border-top: 6px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: relative;
}

/* Add inner pulsating circle */
.loader::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 1.2s ease-in-out infinite;
}

/* Spin animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Pulse animation */
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.4; }
}

/* ============================================================
   NAVBAR - Modern & Fresh
============================================================ */

nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: 70px; /* taller for spacing */
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff; /* solid clean background */
  box-shadow: 0 4px 12px rgba(211, 204, 204, 0.08); /* subtle shadow */
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
  background: #e8eaec;
  box-shadow: 0 6px 18px rgba(5, 5, 5, 0.514);
}

/* Logo */
.logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Links container */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  color: #433a72; /* muted dark */
  text-transform: uppercase;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Buttons */
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-btn{
  background: linear-gradient(135deg,#2f5b3c,#4f8f6a);
  color:#fff !important;
  padding:10px 22px;
  border-radius:25px;
  font-weight:600;
  font-size:0.9rem;
  letter-spacing:0.5px;
  text-decoration:none;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
  transition:all 0.3s ease;
}

.order-btn:hover{
  background: linear-gradient(135deg,#1e3d29,#2f5b3c);
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.nav-links .order-btn{
  color:white !important;
}

.cart-indicator {
  position: relative;
  background: #f0f2f5;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0848b1;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, background 0.3s ease;
}

.cart-indicator:hover {
  transform: scale(1.05);
  background: #e4e6eb;
}

.cart-indicator span {
  min-width: 20px;
  height: 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Theme toggle */
#themeToggle {
  background: var(--secondary);
  border: none;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

#themeToggle:hover {
  transform: scale(1.05);
  background: var(--primary);
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    padding: 0 16px;
    height: 60px;
  }
  .nav-links {
    display: none; /* keep burger menu for mobile */
  }
  .order-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}


/* ============================================================
   HERO SLIDER - Modern Style
============================================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* Slides */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  align-items: center;
  padding-inline: min(8%, 120px);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Overlay */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.92), rgba(15, 23, 42, 0.2));
  mix-blend-mode: multiply;
}

/* Slide content */
.slide .content {
  position: relative;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.9);
  padding: 28px 32px;
  border-radius: 18px;
  color: var(--text);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border: 1px solid rgba(148, 163, 184, 0.2);
  animation: fadeUp 0.8s ease forwards;
}

.slide .content h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  color: var(--primary);
}

.slide .content p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.slide .content button {
  background: var(--primary);
  border-radius: 50px;
  padding: 10px 24px;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.slide .content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  background: #25432e; /* slightly darker hover */
}

/* Fade Up Animation for content */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-slider { height: 80vh; }
  .slide { padding-inline: 20px; }
  .slide .content { padding: 22px 20px; max-width: 100%; }
}

/* Navigation arrows */
.arrows {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 14px;
}

.arrows span {
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--primary);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(148,163,184,0.35);
  padding: 6px 12px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.arrows span:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}
/* ============================================================
   PRODUCTS GRID - Modern & Premium Style
============================================================ */
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

/* Card styling */
.card {
  background: linear-gradient(145deg, #ffffff, #f5f7fa);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  border-color: rgba(37, 67, 46, 0.25);
  background: linear-gradient(145deg, #ffffff, #e8f0f5);
}

/* Card image */
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
}

/* Card content */
.card-content {
  padding: 18px;
}

.card-content h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
}

.card-content p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Button styling */
.card-content button {
  background: linear-gradient(135deg, var(--primary), #25432e);
  color: white;
  border: none;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

.card-content button:hover {
  background: linear-gradient(135deg, #25432e, #1a2d1b);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   TESTIMONIAL STRIP - Modern Style
============================================================ */
.testimonial-box {
  width: min(900px, 100%);
  margin: 60px auto 20px;
  position: relative;
  display: flex;            /* changed from grid to flex for smooth carousel feel */
  overflow-x: auto;         /* horizontal scroll if multiple testimonials */
  gap: 20px;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.testimonial {
  min-width: 300px;         /* makes cards uniform */
  flex: 0 0 auto;
  display: none;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 22px 24px;
  background: linear-gradient(145deg, #ffffff, #f2f5f8);
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial.active {
  display: block;
  transform: scale(1.03);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 2.2rem;
  color: rgba(0, 0, 0, 0.15);
  pointer-events: none;
  font-weight: 600;
}

.testimonial p {
  margin-top: 12px;
  color: #1f2937;
}

.testimonial-author {
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

.testimonial:hover {
  transform: scale(1.05);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.22);
}

/* Optional scrollbar removal for sleek look */
.testimonial-box::-webkit-scrollbar {
  display: none;
}
.testimonial-box {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial {
    min-width: 250px;
    padding: 18px 20px;
  }
}

/* ============================================================
   CONTACT BOX
============================================================ */
.contact-box {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: var(--card);
  backdrop-filter: blur(14px);
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border-subtle);
}
input, textarea {
  width: 100%;
  padding: 11px 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-alt);
  color: var(--text);
  font-size: 0.95rem;
}
button.send {
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   CART BOX - Modern Style
============================================================ */
#cart {
  position: fixed;
  right: 20px;
  top: 100px;
  width: 280px;
  max-height: 400px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 20px 18px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: none;
  overflow-y: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
  font-family: 'Poppins', sans-serif;
  z-index: 1100;
}

#cart.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

#cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

#cart-item:last-child {
  border-bottom: none;
}

#cart-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
}

#cart-item .item-info {
  flex: 1;
  margin-left: 10px;
}

#cart-item .item-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 4px;
}

#cart-item .item-info span {
  font-size: 0.8rem;
  color: #555;
}

#cart .remove-btn {
  background: #ff4b4b;
  color: #fff;
  border: none;
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 4px 8px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

#cart .remove-btn:hover {
  transform: scale(1.05);
  background: #d73636;
}

/* ============================================================
   BACK TO TOP BUTTON - Modern Style
============================================================ */
#backToTop {
  position: fixed;
  right: 22px;
  bottom: 90px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #0084ff, #0053aa);
  color: #fff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  z-index: 1200;
  transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease;
}

#backToTop:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0053aa, #0084ff);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

body.dark #backToTop {
  background: linear-gradient(135deg, #0b1120, #16203c);
}


/* ============================================================
   CHATBOT UI - Compact Messenger Style
============================================================ */

#chatbotBtn:hover{
  transform:scale(1.12);
}


/* ==============================
CHATBOT BUTTON
============================== */

#chatbotBtn{
  position:fixed;
  bottom:20px;
  right:20px;
  width:56px;
  height:56px;
  border-radius:50%;

  background:linear-gradient(135deg,#14532d,#22c55e);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:24px;
  color:white;

  cursor:pointer;
  box-shadow:0 12px 30px rgba(0,0,0,0.35);

  transition:.3s;
}

#chatbotBtn:hover{
  transform:scale(1.15);
}


/* ==============================
CHATBOX
============================== */

#chatBox{
  position:fixed;
  bottom:85px;
  right:18px;
  width:310px;
  height:460px;

  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(12px);

  border-radius:18px;
  display:none;
  flex-direction:column;
  overflow:hidden;

  box-shadow:0 25px 60px rgba(0,0,0,0.35);

  font-family:'Poppins',sans-serif;
}


/* ==============================
HEADER
============================== */

#chatHeader{
  background:linear-gradient(135deg,#166534,#22c55e);

  color:white;
  padding:12px 14px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  font-size:14px;
  font-weight:600;
}

#chatHeader button{
  border:none;
  background:rgba(255,255,255,0.2);
  color:white;
  padding:4px 8px;
  border-radius:8px;
  cursor:pointer;
  font-size:12px;
}


/* ==============================
MESSAGES AREA
============================== */

#chatMessages{
  flex:1;
  padding:12px;
  overflow-y:auto;
  display:flex;
  flex-direction:column;
  gap:8px;

  background:#f7f6f2;
}


/* ==============================
CHAT BUBBLES
============================== */

.msg{
  max-width:75%;
  padding:8px 12px;
  border-radius:16px;
  font-size:13px;
}

.user{
  align-self:flex-end;
  background:#166534;
  color:white;
  border-bottom-right-radius:5px;
}

.bot{
  align-self:flex-start;
  background:white;
  border:1px solid #e5e5e5;
  border-bottom-left-radius:5px;
}


/* ==============================
TYPING ANIMATION
============================== */

.typing{
  display:flex;
  gap:4px;
}

.typing span{
  width:6px;
  height:6px;
  background:#888;
  border-radius:50%;
  animation:typing 1.2s infinite;
}

.typing span:nth-child(2){
  animation-delay:0.2s;
}

.typing span:nth-child(3){
  animation-delay:0.4s;
}

@keyframes typing{
  0%,80%,100%{opacity:0}
  40%{opacity:1}
}


.prompt-chip{
  padding:5px 10px;
  font-size:11px;

  background:white;
  border:1px solid #ddd;
  border-radius:16px;

  cursor:pointer;
}

.prompt-chip:hover{
  background:#22c55e;
  color:white;
}

#chatPrompts{
  display:none;
  flex-wrap:wrap;
  gap:6px;
  padding:8px;
  background:#fafafa;
  border-top:1px solid #eee;
}


/* ==============================
INPUT AREA
============================== */

#chatInputBox{
  display:flex;
  gap:6px;
  padding:8px;
  border-top:1px solid #eee;
  background:white;
}

#chatInputBox input{
  flex:1;
  padding:8px 12px;
  border-radius:18px;
  border:1px solid #ddd;
  font-size:13px;
  outline:none;
}

#chatInputBox button{
  width:38px;
  height:38px;
  border-radius:50%;
  border:none;
  background:#166534;
  color:white;
  cursor:pointer;
}


/* MIC */

#micBtn{
  background:#f3f4f6;
  color:#166534;
}

#micBtn.recording{
  background:#ef4444;
  color:white;
}


/* SCROLLBAR */

#chatMessages::-webkit-scrollbar{
  width:4px;
}

#chatMessages::-webkit-scrollbar-thumb{
  background:#22c55e;
  border-radius:4px;
}

/* ============================================================
   FOOTER - Scrolling Text
============================================================ */
footer {
  background: #0f172a;
  color: #e5e7eb;
  text-align: center;
  padding: 22px 0;
  font-weight: 500;
  font-size: 0.9rem;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

footer.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* Scroll container */
.footer-scroll {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  left: 100%;
  animation: scrollText 20s linear infinite;
}

/* Animation */
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Optional: add dark mode support */
body.dark footer {
  background: #020617;
}

.parallax {
  background-image: url('images/tea-leaves.png');
  background-attachment: fixed;
  background-size: cover;
}

.steam {
  position: absolute;
  top: 10px;
  width: 4px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: rise 2s infinite ease-in-out;
}

@keyframes rise {
  0% { transform: translateY(0) scaleX(1); opacity: 0.6; }
  50% { transform: translateY(-20px) scaleX(1.2); opacity: 1; }
  100% { transform: translateY(-50px) scaleX(1); opacity: 0; }
}
.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(47,91,60,0.3);
}
img {
  width: 150px;
  height: auto;
}

/* WHY CHOOSE US */
.why-us {
  text-align: center;
  padding: 70px 20px;
  background: #fff;
}

.why-us h2 {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* Container */
.why-us-container {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

/* Box */
.why-box {
  background: #f8f9ff;
  width: 280px;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.07);
  transition: 0.3s ease;
}

/* Hover effect */
.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Image */
.why-box img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Title */
.why-box h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
  color: var(--primary);
}

/* Description */
.why-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  padding: 0 5px;
}

/* LOCATION SECTION */

.location-section{
padding:60px 20px;
background:#f8fafc;
}

.loc-title{
text-align:center;
font-size:2rem;
margin-bottom:40px;
color:#1f2937;
}

.loc-container{
max-width:1100px;
margin:auto;
display:flex;
gap:30px;
align-items:stretch;
flex-wrap:wrap;
}

.loc-card{
flex:1;
min-width:280px;
background:#ffffff;
padding:25px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
line-height:1.6;
}

.loc-heading{
font-size:1.3rem;
margin-bottom:10px;
}

.map-box{
flex:1;
min-width:300px;
height:350px;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.map-box iframe{
width:100%;
height:100%;
border:0;
}

.btn-group{
display:flex;
gap:10px;
margin-top:15px;
flex-wrap:wrap;
}

.loc-btn{
padding:8px 14px;
text-decoration:none;
border-radius:6px;
font-size:14px;
color:#fff;
}

.call-btn{
background:#2563eb;
}

.whatsapp-btn{
background:#25D366;
}

.map-btn{
background:#f97316;
}


/* MOBILE */

@media(max-width:768px){

.loc-container{
flex-direction:column;
}

.map-box{
height:280px;
}

}