/* RESET */
body {
  margin: 0;
  background: #0d0d0d;
  color: #eaeaea;
  font-family: 'Inter', sans-serif;
}


/* HEADER MENU */
.menu-toggle {
  background: none;
  border: none;
  color: #eaeaea;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  cursor: pointer;
}

.menu-toggle:hover {
  opacity: 1;
}

/* MENU OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: all 0.5s ease;
  z-index: 10000;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  text-decoration: none;
  color: #eaeaea;
  letter-spacing: 1px;
  opacity: 0.85;
  position: relative;
}

.menu-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: #d4af37;
  transition: width 0.4s ease;
}

.menu-nav a:hover::after {
  width: 100%;
}

/* CLOSE */
.menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #eaeaea;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  cursor: pointer;
}


.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 0;
  z-index: 9999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.menu-toggle {
  background: none;
  border: none;
  color: #eaeaea;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  cursor: pointer;
}

.menu-toggle:hover {
  opacity: 1;
}


/* HERO */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
}

/* GOLD SHINE TEXT */
.gold-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(
    120deg,
    #b8962e,
    #f6e27f,
    #d4af37,
    #f6e27f,
    #b8962e
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

/* SECTIONS */
.section-dark {
  padding: 120px 0;
  background: #111;
}


/* PROCESS SECTION */
.process-section {
  background: #0d0d0d;
}

.process-block {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.process-block video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.process-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  max-width: 70%;
}

.process-content h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.process-content p {
  font-size: 1rem;
  opacity: 0.85;
}

/* MOBILE */
@media (max-width: 768px) {
  .process-block {
    height: 50vh;
  }

  .process-content {
    left: 20px;
    bottom: 20px;
  }
}

/* WHAT WE DO */
.what-we-do {
  background: #0d0d0d;
  padding: 60px 0 120px; /* tighter top, relaxed bottom */
}

.what-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.what-content {
  padding: 0 80px;
}

.what-content .lead {
  font-size: 1.1rem;
  opacity: 0.85;
  margin: 30px 0;
}

.what-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.what-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.what-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #d4af37;
}


/* ============================= */
/* PROJECTS / GALLERY SECTION */
/* ============================= */

.projects-section {
  background: #0d0d0d;
  padding: 100px 0 140px;
}

/* Title spacing */
.projects-section .gold-text {
  margin-bottom: 12px;
}

.section-subtext {
  max-width: 520px;
  opacity: 0.8;
  margin-bottom: 60px;
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; /* luxury divider */
  background: #111;
}

.project-item {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #000;
}

.project-item img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block;
   outline: 3px solid red;
}


/* OVERLAY */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.2),
    rgba(0,0,0,0)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* TEXT */
