/*=========================================
BAJAY JAY
Premium Luxury Website
Author: TIMBI Omni Technologies
==========================================*/

/*========================
GOOGLE VARIABLES
=========================*/

:root {
  --primary: #c56b2b;
  --secondary: #111111;
  --white: #ffffff;
  --light: #f7f7f7;
  --gray: #777777;
  --border: #e5e5e5;
  --gold: #d4af37;
  --transition: 0.4s ease;
}

/*========================
RESET
=========================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/*========================
TOP BAR
=========================*/

.top-bar {
  background: #111;
  color: #fff;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 45px;
}

.left-top {
  display: flex;
  gap: 30px;
}

.left-top a {
  color: white;
  transition: 0.3s;
}

.left-top a:hover {
  color: var(--primary);
}

.left-top i {
  color: var(--primary);
  margin-right: 8px;
}

.right-top {
  color: white;
}

.right-top i {
  color: var(--primary);
  margin-right: 8px;
}

/*========================
HEADER
=========================*/

header {
  position: fixed;
  top: 45px;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: 0.4s;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 95px;
}

/*========================
LOGO
=========================*/

.logo img {
  width: 140px;
}

/*========================
NAVIGATION
=========================*/

nav ul {
  display: flex;
  gap: 45px;
}

.nav-links {
  display: flex;
  align-items: center;
}

nav ul li a {
  color: #111;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.4s;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a:hover {
  color: var(--primary);
}

/*========================
BUTTON
=========================*/

.quote-btn {
  background: var(--primary);
  color: white;
  padding: 15px 34px;
  border-radius: 50px;
  transition: 0.4s;
  font-weight: 600;
}

.quote-btn:hover {
  background: #111;
  transform: translateY(-3px);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 16px 35px rgba(18, 140, 126, 0.28);
  z-index: 1200;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 42px rgba(18, 140, 126, 0.35);
}

.chatbot-float {
  position: fixed;
  right: 92px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #111111, #3b2d1f);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 16px 35px rgba(17, 17, 17, 0.22);
  z-index: 1200;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chatbot-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 42px rgba(17, 17, 17, 0.28);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/*========================
MOBILE MENU
=========================*/

.mobile-menu {
  display: none;
  font-size: 28px;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: #111;
  position: relative;
  z-index: 1100;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 900;
}

body.menu-open::before {
  opacity: 1;
  visibility: visible;
}

.nav-links {
  transition: right 0.35s ease, opacity 0.35s ease;
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -320px;
    width: min(320px, 86vw);
    height: 100vh;
    background: rgba(17, 17, 17, 0.98);
    padding: 100px 24px 24px;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.2);
    opacity: 0;
    z-index: 1000;
    align-items: flex-start;
  }

  .nav-links.show-mobile {
    right: 0;
    opacity: 1;
  }

  .nav-links.show-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }

  .nav-links ul li a {
    color: #fff;
    font-size: 1rem;
  }

  .nav-links ul li a::after {
    background: var(--primary);
  }
}

/*========================
HERO
=========================*/

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35));
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 700px;
  margin-left: 8%;
}

.hero-content span {
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 82px;
  line-height: 1;
  color: white;
  margin-top: 20px;
  margin-bottom: 25px;
}

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  line-height: 1.15;
  color: #111;
  margin-top: 20px;
  margin-bottom: 25px;
}

.hero-content p {
  color: #f0f0f0;
  line-height: 1.8;
  width: 600px;
  font-size: 18px;
}

