/* =========================================================
   LIMETTA INTERIORS - Premium Stylesheet
   Luxury Living Redefined
   ========================================================= */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #c9a36a;
  --gold-light: #d9b885;
  --gold-dark: #a8854a;
  --gold-soft: #f4ead8;
  --dark: #1a1a1a;
  --dark-2: #232323;
  --dark-3: #2c2c2c;
  --cream: #faf6f0;
  --beige: #f5efe6;
  --text: #2b2b2b;
  --text-muted: #6b6b6b;
  --border: #e9e2d4;
  --white: #ffffff;

  --font-display: 'Playfair Display', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --shadow-sm: 0 4px 14px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 10px 30px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 26, 26, 0.12);
  --shadow-gold: 0 12px 30px rgba(201, 163, 106, 0.25);

  --radius: 4px;
  --radius-lg: 8px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

* {
  box-sizing: border-box;
}

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

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

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  margin: 0;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--gold);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--dark);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 8px;
}

/* ---------- Buttons ---------- */
.btn-luxury {
  background: var(--gold);
  color: var(--white) !important;
  border: 1.5px solid var(--gold);
  padding: 13px 32px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-luxury i {
  transition: var(--transition);
}

.btn-luxury:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-luxury:hover i {
  transform: translateX(5px);
}

.btn-outline-luxury {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid var(--white);
  padding: 13px 32px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-luxury:hover {
  background: var(--gold);
  color: var(--white) !important;
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* On light backgrounds */
.about-section .btn-outline-luxury,
.gallery-section .btn-outline-luxury,
.faq-section .btn-outline-luxury {
  color: var(--dark) !important;
  border-color: var(--dark);
}

.about-section .btn-outline-luxury:hover,
.gallery-section .btn-outline-luxury:hover,
.faq-section .btn-outline-luxury:hover {
  color: var(--white) !important;
}

/* ---------- Section heading ---------- */
.section-heading {
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
  padding-left: 50px;
}

.section-tag::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 50%;
}

.section-tag.light {
  color: var(--gold-light);
}

.section-tag.light::before {
  background: var(--gold-light);
}

.text-center .section-tag {
  padding-left: 0;
  padding: 0 50px;
}

.text-center .section-tag::before {
  left: 0;
  top: 50%;
}

.text-center .section-tag::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  position: absolute;
  right: 0;
  top: 50%;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.15;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 11px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(201, 163, 106, 0.15);
}

.top-bar-info,
.top-bar-social {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.top-bar-social {
  justify-content: flex-end;
}

.top-bar-info li,
.top-bar-social li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-bar-info i {
  color: var(--gold);
  font-size: 14px;
}

.top-bar-social a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.top-bar-social a:hover {
  color: var(--gold);
}

.top-bar-social .divider {
  color: rgba(255, 255, 255, 0.2);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-brand img {
  width: 100%;
  height: 64px;
  transition: var(--transition);
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark) !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 14px;
  padding: 10px 0 !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 22px;
}

.navbar-toggler {
  border: 1.5px solid var(--gold);
  padding: 6px 12px;
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.mobile-offcanvas {
  width: 320px;
  background: var(--white);
}

.mobile-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 25px;
}

.offcanvas-logo {
  height: 45px;
}

.mobile-offcanvas .navbar-nav .nav-link {
  display: block;
  padding: 12px 0 !important;
  border-bottom: 1px solid var(--border);
  margin: 0;
}

.offcanvas-contact {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.offcanvas-contact a {
  color: var(--text);
  font-size: 14px;
}

.offcanvas-contact i {
  color: var(--gold);
  margin-right: 8px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  position: relative;
}

.hero-slide {
  height: 88vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0, 0, 0, 0.863) 0%, rgba(0, 0, 0, 0.658) 55%, rgba(0, 0, 0, 0.452) 100%);
}

.carousel-item .hero-slide .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 1s ease 0.3s;
}

.carousel-item.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  margin-bottom: 28px;
  background: rgba(201, 163, 106, 0.1);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.3rem, 4.2vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 38px;
  max-width: 580px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.carousel-indicators {
  bottom: 90px;
}

.carousel-indicators [data-bs-target] {
  width: 36px;
  height: 3px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 5px;
}

.carousel-indicators .active {
  background: var(--gold);
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 25px;
  opacity: 1;
  backdrop-filter: blur(6px);
  display: none;
}

