/* ================= MOBILE APP CSS ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #111;
  font-size: 14px;
  line-height: 1.5;
  padding-top: 60px; /* header height */
  padding-bottom: 70px; /* bottom nav height */
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, select, textarea {
  font-family: inherit;
}

/* ===== APP HEADER ===== */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 999;
}

.app-header .dp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
}

.app-header .logo img {
  height: 40px;
}

.app-header .notification {
  font-size: 20px;
  cursor: pointer;
}

/* ===== SLIDER ===== */
.app-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 60px;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.slide-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
}

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.slider-dots span {
  display: block;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
}

.slider-dots span.active {
  background: #d4af37;
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  padding: 15px;
}

.portfolio-grid .card {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.portfolio-grid .card img {
  width: 100%;
  border-radius: 8px;
}

.portfolio-grid .card h4 {
  margin-top: 8px;
  font-size: 14px;
}

/* ===== CTA BUTTON ===== */
.cta {
  padding: 15px;
  text-align: center;
}

.cta .btn {
  background: #d4af37;
  color: #000;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

/* ===== BOTTOM NAVIGATION ===== */
.app-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #f5f5f5;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  z-index: 999;
}

.app-bottom a {
  text-align: center;
  font-size: 12px;
  color: #111;
}

.app-bottom a i {
  display: block;
  font-size: 20px;
  margin-bottom: 2px;
}

.app-bottom a.active {
  color: #d4af37;
}

/* ===== GET A QUOTE / ENQUIRY MODAL ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 15px;
  z-index: 9999;
}

.modal-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
}

.modal-box h2 {
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
}

.modal-box .form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.modal-box input,
.modal-box select,
.modal-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.modal-box textarea {
  resize: vertical;
  min-height: 60px;
}

.modal-box button {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #d4af37;
  color: #000;
  font-weight: 500;
  cursor: pointer;
}

.modal-box .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

/* ===== HIDE FOOTER, GET IN TOUCH & SIDEBAR FOR APP VIEW ===== */
@media (max-width: 768px) {
  .contact,       /* Get in Touch section */
  .site-footer,    /* Footer */
  .v-sidebar {     /* Sidebar */
    display: none !important;
  }
}
/* Hide Bottom Navigation on Desktop */
@media (min-width: 769px) {
  .app-bottom {
    display: none !important;
  }

  body {
    padding-bottom: 0; /* remove bottom space on desktop */
  }
}
/* ===== MODAL BACKGROUND ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none; /* IMPORTANT – default closed */
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 15px;
}

/* Show Class */
.modal.show {
  display: flex;
}

/* ===== MODAL BOX ===== */
.modal-box {
  background: #fff;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  border-radius: 14px;
  padding: 15px;
  overflow-y: auto;
  position: relative;
  animation: fadeIn 0.3s ease;
}

/* Close Button */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
/* ===== HERO BANNER ===== */

.hero{
position:relative;
width:100%;
overflow:hidden;
background:#000;
}

/* Banner Image */

.hero-img{
width:100%;
height:auto;
display:block;
object-fit:cover;
}

/* Overlay */

.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.35);
}

/* Text Content */

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:#fff;
text-align:center;
width:90%;
z-index:2;
}

.hero-content h1{
font-size:28px;
font-weight:600;
margin-bottom:6px;
}

.hero-content p{
font-size:13px;
}

/* ===== MOBILE FIX ===== */

@media(max-width:768px){

.hero{
aspect-ratio:16/9;
}

.hero-img{
width:100%;
height:100%;
object-fit:cover;
}

.hero-content h1{
font-size:24px;
}

.hero-content p{
font-size:12px;
}

}

/* ===== SMALL PHONES ===== */

@media(max-width:420px){

.hero{
aspect-ratio:16/10;
}

.hero-content h1{
font-size:20px;
}

.hero-content p{
font-size:11px;
}

}




/* DARK THEME */

body[data-theme="dark"]{
background:#111;
color:#fff;
}

body[data-theme="dark"] button,
body[data-theme="dark"] .btn{
background:#333;
color:#fff;
}

body[data-theme="dark"] button:hover{
background:#555;
}


/* PINK THEME */

body[data-theme="pink"]{
background:#fff0f6;
}

body[data-theme="pink"] button,
body[data-theme="pink"] .btn{
background:#ff2d8d;
color:#fff;
}

body[data-theme="pink"] button:hover{
background:#e02178;
}


/* BLUE THEME */

body[data-theme="blue"]{
background:#f0f6ff;
}

body[data-theme="blue"] button,
body[data-theme="blue"] .btn{
background:#2979ff;
color:#fff;
}

body[data-theme="blue"] button:hover{
background:#1c5ed6;
}


/* ORANGE THEME */

body[data-theme="orange"]{
background:#fff6ef;
}

body[data-theme="orange"] button,
body[data-theme="orange"] .btn{
background:#ff7a00;
color:#fff;
}

body[data-theme="orange"] button:hover{
background:#e56d00;
}


/* YELLOW THEME */

body[data-theme="yellow"]{
background:#fffdf4;
}

body[data-theme="yellow"] button,
body[data-theme="yellow"] .btn{
background:#d4af37;
color:#fff;
}

body[data-theme="yellow"] button:hover{
background:#b9972d;
}
