* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
}

/* HEADER */
.header {
    background: #111;
    color: #fff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
}

.header a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.whatsapp {
    background: #25D366;
    padding: 8px 15px;
    border-radius: 4px;
}

/* HERO */
.hero {
    height: 80vh;
    background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e") center/cover;
}

.overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.search-box {
    margin-top: 20px;
    background: #fff;
    padding: 15px;
    display: flex;
    gap: 10px;
    border-radius: 6px;
}

.search-box select,
.search-box button {
    padding: 10px;
}

.search-box button {
    background: #ff9800;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* STATS */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background: #fff;
}

.stat {
    font-size: 24px;
    text-align: center;
}

.stat span {
    display: block;
    font-size: 14px;
    color: #777;
}

/* HOARDINGS */
.hoardings {
    padding: 50px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 10px;
    border-radius: 6px;
}

.card img {
    width: 100%;
}

.status {
    display: inline-block;
    padding: 4px 8px;
    margin: 10px 0;
    color: #fff;
    font-size: 12px;
}

.status.vacant { background: green; }
.status.booked { background: red; }

/* PROCESS */
.process {
    background: #111;
    color: #fff;
    padding: 50px;
    text-align: center;
}

.steps {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

/* CONTACT */
.contact {
    padding: 40px;
    background: #fff;
}

.contact form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact input,
.contact textarea {
    margin-bottom: 10px;
    padding: 10px;
}

.contact button {
    background: #ff9800;
    border: none;
    padding: 10px;
    color: #fff;
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 15px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f6f8;
    color: #222;
}
.header {
    background: #0c0c0c;
    padding: 14px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.header nav a {
    color: #fff;
    margin: 0 14px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.header nav a:hover {
    color: #ff9800;
}

.whatsapp {
    background: #25D366;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
}
.hero {
    height: 85vh;
    background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e") center/cover no-repeat;
}

.overlay {
    background: linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.65)
    );
    height: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay h1 {
    font-size: 42px;
    font-weight: 600;
    max-width: 900px;
    line-height: 1.2;
}

.overlay p {
    margin-top: 12px;
    font-size: 16px;
    color: #ddd;
}
.search-box {
    margin-top: 30px;
    background: #ffffff;
    padding: 18px;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.search-box select {
    padding: 12px;
    min-width: 160px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.search-box button {
    padding: 12px 22px;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}

.search-box button:hover {
    background: #e68900;
}
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    padding: 50px 80px;
    text-align: center;
}

.stat {
    font-size: 26px;
    font-weight: 600;
}

.stat span {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #777;
}
/* navbar */
/* NAVBAR */
.navbar {
    width: 100%;
    background: rgba(10,10,10,0.95);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 15px rgba(0,0,0,0.35);
}

/* CONTAINER */
.nav-container {
    max-width: 1280px;
    margin: auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-logo {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.4px;
}

.nav-logo span {
    color: #ff9800;
}

/* MENU */
.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-menu a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
}

/* underline animation */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff9800;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* ACTIONS */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}
@media (max-width: 900px) {
    .nav-menu {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #0c0c0c;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 20px 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
/* AVAILABLE HOARDINGS */
.available-section {
    padding: 70px 0;
    background: #f6f7f9;
}

.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 6px;
}

.section-header p {
    color: #666;
    font-size: 14px;
}

/* GRID */
.hoarding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
}

/* CARD */
.hoarding-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease;
}

.hoarding-card:hover {
    transform: translateY(-6px);
}

/* TOP BADGE */
.card-top {
    padding: 16px;
    text-align: right;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.badge.vacant { background: #2e7d32; }
.badge.booked { background: #c62828; }

/* BODY */
.card-body {
    padding: 0 20px 20px;
}

.card-body h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 16px;
}

/* SPECS */
.specs {
    display: flex;
    gap: 30px;
}

.specs div {
    font-size: 13px;
}

.specs strong {
    display: block;
    font-size: 12px;
    color: #999;
}

.specs span {
    font-weight: 500;
    color: #222;
}

/* FOOTER */
.card-footer {
    margin-top: auto;
    padding: 18px 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 12px;
}

.btn-outline {
    flex: 1;
    text-align: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.btn-primary {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: #ff9800;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.btn-primary:hover {
    background: #e68900;
}

.btn-disabled {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}
/* STATS SECTION */
.stats-section {
    background: #ffffff;
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

.stats-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

/* STAT BOX */
.stat-box h3 {
    font-size: 28px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.stat-box p {
    font-size: 14px;
    color: #777;
    letter-spacing: 0.3px;
}

/* subtle divider line between items */
.stat-box:not(:last-child) {
    border-right: 1px solid #eee;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-box:not(:last-child) {
        border-right: none;
    }
}
/* PREMIUM STATS SECTION */
.stats-pro {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 55px 0;
}

.stats-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* STAT ITEM */
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.25);
}

/* ICON */
.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(255,255,255,0.15);
}

/* TEXT */
.stat-text h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.stat-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .stats-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }
}
.stats-pro {
    margin-top: -40px;   /* pulls it slightly up */
    padding: 60px 0 70px;
    border-radius: 24px 24px 0 0;
}
.hero {
    margin-bottom: 80px;   /* ADD THIS */
}
/* STATS SECTION – FINAL PRO VERSION */
.stats-pro {
    background: #f9fafb;
    padding: 40px 0 20px;   /* LESS HEIGHT */
}