@media (min-width: 992px) {

  .carousel-control-prev,
  .carousel-control-next {
    display: flex;
  }
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.carousel-control-prev i,
.carousel-control-next i {
  color: var(--white);
  font-size: 24px;
}

/* Hero feature strip */
.hero-feature-strip {
  background: var(--white);
  border-top: 4px solid var(--gold);
  position: relative;
  z-index: 5;
  margin-top: -80px;
  box-shadow: var(--shadow-lg);
}

.hero-feature-strip .feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 26px;
  border-right: 1px solid var(--border);
  height: 100%;
}

.hero-feature-strip .col-md-3:last-child .feature-item {
  border-right: 0;
}

.feature-item i {
  font-size: 38px;
  color: var(--gold);
}

.feature-item h6 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  color: var(--dark);
}

.feature-item p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-section {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}

.about-images {
  position: relative;
  padding-right: 40px;
  padding-bottom: 60px;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: var(--transition);
}

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

.about-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 8px solid var(--cream);
  box-shadow: var(--shadow-md);
}

.about-img-sub img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 30px;
  left: -30px;
  background: var(--gold);
  color: var(--white);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
  border: 4px solid var(--cream);
}

.about-experience-badge .years {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-badge .text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
}

.lead-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.55;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 22px;
  font-style: italic;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.85;
}

.about-points {
  margin-bottom: 36px;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--dark);
}

.about-point i {
  color: var(--gold);
  font-size: 22px;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.founder-signature h6 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  margin: 0;
  color: var(--dark);
  font-weight: 600;
}

.founder-signature small {
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-section {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.service-card {
  background: var(--white);
  border: 1px solid #d7d0c2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-image {
  overflow: hidden;
  height: 250px;
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.35), transparent 60%);
}

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

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px 28px;
  position: relative;
}

.service-number {
  position: absolute;
  top: -38px;
  right: 24px;
  background: var(--gold);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  z-index: 3;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-link i {
  transition: var(--transition);
}

.service-link:hover {
  color: var(--dark);
}

.service-link:hover i {
  transform: translate(4px, -4px);
}

.service-tags-row {
  margin-top: 60px;
  text-align: center;
  padding: 40px 30px;
  background: var(--beige);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
}

.service-tags-row h5 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.service-tags span {
  background: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-tags span:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* =========================================================
   WHY US
   ========================================================= */
.why-section {
  padding: 120px 0;
  background: var(--beige);
  position: relative;
}

.why-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}

.why-icon i {
  font-size: 28px;
  color: var(--gold);
}

.why-card:hover .why-icon {
  background: var(--gold);
  transform: rotate(-8deg);
}

.why-card:hover .why-icon i {
  color: var(--white);
}

.why-card h4 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.why-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.why-card-dark {
  background: var(--dark);
  border-color: var(--dark);
}

.why-card-dark h4 {
  color: var(--white);
}

.why-card-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.why-card-dark .why-icon {
  background: rgba(201, 163, 106, 0.15);
}

/* =========================================================
   COUNTER
   ========================================================= */
.counter-section {
  padding: 90px 0;
  background: url('') center/cover fixed no-repeat, var(--dark);
  position: relative;
}

.counter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.88);
}

.counter-section .container {
  position: relative;
  z-index: 2;
}

.counter-box {
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.counter-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 60%;
  background: rgba(201, 163, 106, 0.3);
  transform: translateY(-50%);
}

.col-6:first-child .counter-box::before {
  display: none;
}

.counter-box .counter {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--gold);
  font-weight: 700;
  display: inline-block;
  margin: 0;
  line-height: 1;
}

.counter-box .plus {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  vertical-align: top;
  margin-left: 4px;
}

.counter-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 500;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process-section {
  padding: 120px 0;
  background: var(--white);
}

.process-row {
  position: relative;
}