.hero-visual {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-badge {
  width: 240px;
  aspect-ratio: 1;
  padding: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #c56b2b 0%, #8f4d15 60%, #5a2d0c 100%);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.hero-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.35);
}

.section p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

/*========================
BUTTONS
=========================*/

.hero-buttons {
  margin-top: 45px;
  display: flex;
  gap: 20px;
}

.primary-btn {
  background: var(--primary);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  transition: 0.4s;
  font-weight: 600;
}

.primary-btn:hover {
  transform: translateY(-5px);
  background: #111;
}

.secondary-btn {
  border: 2px solid white;
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  transition: 0.4s;
}

.secondary-btn:hover {
  background: white;
  color: #111;
}

/*========================
SCROLL ICON
=========================*/

.scroll-down {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 12px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

/*========================
SECTION
=========================*/

section {
  padding: 120px 0;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 12px;
}

.about-grid,
.contact-grid,
.profile-grid,
.corporate-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.about-card,
.profile-card,
.contact-card,
.card,
.portfolio-item {
  background: #faf7f2;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover,
.profile-card:hover,
.contact-card:hover,
.card:hover,
.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.about-card img,
.profile-card img,
.card img,
.portfolio-item img,
.mini-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
}

.feature-list {
  margin-top: 1rem;
  padding-left: 1rem;
  color: #555;
}

.feature-list li {
  margin-bottom: 0.6rem;
}

.about-card ul {
  margin-top: 0.8rem;
  padding-left: 1rem;
  color: #555;
}

.cards,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.info-banner {
  margin-top: 1.5rem;
  background: linear-gradient(90deg, rgba(197,107,43,0.12), rgba(255,255,255,0.7));
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem 1.3rem;
}

.corporate-image-card {
  background: #faf7f2;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.corporate-image-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 0.8rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.3rem;
}

.forms-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.form-card {
  background: #faf7f2;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  font: inherit;
  color: #111;
  background: white;
}

.contact-form button {
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  padding: 0.95rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #111;
}

.form-status {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: #1f6f3b;
}

.secondary-btn.dark-outline {
  border: 2px solid #111;
  color: #111;
}

.secondary-btn.dark-outline:hover {
  background: #111;
  color: white;
}

.info-banner h3 {
  margin-bottom: 0.45rem;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.mini-gallery img {
  height: 180px;
}

.card h3,
.portfolio-item h3,
.contact-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.contact-card p {
  margin: 0.6rem 0;
  color: #555;
}

footer {
  border-top: 1px solid var(--border);
  padding: 1.3rem 0 2rem;
  color: #555;
}

.text-center {
  text-align: center;
  margin-top: 1.5rem;
}

img[data-lightbox] {
  cursor: zoom-in;
}

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 1.25rem;
}

.image-modal-card {
  background: #fff;
  max-width: 920px;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.image-modal-card img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
}

.image-modal-caption {
  padding: 1rem 1.1rem 1.2rem;
  color: #111;
  font-size: 0.98rem;
}

.image-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.95);
  color: #111;
  font-size: 1.2rem;
  cursor: pointer;
}

.page-hero {
  padding: 180px 0 90px;
  background: linear-gradient(90deg, rgba(197,107,43,0.12), rgba(17,17,17,0.03));
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
  color: #111;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.9rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.chatbot-card {
  background: #faf7f2;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}

#chat-output {
  min-height: 220px;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.chat-message {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  max-width: 85%;
}

.chat-message.user {
  background: #111;
  color: white;
  align-self: flex-end;
}

.chat-message.bot {
  background: #e8c79f;
  color: #111;
  align-self: flex-start;
}

#chat-form {
  display: flex;
  gap: 0.7rem;
}

#chat-form input {
  flex: 1;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}

#chat-form button {
  padding: 0.9rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  cursor: pointer;
}

/*========================
RESPONSIVE
=========================*/

@media (max-width: 992px) {
  nav {
    display: none;
  }

  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content {
    width: 90%;
    margin: auto;
  }

  .hero-content h1,
  .section h2 {
    font-size: 60px;
  }

  .hero-content p,
  .section p {
    width: 100%;
  }

  .left-top {
    display: none;
  }

  .top-bar .container {
    justify-content: center;
  }

  .about-grid,
  .contact-grid,
  .profile-grid,
  .corporate-grid,
  .cards,
  .portfolio-grid,
  .mini-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-content h1,
  .section h2 {
    font-size: 45px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 24px;
    right: 16px;
    bottom: 16px;
  }

  .chatbot-float {
    width: 56px;
    height: 56px;
    font-size: 22px;
    right: 80px;
    bottom: 16px;
  }

  .gallery-grid,
  .testimonials-grid,
  #chat-form {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .quote-btn {
    display: none;
  }

  header {
    top: 45px;
  }
}

@media (max-width: 480px) {
  .hero-content h1,
  .section h2 {
    font-size: 36px;
  }

  .hero-content span {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hero-content p {
    font-size: 16px;
  }
}