.stats-wrap {
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* STAT ITEM */
.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ICON */
.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ff9800;
}

/* TEXT */
.stat-text h3 {
    font-size: 26px;
    font-weight: 600;
    color: #111;
    line-height: 1;
}

.stat-text p {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

/* DIVIDERS */
.stat-item:not(:last-child) {
    border-right: 1px solid #eee;
    padding-right: 24px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .stats-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item:not(:last-child) {
        border-right: none;
        padding-right: 0;
    }
}

.stat-text {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.stat-text {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.stat-item {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    height: auto;
}

.stat-icon {
    flex-shrink: 0;
}
/* book now */
body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

.book-btn {
  padding: 12px 25px;
  background: #f7c600;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
}

.modal-box {
  width: 800px;
  max-width: 95%;
  margin: 5% auto;
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

/* Left */
.modal-left {
  width: 45%;
  background: linear-gradient(135deg,#444,#111);
  color: #fff;
  padding: 30px;
  text-align: center;
}

.modal-left img {
  width: 100%;
  margin-top: 20px;
  border-radius: 8px;
}

/* Right */
.modal-right {
  width: 55%;
  padding: 30px;
  position: relative;
}

.modal-right h3 {
  margin-bottom: 20px;
}

.modal-right input,
.modal-right select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
}

.modal-right button {
  width: 100%;
  padding: 12px;
  background: #111;
  color: #f7c600;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
}
/* map */
.map-btn{
    display:inline-block;
    padding:8px 14px;
    background:#1e88e5;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-size:14px;
    font-weight:500;
    transition:0.3s;
}

.map-btn:hover{
    background:#1565c0;
}
/* weeks */
.week-box{
    margin-top:12px;
}

.week-box label{
    font-size:13px;
    font-weight:500;
    display:block;
    margin-bottom:5px;
}

.week-box select{
    padding:6px 8px;
    border-radius:6px;
    border:1px solid #ddd;
    font-size:14px;
}

.total-display{
    margin-top:6px;
    font-weight:600;
    color:#1e88e5;
}
/* form */
.card-btn-group {
    display: flex;
    gap: 10px;
}

.btn-book {
    flex: 1;
    text-align: center;
    background: #2563eb;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-book:hover {
    background: #1d4ed8;
}

.btn-pay {
    flex: 1;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-pay:hover {
    background: #333;
}
/* get_hoardings */
/* ===== Hoarding Search Results ===== */

.hoarding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 40px;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.book-btn {
    background: orange;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

.not-available-btn {
    background: #ccc;
    padding: 10px;
    border: none;
    width: 100%;
    border-radius: 8px;
}
/* badge */
.status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    z-index: 10;
}

.status-badge.available {
    background-color: #28a745; /* Green */
}

.status-badge.booked {
    background-color: #dc3545; /* Red */
}
.hoarding-card {
    position: relative;
}

.status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    z-index: 10;
}

.status-badge.available {
    background-color: #28a745;
}

.status-badge.booked {
    background-color: #dc3545;
}

.location-text {
    font-size: 14px;
    color: #666;
    margin: 5px 0 8px;
}
.map-link {
    display: inline-block;
    margin: 6px 0;
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.map-link:hover {
    text-decoration: underline;
}
.hoarding-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
    color: #fff;
    z-index: 5;
}

.status-badge.available {
    background: #22c55e;
}

.status-badge.booked {
    background: #ef4444;
}
/* card */
/* Overlay */
.no-result-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease;
}

/* Popup Box */
.popup-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: popupScale 0.4s ease;
}

.popup-box h2 {
    margin-bottom: 10px;
}

.popup-box p {
    margin: 8px 0;
    font-size: 15px;
}

.popup-box .sub-text {
    color: #ff9800;
    font-weight: 600;
}

.popup-box button {
    margin-top: 20px;
    padding: 10px 25px;
    border: none;
    background: #ff9800;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.popup-box button:hover {
    background: #e68900;
}

/* Animations */
@keyframes popupScale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.hoarding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.hoarding-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    padding: 15px;
    flex: 1; /* pushes footer down */
    display: flex;
    flex-direction: column;
}

.card-footer {
    padding: 15px;
    margin-top: auto;
}
/* header */
.navbar {
  background: #0f172a;
  padding: 10px 0;
}

.nav-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 🔥 THIS FIXES YOUR BIG LOGO ISSUE */
.nav-logo img {
  height: 40px;      /* perfect navbar size */
  width: auto;
  max-width: 120px;  /* prevents stretching */
  object-fit: contain;
  display: block;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: #f97316;
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #22c55e;
  padding: 8px 16px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.nav-logo img {
    height: 45px;
    width: auto;
    display: block;
}
/* client section */
.clients-section {
  padding: 60px 0;
  background: #f8f9fb;
  text-align: center;
}

.slider-wrapper {
  overflow: hidden;
}

.slider-row {
  overflow: hidden;
  margin-bottom: 20px;
}

.slider-track {
  display: flex;
  width: max-content;
}

.left-slide {
  animation: slideLeft 40s linear infinite;
}

.right-slide {
  animation: slideRight 40s linear infinite;
}

.client-card {
  width: 200px;
  height: 140px;
  margin: 0 15px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.client-card:hover {
  transform: translateY(-6px);
}

.client-card img {
  max-width: 130px;
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
}

.client-card p {
  font-size: 14px;
  font-weight: 500;
}

@keyframes slideLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes slideRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* POPUP */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 400px;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}
/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        padding: 10px 15px;
    }

    /* Logo size */
    .logo {
        font-size: 18px;
    }

    /* Search Card */
    .search-card,
    .form-wrapper {
        width: 90%;
        margin: auto;
        padding: 20px;
    }

    /* Inputs */
    input,
    select {
        width: 100%;
        font-size: 14px;
    }

    /* Buttons */
    button,
    .btn,
    .search-btn {
        width: 100%;
        font-size: 15px;
    }

    /* Hoarding Cards */
    .hoarding-grid {
        grid-template-columns: 1fr !important;
    }

    .card {
        width: 100%;
    }

    /* Fix extra spacing */
    body {
        overflow-x: hidden;
    }
}
/* ================= MOBILE NAVBAR FIX ================= */
.menu-toggle {
    display: none;
}