.project-overlay h4 {
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.project-overlay p {
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  opacity: 0.75;
}

/* HOVER EFFECT */
.project-item:hover img {
  transform: scale(1.04);
}

.project-item:hover .project-overlay {
  opacity: 1;
}
.projects-section .container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.section-subtext {
  margin-bottom: 0 !important;
}



/* ============================= */
/* RESPONSIVE (INDIA FIRST) */
/* ============================= */

@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .project-item {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-item {
    height: 260px;
  }
}



/* WHATSAPP CTA */
.whatsapp-cta {
  background: #0d0d0d;
  padding: 140px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.whatsapp-cta .cta-text {
  max-width: 650px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  opacity: 0.85;
}

.whatsapp-btn {
  display: inline-block;
  padding: 14px 42px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.35s ease;
}

.whatsapp-btn:hover {
  background: #d4af37;
  color: #000;
}

/* CTA ACTIONS */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* INSTAGRAM BUTTON */
.instagram-btn {
  display: inline-block;
  padding: 14px 42px;
  border: 1px solid rgba(255,255,255,0.25);
  color: #eaeaea;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.35s ease;
}

.instagram-btn:hover {
  background: #d4af37;
  border-color: #d4af37;
  color: #000;
}


/* FOOTER */
.site-footer {
  background: #0d0d0d;
  padding: 120px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-title {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.7;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.75;
  max-width: 360px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.95rem;
  text-decoration: none;
  color: #eaeaea;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 80px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.5;
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .site-footer {
    padding: 80px 0 30px;
  }

  .footer-text {
    max-width: 100%;
  }

  .footer-bottom {
    margin-top: 50px;
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .what-content {
    padding: 40px 20px;
  }
}
@media (max-width: 768px) {
  .what-we-do {
    padding: 40px 0 80px;
  }
}


/* ---------------------------
   PROJECTS PAGE CSS
--------------------------- */

/* ---------------------------
   GENERAL SECTION STYLING
--------------------------- */
section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* HERO SECTION (Selected Works) slightly taller */
.projects-hero {
  background: #0d0d0d;
  padding-top: 100px;
  padding-bottom: 60px;
  text-align: center;
}

.projects-hero .gold-text {
  font-size: 3rem;
  margin-bottom: 15px; /* reduced for smoother spacing */
  color: #d4af37;
}

.projects-hero .hero-subtext {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------------------------
   FEATURED PROJECTS
--------------------------- */
.featured-projects {
  background: #0d0d0d;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.featured-project {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.featured-project img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-project:hover img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  padding: 20px;
  color: #fff;
}

.featured-overlay h3 {
  font-size: 1.2rem;
  margin: 0 0 5px 0;
}

.featured-overlay p {
  font-size: 0.9rem;
  opacity: 0.75;
  margin: 0;
}

/* ---------------------------
   PROJECTS GRID SECTION
--------------------------- */
.projects-page {
  background: #0d0d0d;
  padding-top: 80px;
  padding-bottom: 80px;
}

.projects-intro {
  margin-bottom: 30px; /* reduced margin for smooth flow */
}

.projects-intro h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.projects-grid-50 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.project-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img,
.project-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.project-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.3),
    rgba(0,0,0,0)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.project-hover h4 {
  font-size: 1.1rem;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.project-hover span {
  font-size: 0.8rem;
  opacity: 0.75;
  letter-spacing: 0.4px;
}

.project-card:hover img,
.project-card:hover video {
  transform: scale(1.05);
}

.project-card:hover .project-hover {
  opacity: 1;
}

/* ---------------------------
   PROJECTS CTA SECTION
--------------------------- */
.projects-cta {
  background: #0d0d0d;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.projects-cta .gold-text {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #d4af37;
}

.projects-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1.1rem;
  color: #0d0d0d;
  background: #d4af37;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.cta-btn:hover {
  background: #b8952c;
  color: #fff;
  transform: translateY(-2px);
}

/* ---------------------------
   MOBILE ADJUSTMENTS
--------------------------- */
@media (max-width: 768px) {
  .projects-grid-50 {
    grid-template-columns: 1fr;
  }

  .project-card {
    height: 380px;
  }

  .projects-hero .gold-text {
    font-size: 2.5rem;
  }

  .projects-cta .gold-text {
    font-size: 2rem;
  }

  .projects-cta p {
    font-size: 1rem;
  }

  .cta-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}



/* =========================
   CONTACT HERO
========================= */
.contact-hero {
  padding: 180px 0 120px;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-hero .gold-text {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
}

.hero-subtext {
  max-width: 520px;
  margin-top: 18px;
  font-size: 1.05rem;
  opacity: 0.85;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  padding: 140px 0;
  background: #111;
}

/* =========================
   FORM
========================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 10px 2px;
  color: #eaeaea;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.4s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: #d4af37;
}

/* Remove default select arrow look */
.form-group select {
  appearance: none;
}

/* =========================
   SUBMIT BUTTON
========================= */
.form-submit {
  margin-top: 30px;
  align-self: flex-start;
  background: none;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 14px 44px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
}

.form-submit:hover {
  background: #d4af37;
  color: #000;
}

/* =========================
   CONTACT INFO (RIGHT SIDE)
========================= */
.contact-info {
  padding-top: 20px;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.contact-info p {
  max-width: 360px;
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 36px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-links a {
  font-size: 0.8rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  color: #eaeaea;
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.contact-links a:hover {
  opacity: 1;
  color: #d4af37;
}


/* CONTACT FORM – FLOATING INPUTS */
.contact-form {
  max-width: 520px;
}

.input-group {
  position: relative;
  margin-bottom: 36px;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 10px 0;
  color: #eaeaea;
  font-size: 0.95rem;
  outline: none;
  appearance: none;
}

/* REMOVE BLUE SELECT */
.input-group select {
  cursor: pointer;
}

.input-group select option {
  background: #0d0d0d;
  color: #eaeaea;
}

/* LABEL */
.input-group label {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* FLOAT EFFECT */
.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group select:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:not(:placeholder-shown) + label,
.input-group select:not([value=""]) + label {
  top: -14px;
  font-size: 0.65rem;
  opacity: 0.8;
}

/* TEXTAREA */
.input-group textarea {
  resize: none;
}

/* SUBMIT BUTTON */
.form-submit {
  margin-top: 20px;
  padding: 14px 42px;
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.form-submit:hover {
  background: #d4af37;
  color: #000;
}

/* FORCE DARK INPUT BACKGROUND */
.input-group input,
.input-group textarea,
.input-group select {
  background-color: transparent !important;
  -webkit-text-fill-color: #eaeaea;
}

/* REMOVE CHROME AUTOFILL WHITE */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #0d0d0d inset !important;
  box-shadow: 0 0 0 1000px #0d0d0d inset !important;
  -webkit-text-fill-color: #eaeaea !important;
}


/* =========================
   MOBILE
========================= */
@media (max-width: 992px) {
  .contact-section {
    padding: 100px 0;
  }

  .contact-info {
    margin-top: 80px;
  }
}


.about-hero {
  padding: 160px 0 120px;
}

.about-section,
.about-philosophy,
.about-process,
.about-location,
.about-cta {
  padding: 100px 0;
}

.about-image {
  opacity: 0.9;
}

.philosophy-item {
  margin-bottom: 36px;
}

.philosophy-item h6 {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
  opacity: 0.8;
}

.process-list {
  list-style: none;
  padding-left: 0;
}

.process-list li {
  margin-bottom: 14px;
  opacity: 0.85;
}
