
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Poppins', sans-serif; background: #f5f5f5; }

  /* ============================================================
     HEADER
  ============================================================ */
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
       background: #ffffff;
   
  }

  .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  /* LOGO */
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }

  .logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  /* NAV */
  nav.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
  }

  nav.main-nav > a,
  .nav-dropdown > a {
    color: #000000;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
  }


  /* Dropdown */
  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
  }

  .nav-dropdown > a i {
    font-size: 0.7rem;
    transition: transform 0.2s;
  }

  .nav-dropdown:hover > a i {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 180px;
    background: #1a0d07;
    border: 1px solid rgba(200,121,42,0.3);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 100;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #e0d0c0;
    text-decoration: none;
    font-size: 0.88rem;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .dropdown-menu a:last-child { border-bottom: none; }
  .dropdown-menu a:hover { background: rgba(200,121,42,0.15); color: #fff; }

  /* BOOK NOW */
  .btn-book {
    background: transparent;
    border: 2px solid red;
    color: red;
    padding: 16px 30px;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
    
    cursor: pointer;
   
  }

  .btn-book:hover { background: #a83000; transform: translateY(-1px); }

  .btn-book i { font-size: 0.85rem; }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e0d0c0;
    border-radius: 2px;
    transition: all 0.3s;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* MOBILE SIDE PANEL */
  .mobile-panel {
    display: none;
    position: fixed;
    top: 0; right: -320px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    flex-direction: column;
    overflow-y: auto;
  }

  .mobile-panel.open { right: 0; }

  .mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
     border-bottom: 1px solid rgb(255 0 0);
  }

  .panel-close {
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
  }

  .mobile-panel nav {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
  }

  .mobile-panel nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 24px;
      color: #000000;
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s, color 0.2s;
  }

  .mobile-panel nav a:hover { background: rgba(200,121,42,0.12); color: #fff; }

  .mobile-sub {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.2);
  }

  .mobile-sub.open { display: flex; }

  .mobile-sub a {
    padding-left: 38px !important;
    font-size: 0.88rem !important;
    color: #c0a888 !important;
  }

  .mobile-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 24px;
    color: #e0d0c0;
    font-size: 0.96rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    background: none;
    border-top: none; border-left: none; border-right: none;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    transition: background 0.2s;
  }

  .mobile-toggle-btn:hover { background: rgba(200,121,42,0.12); color: #fff; }

  .mobile-toggle-btn i { transition: transform 0.25s; }
  .mobile-toggle-btn.open i { transform: rotate(180deg); }

  .overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1999;
  }

  .overlay.show { display: block; }

  /* ============================================================
     DEMO BODY (placeholder)
  ============================================================ */
  .page-body {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 60px 20px;
    text-align: center;
  }

  .page-body h2 { font-size: 1.5rem; color: #3b1f0e; font-weight: 700; }
  .page-body p { color: #7a6a5a; font-size: 0.95rem; }

  /* ============================================================
     FOOTER
  ============================================================ */
  footer {
background-image: linear-gradient(240deg, #010F1C 48%, #2B201B 100%);
    color: #c8bfb5;
    padding: 60px 30px 0;
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  /* COL 1 — Brand */
  .footer-brand .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
  }

  .footer-brand .footer-logo svg { width: 34px; height: 34px; fill: #c8792a; }
  .footer-brand .footer-logo span { font-size: 1.1rem; font-weight: 700; color: #fff; }

  .footer-brand p {
    font-size: 0.84rem;
    line-height: 1.75;
    color: #fff;
    max-width: 260px;
    margin-bottom: 20px;
  }

  .social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
    flex-wrap: wrap;
  }

  .social-icons a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: #c8bfb5;
    font-size: 0.88rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  .social-icons a:hover { border-color: #c8792a; color: #fff; background: rgba(200,121,42,0.15); }

  .google-biz {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 14px;
    text-decoration: none;
    transition: background 0.2s;
  }

  .google-biz:hover { background: rgba(255,255,255,0.1); }

  .google-g {
    width: 36px; height: 36px;
    background: #fff;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(135deg,#4285F4,#34A853,#FBBC05,#EA4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 36px;
  }

  .google-biz-text { display: flex; flex-direction: column; }
  .google-biz-text span:first-child { font-size: 0.82rem; color: #fff; font-weight: 600; line-height: 1.2; }
  .google-biz-text span:last-child { font-size: 0.72rem; color: #a09080; }

  /* FOOTER COLUMNS */
  .footer-col h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c8792a;
    display: inline-block;
  }

  .footer-col ul {
    list-style: none;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;;
    text-decoration: none;
    font-size: 0.87rem;
    transition: color 0.2s;
  }

  .footer-col ul li a i {
    color: #fff;;
    font-size: 0.75rem;
    width: 16px;
  }

  .footer-col ul li a:hover { color: #ffffff; }

  /* Contact Info Col */
  .contact-col h4 {
     font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c8792a;
    display: inline-block;
  }

  .contact-items { margin-top: 14px; display: flex; flex-direction: column; gap: 18px; }

  .c-item h5 {
    font-size:18px;
    font-weight: 700;
    color: red;
    margin-bottom: 5px;
  }

  .c-item p, .c-item a {
    font-size: 0.84rem;
    color:#fff;;
    line-height: 1.65;
    text-decoration: none;
    display: block;
  }

  .c-item a:hover { color: #c8792a; }

  /* Copyright */
  .footer-bottom {
    padding: 18px 0;
    text-align: center;
    font-size: 0.82rem;
    color: #fff;
  }

  /* WhatsApp Float */
  .whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .wa-label {
    background: #fff;
    color: #333;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    white-space: nowrap;
  }

  .wa-btn {
    width: 50px; height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.45);
    transition: transform 0.2s;
  }

  .wa-btn:hover { transform: scale(1.1); }

  /* ============================================================
     RESPONSIVE
  ============================================================ */
  @media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }

  @media (max-width: 768px) {
    nav.main-nav, .btn-book { display: none; }
    .hamburger { display: flex; }
    .mobile-panel { display: flex; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  }


.about-us-image{
	display: block;
}

.about-us-img img{
	width: 100%;
	height: auto;
	display: block;
}
.about-us{
	background: url(images/about-bg-image.png) no-repeat;
	background-position: top center;
	background-size: 100% auto;
	padding: 100px 0;
}

.about-us-content{
	margin-right: 50px;
}

.about-body-item{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.about-body-item:last-child{
	margin-bottom: 0;
}

.about-body-item .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 30px;
}

.about-body-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-body-item:hover .icon-box::before{
	transform: scale(1);
}

.about-body-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.about-body-item:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.about-body-list-content{
	width: calc(100% - 90px);
}

.about-body-list-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-body-list-content p{
	margin-bottom: 0;
}

.about-us-footer{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
	margin-top: 60px;
}

.video-play-button{
	display: inline-flex;
    align-items: center;
    justify-content: center;
}

.video-play-button a{
	position: relative;
	height: 50px;
	width: 50px;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	margin-right: 30px;
}

.video-play-button a:before{
	content: '';
	position: absolute;
	top: -53%;
	left: -53%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after{
	content: '';
	position: absolute;
	top: -53%;
	left: -53%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button i{
	font-size: 18px;
	color: var(--secondary-color);
	margin-left: 3px;
}

.video-play-button p{
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
	margin: 0;
}

.about-us-image{
	position: relative;
	padding-left: 70px;
}

.about-us-img figure{
	border-radius: 400px 400px 0 0;
	display: block;
}

.about-us-img img{
	width: 100%;
	aspect-ratio: 1 / 1.237;
	object-fit: cover;
	border-radius: 400px 400px 0 0;
}

.opening-time-box{
	position: absolute;
	bottom: 50px;
	left: 0;
	width: 100%;
	max-width: 320px;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 26px;
	padding: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.opening-time-box:hover{
	background-position: right center;
}

.opening-time-box .icon-box{
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-bottom: 15px;
}

.opening-time-box .icon-box i{
	font-size: 24px;
	color: var(--primary-color);
}

.opening-time-content h3{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--secondary-color);
	margin-bottom: 20px;
}

.opening-time-content ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.opening-time-content ul li{
	color: var(--secondary-color);
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.opening-time-content ul li:last-child{
	margin-bottom: 0;
}

.opening-time-content ul li span{
	width: 45%;
}