/* Only Mobile */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
        color: white;
    }

    .nav-right {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000;
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        z-index: 999;
    }

    .nav-right.active {
        display: flex;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        padding: 10px 0;
        display: block;
    }

    .nav-actions {
        margin-top: 10px;
    }
}
/* ================= BOOKING CARD ================= */

.booking-card {
    width: 500px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Image */
.booking-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Inputs */
.booking-card input,
.booking-card select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

/* Buttons */
.booking-card button {
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    margin-top: 10px;
    cursor: pointer;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {

    .booking-card {
        width: 90%;
        margin: 20px auto;
        padding: 20px;
    }

    .booking-card button {
        width: 100%;
        margin-bottom: 10px;
    }
}
.contact-main-heading{
    text-align:center;
    font-size:36px;
    margin:60px 0 30px;
    font-weight:700;
}

.contact-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    padding:0 20px;
}

.contact-info{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:white;
    padding:40px;
    border-radius:20px;
}

.contact-info h2{
    margin-bottom:25px;
}

.info-box{
    margin-bottom:20px;
}

.contact-form-box{
    background:#f8fafc;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.form-group{
    margin-bottom:15px;
}

.form-row{
    display:flex;
    gap:15px;
    margin-bottom:15px;
}

.form-row input{
    width:50%;
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    padding:12px 15px;
    border-radius:8px;
    border:1px solid #ddd;
    font-size:14px;
}

.contact-btn{
    background:#f97316;
    color:white;
    padding:12px 25px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    transition:0.3s;
}

.contact-btn:hover{
    background:#ea580c;
}

/* Floating WhatsApp */
.wa-float{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:white;
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    cursor:pointer;
    box-shadow:0 5px 20px rgba(0,0,0,0.3);
    z-index:999;
}

/* Mobile Responsive */
@media(max-width:768px){
    .contact-container{
        grid-template-columns:1fr;
    }
    .form-row{
        flex-direction:column;
    }
    .form-row input{
        width:100%;
    }
}
.contact-title{
    margin:30px 0 30px !important;
}
.faq-section{
    margin-bottom:20px !important;
    padding-bottom:0 !important;
}
/* payment */
.book-btn,
.pay-btn {
    font-family: 'Poppins', sans-serif;   /* Use your website font */
    font-weight: 600;                     /* Same thickness */
    font-size: 16px;                      /* Same size */
    letter-spacing: 0.5px;                /* Optional - cleaner look */
}
/* image */
/* ===== OFFICE GALLERY SECTION ===== */
.office-gallery-section{
    padding:60px 0;
    background:#f9f9f9;
    text-align:center;
}

.section-title{
    font-size:32px;
    font-weight:700;
    color:#1e3a8a;
    margin-bottom:10px;
    position:relative;
}

.section-title::after{
    content:"";
    width:80px;
    height:4px;
    background:#f97316;
    display:block;
    margin:10px auto 0;
    border-radius:5px;
}

.section-subtitle{
    color:#555;
    margin-bottom:40px;
}

/* Slider Image */
.slider-img{
    height:450px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;
}

/* POPUP */
.popup{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
}

.popup img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

.close-btn{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:white;
    cursor:pointer;
}