/* =============================================
   SAI HAIR WIG - Custom Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --primary: #1a1a1a;
  --secondary: #2d2d2d;
  --accent: #c9a84c;
  --accent-light: #e8c97a;
  --text-light: #f5f0e8;
  --text-muted: #9a9a9a;
  --bg-cream: #f9f6f0;
  --bg-dark: #111111;
  --bg-section: #fdfaf5;
  --border-light: rgba(201, 168, 76, 0.25);
  --shadow-soft: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 12px 60px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 20px 80px rgba(0, 0, 0, 0.2);
  --radius: 2px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* =============================================
   GLOBAL RESET & BASE
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg-cream);
  color: var(--primary);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

/* =============================================
   LOADER
   ============================================= */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--accent);
  letter-spacing: 6px;
  text-transform: uppercase;
}

.loader-bar {
  width: 160px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--accent);
  animation: loaderSlide 1.4s ease forwards;
}

@keyframes loaderSlide {
  to {
    left: 100%;
  }
}

/* =============================================
   NAVBAR
   ============================================= */

   .logos{
    width: 100%;
    height: 70px;
   }

#mainNav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 6px 0;
  transition: var(--transition);
  background: #ffffff;
}

#mainNav.scrolled {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

.navbar-brand-text span {
  color: var(--accent);
}

.brand-sub {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: -4px;
}

.nav-link-custom {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8) !important;
  padding: 6px 16px !important;
  position: relative;
  transition: var(--transition);
}

/* Mobile menu - dark dropdown background pe links white dikhne chahiye */
@media (max-width: 991.98px) {
  #navbarMain {
    background: #1a1a1a;
    padding: 16px 20px 20px;
    margin-top: 8px;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
  }

  .nav-link-custom {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 10px 8px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: block;
  }

  .nav-link-custom:last-child {
    border-bottom: none;
  }

  .btn-nav-cta {
    display: inline-block;
    margin-top: 8px;
  }
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link-custom:hover {
  color: var(--accent) !important;
}

.nav-link-custom:hover::after {
  width: 70%;
}

.navbar-toggler {
  border: 1px solid rgba(201, 168, 76, 0.5);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826%2C26%2C26%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg-dark) !important;
  background: var(--accent);
  border: none;
  padding: 8px 22px !important;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

@media (max-width: 767px) {
  #hero {
    height: 70vh !important;
    min-height: 420px !important;
    max-height: 480px !important;
  }
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.11) 0%,
      rgba(0, 0, 0, 0.171) 50%,
      rgba(0, 0, 0, 0.123) 100%);
}

.hero-fallback-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 40%, #2a2211 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-title strong {
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.btn-primary-custom {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-custom:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.35);
}

.btn-outline-custom {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 14px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--bg-dark);
  padding: 28px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section-header {
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.15;
}

.section-title span {
  color: var(--accent);
  font-style: italic;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  font-weight: 300;
  max-width: 580px;
  margin-top: 14px;
  line-height: 1.8;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 20px 0;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
#about {
  padding: 100px 0;
  background: var(--bg-section);
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
}

.about-img-main {
  grid-row: 1 / 3;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-side {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.about-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-img-side:hover img {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent);
  color: var(--bg-dark);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

.about-badge-num {
  font-size: 1.8rem;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.7rem;
  letter-spacing: 1px;
  font-family: 'Jost', sans-serif;
}

.about-features {
  margin-top: 28px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bg-dark);
  font-size: 1rem;
}

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.feature-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
#services {
  padding: 100px 0;
  background: var(--bg-dark);
}

#services .section-title {
  color: var(--text-light);
}

#services .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.service-card {
  background: #1a1a1a;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: var(--shadow-strong);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.service-body {
  padding: 24px;
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  float: right;
  margin-top: -10px;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 16px;
  transition: gap 0.3s ease;
}

.service-card:hover .service-link {
  gap: 14px;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
#why-us {
  padding: 100px 0;
  background: var(--bg-section);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.why-item {
  background: var(--bg-section);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.why-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.4s ease;
}

.why-item:hover {
  background: #fff;
}

.why-item:hover::after {
  width: 60%;
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  transition: var(--transition);
}

.why-item:hover .why-icon {
  background: var(--accent);
  color: var(--bg-dark);
  transform: scale(1.1);
}

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.why-text {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.7;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
#gallery {
  padding: 100px 0;
  background: var(--bg-dark);
}

#gallery .section-title {
  color: #fff;
}

#gallery .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 10px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
}

.gallery-item:nth-child(2) {
  grid-column: 6 / 9;
  grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1 / 2;
}

.gallery-item:nth-child(4) {
  grid-column: 6 / 10;
  grid-row: 2 / 3;
}

.gallery-item:nth-child(5) {
  grid-column: 10 / 13;
  grid-row: 2 / 3;
}

.gallery-item:nth-child(6) {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
}

.gallery-item:nth-child(7) {
  grid-column: 5 / 9;
  grid-row: 3 / 4;
}

.gallery-item:nth-child(8) {
  grid-column: 9 / 13;
  grid-row: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-overlay-text {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
}


#video-section {
  padding: 60px 0;
  background: var(--bg-section);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.video-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 9/16;
  background: #111;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.play-btn {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.play-btn i {
  color: var(--bg-dark);
  font-size: 1.2rem;
}

.video-card:hover .play-btn {
  transform: scale(1.15);
  box-shadow: 0 0 0 12px rgba(201, 168, 76, 0.2);
}

/* Modal */
.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal-overlay.active {
  display: flex;
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.video-modal-inner video {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.modal-close-btn {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials {
  padding: 100px 0;
  background: var(--bg-dark);
}

#testimonials .section-title {
  color: #fff;
}

.testimonial-card {
  background: #1a1a1a;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  padding: 36px 30px;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(201, 168, 76, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.author-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.author-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
#contact {
  padding: 100px 0;
  background: var(--bg-section);
}

.contact-info-card {
  background: var(--bg-dark);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  padding: 40px;
  height: 100%;
}

.contact-info-card .section-title {
  color: #fff;
  font-size: 2rem;
}

.contact-info-card .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background: var(--accent);
  color: var(--bg-dark);
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 400;
}

.contact-value a {
  color: #fff;
}

.contact-value a:hover {
  color: var(--accent);
}

.contact-form-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.form-label-custom {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 6px;
  display: block;
}

.form-control-custom {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--primary);
  background: var(--bg-section);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-control-custom::placeholder {
  color: #aaa;
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--bg-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--accent);
  color: var(--bg-dark);
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: #0a0a0a;
  padding: 70px 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand span {
  color: var(--accent);
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.floating-btns {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.12);
  color: #fff;
}

.float-phone {
  background: #1a73e8;
}

.float-whatsapp {
  background: #25d366;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 24px;
  z-index: 500;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  color: var(--bg-dark);
  font-size: 1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .about-image-grid {
    grid-template-rows: 200px 200px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 220px;
  }

  #mainNav .navbar-collapse {
    background: rgba(10, 10, 10, 0.98);
    padding: 20px;
    border-radius: 4px;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  #hero {
    min-height: 100svh;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .about-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 160px 160px;
  }

  .about-img-main {
    grid-row: 1 / 2;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 200px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 28px 20px;
  }
}

@media (max-width: 575px) {
  section {
    padding: 70px 0 !important;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }
}