.process-card {
  background: var(--cream);
  padding: 40px 28px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  height: 100%;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.process-card:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.process-card:hover h4 {
  color: var(--white);
}

.process-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.process-card:hover i {
  color: var(--gold-light);
}

.process-step {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  border: 3px solid var(--white);
}

.process-card i {
  font-size: 44px;
  color: var(--gold);
  margin: 14px 0 18px;
  display: inline-block;
  transition: var(--transition);
}

.process-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  transition: var(--transition);
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-section {
  padding: 120px 0;
  background: var(--beige);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  height: 340px;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.gallery-overlay h5 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.5rem;
  margin: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

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

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

.gallery-item:hover .gallery-overlay h5 {
  transform: translateY(0);
}


/* ============= VIDEO SECTION ============= */
.video-section {
  padding: 100px 0;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Video Heading */
.video-heading {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.video-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 500;
  position: relative;
  padding: 0 30px;
}

.video-tag::before,
.video-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #d4af37;
}

.video-tag::before {
  left: 0;
}

.video-tag::after {
  right: 0;
}

.video-title {
  font-size: 48px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
}

.video-title em {
  font-style: italic;
  color: #d4af37;
  font-weight: 400;
}

.video-subtitle {
  font-size: 16px;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Video Grid */
.video-grid {
  position: relative;
  z-index: 1;
}

.video-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 9 / 16;
  background: #1a1a1a;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.1);
  width: 100%;
  height: 400px;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Gradient overlay */
.video-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Gold border on hover */
.video-item::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  z-index: 2;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease;
  pointer-events: none;
}

.video-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(212, 175, 55, 0.3);
}

.video-item:hover video {
  transform: scale(1.05);
}

.video-item:hover::before {
  opacity: 1;
}

.video-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Button */
.btn-video-luxury {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
  border-radius: 0;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.btn-video-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4af37;
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-video-luxury:hover {
  color: #0a0a0a;
  border-color: #d4af37;
}

.btn-video-luxury:hover::before {
  left: 0;
}

.btn-video-luxury i {
  transition: transform 0.4s ease;
}

.btn-video-luxury:hover i {
  transform: translateX(5px);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 991px) {
  .video-title {
    font-size: 38px;
  }

  .video-section {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .video-title {
    font-size: 30px;
  }

  .video-tag {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .video-subtitle {
    font-size: 14px;
  }

  .video-section {
    padding: 60px 0;
  }

  .video-heading {
    margin-bottom: 40px;
  }

  .btn-video-luxury {
    padding: 12px 30px;
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .video-title {
    font-size: 26px;
  }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-section {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}

.testimonial-card {
  background: var(--white);
  padding: 45px 38px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--gold);
}

.quote-icon {
  position: absolute;
  top: 28px;
  right: 36px;
  font-size: 5rem;
  color: var(--gold-soft);
  line-height: 1;
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.t-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.t-author-info h6 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 4px 0;
  color: var(--dark);
}

.t-author-info small {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.t-stars i {
  color: var(--gold);
  font-size: 14px;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}

.t-control {
  background: var(--white);
  border: 1px solid var(--border);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.t-control:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* =========================================================
   FAQs
   ========================================================= */
.faq-section {
  padding: 20px 0;
  background: var(--white);
}

.faq-side-image {
  margin-top: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-side-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.faq-section .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

.faq-section .accordion-button {
  background: var(--cream);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  padding: 22px 28px;
  border-radius: var(--radius-lg) !important;
  box-shadow: none !important;
  transition: var(--transition);
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--dark);
  color: var(--white);
}

.faq-section .accordion-button::after {
  background: none;
  content: '\002B';
  width: auto;
  height: auto;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  transform: none;
  transition: var(--transition);
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: '\2212';
  color: var(--gold-light);
  transform: rotate(0deg);
}

.faq-section .accordion-body {
  padding: 22px 28px 26px;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.8;
  background: var(--cream);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-top: -6px;
}

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip {
  position: relative;
  padding: 90px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.cta-strip .container {
  position: relative;
  z-index: 2;
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin: 0;
  line-height: 1.2;
}

.cta-strip h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section {
  padding: 120px 0;
  background: var(--cream);
}

.contact-info-card {
  background: var(--dark);
  color: var(--white);
  padding: 50px 42px;
  border-radius: var(--radius-lg);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 163, 106, 0.2), transparent 70%);
  border-radius: 50%;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 14px;
  position: relative;
}

.contact-info-card>p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  font-size: 0.95rem;
  position: relative;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
  align-items: flex-start;
  position: relative;
}

.ci-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}

.contact-info-item h6 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin: 4px 0 6px;
}

.contact-info-item p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
}

.contact-info-item a {
  color: rgba(255, 255, 255, 0.85);
}

.contact-info-item a:hover {
  color: var(--gold-light);
}

.contact-socials {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  position: relative;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.contact-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--white);
  padding: 50px 42px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 163, 106, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
}

.form-message.success {
  color: #1f8a4c;
}

.form-message.error {
  color: #c0392b;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

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

.footer-logo {
  height: 70px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1) sepia(0.3) saturate(2) hue-rotate(15deg);
}

.footer-about {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.site-footer h5 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 26px;
  position: relative;
  padding-bottom: 12px;
}

.site-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  position: relative;
  padding-left: 14px;
}

.footer-links a::before {
  content: '\f285';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 11px;
  opacity: 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 18px;
}

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

.footer-contact li {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
  display: flex;
  gap: 10px;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom strong {
  color: var(--gold);
}

/* =========================================================
   FLOATING ICONS
   ========================================================= */
.float-btn {
  position: fixed;
  bottom: 130px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  font-size: 26px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
}

.whatsapp-float {
  left: 25px;
  background: #25D366;
  animation: pulseWA 2s infinite;
}

.whatsapp-float:hover {
  background: #1ebe57;
  transform: scale(1.08);
}

.call-float {
  right: 25px;
  background: var(--gold);
  animation: pulseCall 2s infinite 1s;
}

.call-float:hover {
  background: var(--gold-dark);
  transform: scale(1.08);
}

@keyframes pulseWA {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 8px 24px rgba(0, 0, 0, 0.18);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 8px 24px rgba(0, 0, 0, 0.18);
  }
}

@keyframes pulseCall {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 163, 106, 0.55), 0 8px 24px rgba(0, 0, 0, 0.18);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(201, 163, 106, 0), 0 8px 24px rgba(0, 0, 0, 0.18);
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 10px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: var(--dark);
  color: var(--white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 998;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Large desktops */
@media (max-width: 1199.98px) {
  .navbar-nav .nav-link {
    margin: 0 10px;
    font-size: 13px;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .navbar-brand img {
    height: 48px;
  }

  .hero-slide {
    height: auto;
    min-height: 580px;
    padding: 100px 0 80px;
  }

  .hero-section .carousel-indicators {
    bottom: 25px;
  }

  .about-section,
  .services-section,
  .why-section,
  .process-section,
  .gallery-section,
  .testimonial-section,
  .faq-section,
  .contact-section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .about-images {
    padding-right: 30px;
    padding-bottom: 50px;
    margin-bottom: 30px;
  }

  .about-img-main img {
    height: 460px;
  }

  .about-img-sub {
    width: 180px;
  }

  .about-img-sub img {
    height: 180px;
  }

  .about-experience-badge {
    width: 110px;
    height: 110px;
    left: -15px;
  }

  .about-experience-badge .years {
    font-size: 2.1rem;
  }

  .contact-info-card,
  .contact-form {
    padding: 38px 30px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }

  .hero-slide {
    min-height: 540px;
    padding: 70px 0 60px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-tag {
    font-size: 10px;
    letter-spacing: 3px;
    padding: 8px 16px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .text-center .section-tag {
    padding: 0 36px;
    letter-spacing: 3px;
  }

  .text-center .section-tag::before,
  .text-center .section-tag::after {
    width: 24px;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .lead-text {
    font-size: 1.2rem;
  }

  .about-section,
  .services-section,
  .why-section,
  .process-section,
  .gallery-section,
  .testimonial-section,
  .faq-section,
  .contact-section {
    padding: 70px 0;
  }

  .about-images {
    padding-right: 20px;
    padding-bottom: 40px;
  }

  .about-img-main img {
    height: 360px;
  }

  .about-img-sub {
    width: 140px;
    border-width: 5px;
  }

  .about-img-sub img {
    height: 140px;
  }

  .about-experience-badge {
    width: 90px;
    height: 90px;
    left: -10px;
    top: 15px;
  }

  .about-experience-badge .years {
    font-size: 1.7rem;
  }

  .about-experience-badge .text {
    font-size: 9px;
  }

  .about-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .service-image {
    height: 220px;
  }

  .service-content {
    padding: 26px 24px;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

  .service-tags-row {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .service-tags span {
    padding: 8px 16px;
    font-size: 12px;
  }

  .counter-section {
    padding: 70px 0;
  }

  .counter-box::before {
    display: none;
  }

  .counter-box .counter {
    font-size: 2.4rem;
  }

  .counter-box p {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .gallery-item {
    height: 280px;
  }

  .testimonial-card {
    padding: 32px 26px;
  }

  .testimonial-card p {
    font-size: 1.05rem;
  }

  .quote-icon {
    font-size: 3.5rem;
    top: 18px;
    right: 22px;
  }

  .t-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .faq-section .accordion-button {
    font-size: 1rem;
    padding: 18px 20px;
  }

  .faq-section .accordion-body {
    padding: 18px 20px 22px;
  }

  .contact-info-card,
  .contact-form {
    padding: 32px 24px;
  }

  .cta-strip {
    padding: 60px 0;
  }

  .cta-strip .btn {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    padding: 60px 0 0;
  }

  .footer-top {
    padding-bottom: 30px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom p {
    margin-bottom: 6px !important;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 130px;
  }

  .whatsapp-float {
    left: 18px;
  }

  .call-float {
    right: 18px;
  }

  .back-to-top {
    bottom: 10px;
    right: 18px;
  }
}

/* Small mobiles */
@media (max-width: 479.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .navbar-brand img {
    height: 42px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .why-card,
  .process-card {
    padding: 28px 22px;
  }

  .gallery-item {
    height: 240px;
  }
}