﻿:root {
  --offblack: #1a1a1a;
  --ink: #222222;
  --paper: #efe5d2;
  --paper-2: #f7f0e0;
  --gold: #d9a520;
  --muted: #6e6658;
  --card: #ffffff;
  --maxw: 1200px;
  --radius: 6px;
  --shadow: 0 12px 28px rgba(26, 26, 26, 0.08);
}

/* ============================================
   RESET & GLOBAL
   ============================================ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
  color: var(--ink);
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--offblack);
  text-decoration: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  margin: 0 0 10px;
  line-height: 1.2;
  color: var(--offblack);
}

h1 {
  font-size: clamp(2.25rem, 4.3vw, 3.875rem);
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}

p {
  margin: 0 0 12px;
}

.kicker {
  color: #a67c00 !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
}

.titlebar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #6b6455;
}

/* ============================================
   UTILITY & LAYOUT
   ============================================ */
.container {
  max-width: var(--maxw);
  margin: auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.35);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.hr {
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.65), rgba(212, 175, 55, 0));
  border: none;
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 999px;
  color: #6b5f40;
  font-size: 12px;
  background: rgba(212, 175, 55, 0.1);
}

/* Reveal Animation Class */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: none;
  border-radius: var(--radius);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  border: 1px solid var(--gold);
  color: white;
  background: var(--gold);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background-color: #f1ca64;
  border: 1px solid #f1ca64;
}

.btn.outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn.outline:hover {
  background: var(--gold);
}

.btn.outline2 {
  background: transparent;
  color: var(--offblack);
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.btn.outline2:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn-white {
  background: #f6f6f4;
  padding: 12px 32px;
  border-radius: 6px;
  color: #0c0c0c;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-white:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--gold);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.4s ease-in-out;
  padding: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border: none;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  top: 10px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 90px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
}

.header.scrolled .nav {
  height: 70px;
  width: 100%;
  padding: 0 32px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 48px;
  height: 48px;
  min-width: 48px;
  object-fit: contain;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.header.scrolled .brand img {
  filter: brightness(0.1);
  transform: scale(0.92);
}

.brand span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #fff;
  transition: color 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header.scrolled .brand span {
  color: var(--offblack);
  text-shadow: none;
}

.brand small {
  display: block;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: 9px;
  font-weight: 500;
  color: var(--gold);
  margin-top: 2px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.header.scrolled .brand small {
  color: var(--offblack);
  font-weight: 500;
}

/* Navigation Links */
.navlinks {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navlinks a {
  padding: 10px 14px;
  border-radius: 5px;
  transition: all 0.25s ease;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
}

.header.scrolled .navlinks a {
  color: var(--offblack);
  text-shadow: none;
}

/* Hover & Active States */
.navlinks a:not(.btn):not(.outline)::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navlinks a:not(.btn):not(.outline):hover::after {
  width: 60%;
}

.navlinks a:not(.btn):not(.outline):hover,
.header.scrolled .navlinks a:not(.btn):not(.outline):hover {
  color: var(--gold);
}

.navlinks a.active:not(.btn):not(.outline),
.header.scrolled .navlinks a.active:not(.btn):not(.outline) {
  color: var(--gold) !important;
}

.navlinks a.active:not(.btn):not(.outline)::after {
  width: 60%;
}

.navlinks a.btn.active,
.navlinks a.outline.active {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #161616;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./assets/hero/modern-luxury-interior-design-home-hero.webp") center/cover no-repeat;
  text-align: center;
  padding-top: 76px;
}

.hero .inner {
  max-width: 900px;
  padding: 40px 0;
}

.hero .inner h1,
.hero .inner p,
.hero .inner .kicker {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero .kicker {
  color: #d4af37 !important;
  font-weight: 400;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 18px;
  color: #eee;
  max-width: 720px;
  margin: 0 auto 16px;
}

/* ============================================
   COMPONENTS
   ============================================ */

/* Generic Card */
.card {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.12);
  border-color: rgba(212, 175, 55, 0.35);
}

.card .body {
  padding: 18px;
}

.project-thumb {
  aspect-ratio: 16/11;
  object-fit: cover;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.23, 0.78, 0.31, 1);
}

.card:hover .project-thumb {
  transform: scale(1.04);
}

/* Service Box */
.service-box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 26, 26, 0.12);
}

.service-box h3 {
  margin: 14px 0 8px;
}

.service-box p {
  margin-bottom: 26px;
  font-size: 15px;
  color: #686868;
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: #f7f0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #b38b28;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

/* Featured Project Card */
.fp-card {
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fp-card:has(a) {
  cursor: pointer;
}

.fp-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fp-card:hover img {
  transform: scale(1.09);
}

.fp-body {
  padding: 26px 26px 32px;
}

.fp-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.fp-title-row h3 {
  font-size: 20px;
  margin: 0;
}

.fp-city {
  color: #d9a520;
  font-size: 14px;
}

.fp-body p {
  margin-top: 12px;
  font-size: 14px;
  color: #737373;
}

/* Banner Component */
.banner {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  padding: 44px;
  text-align: center;
}

/* Before/After Slider */
.ba {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.ba img {
  display: block;
  width: 100%;
}

.ba .after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.1s linear;
}

.ba input[type="range"] {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  width: 60%;
  margin: auto;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.ba input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #000;
}

.ba input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
}

.before-after-hover {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.before-after-hover img {
  width: 100%;
  display: block;
  transition: opacity 0.6s ease;
}

.before-after-hover .after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.before-after-hover:hover .after {
  opacity: 1;
}

/* ============================================
   PAGE SPECIFIC: ABOUT
   ============================================ */
.about-images {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr;
  gap: 20px;
  align-items: start;
}

.about-images img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-images img:nth-child(2) {
  margin-top: 80px;
}

.founder-img-wrapper {
  height: 100%;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   PAGE SPECIFIC: BLOG
   ============================================ */
.trend-row {
  margin-bottom: 80px;
  align-items: center;
}

.trend-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ============================================
   PAGE SPECIFIC: TESTIMONIALS
   ============================================ */
.testimonial-grid {
  display: grid;
  gap: 40px;
}

.testimonial-card {
  background: #fff;
  padding: 32px;
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card .stars {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.testimonial-card .stars svg {
  width: 21px;
  height: 21px;
  stroke: none;
  fill: #c9a04b;
  color: #c9a04b;
  flex-shrink: 0;
  filter: drop-shadow(0px 0px 1px rgba(201, 160, 75, 0.35));
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 16px 0 26px;
  color: #3b3a39;
}

.client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #eee;
}

.client h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.client small {
  opacity: 0.7;
  font-size: 14px;
}

/* ============================================
   PAGE SPECIFIC: CONTACT
   ============================================ */
.contact-section-v2 {
  padding: 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 600px;
}

/* Left Info Panel */
.contact-info-panel {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 60px 50px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.info-panel-content {
  position: relative;
  z-index: 1;
}

.info-panel-content h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 16px;
  line-height: 1.3;
}

.info-panel-content>p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-detail-item:hover .detail-icon {
  background: var(--gold);
  color: #1a1a1a;
  transform: scale(1.05);
}

.contact-detail-item strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-detail-item span,
.contact-detail-item a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.2s ease;
}

.contact-detail-item a:hover {
  color: var(--gold);
}

/* Social Buttons */
.social-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.social-btn.whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.social-btn.instagram {
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  color: #fff;
}

.social-btn.instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

/* Right Form Panel */
.contact-form-panel {
  background: #fff;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modern-form {
  width: 100%;
  max-width: 420px;
  position: relative;
}

.modern-form h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--offblack);
}

.modern-form .form-subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 36px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: 10px;
  color: #2e7d32;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  z-index: 10;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-success svg {
  color: #4caf50;
  flex-shrink: 0;
}

.input-group {
  position: relative;
  margin-bottom: 28px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px 0 12px;
  font-size: 15px;
  color: var(--offblack);
  background: transparent;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.input-group textarea {
  resize: none;
  min-height: 100px;
}

.input-group label {
  position: absolute;
  left: 0;
  top: 16px;
  font-size: 15px;
  color: var(--muted);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-group .input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.input-group:has(textarea) .input-line {
  bottom: auto;
  top: calc(100% - 2px);
  position: relative;
  display: block;
  margin-top: -10px;
}

.input-group input:focus,
.input-group textarea:focus {
  border-bottom-color: transparent;
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
  top: -8px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.input-group input:focus~.input-line,
.input-group textarea:focus~.input-line {
  width: 100%;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  margin-top: 16px;
  background: linear-gradient(135deg, var(--gold), #c9962e);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn svg {
  transition: transform 0.3s ease;
}

.submit-btn:hover svg {
  transform: translateX(3px);
}

/* Contact Styles (Legacy/Fallback) */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(26, 26, 26, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form .form-group:last-of-type {
  flex: 1;
}

.contact-form textarea {
  flex: 1;
  min-height: 120px;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.form-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b38b28;
  flex-shrink: 0;
}

.form-header h3 {
  margin: 0 0 4px;
  font-size: 22px;
}

.form-header p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 500;
  color: var(--offblack);
}

.contact-form label .required {
  color: #e53935;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  background: #f9f7f3;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
  color: var(--ink);
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a09a90;
}

.contact-form textarea {
  resize: none;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.form-actions {
  margin-top: 8px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), #c9962e);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #e6b834, var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.btn-submit svg {
  transition: transform 0.3s ease;
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

/* Contact Info Sidebar (Legacy/Fallback) */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: space-between;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.04);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.1);
  border-color: rgba(212, 175, 55, 0.2);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b38b28;
  flex-shrink: 0;
}

.info-content h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--offblack);
}

.info-content p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--muted);
}

.info-link {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s ease;
}

.info-link:hover {
  color: #b38b28;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: #25D366;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.whatsapp-cta:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  color: #fff;
}

.instagram-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.instagram-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.35);
  color: #fff;
}

.contact-quote {
  margin-top: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  text-align: center;
  position: relative;
}

.contact-quote svg {
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-quote p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  font-style: italic;
  color: var(--offblack);
  line-height: 1.6;
  margin: 0 0 12px;
}

.contact-quote .quote-author {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-socials p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f5f3ef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.contact-map {
  margin-top: 8px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.06);
}

/* ============================================
   OVERLAYS & INTERACTIVE
   ============================================ */
/* Back to top */
#backToTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-4px);
}

.backToTop-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent, #c9a04b);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 0;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 9999;
}

.backToTop-btn svg {
  stroke: #fff;
  transition: transform 0.35s ease;
}

@media (hover: hover) {
  .backToTop-btn:hover svg {
    transform: translateY(-3px);
  }
}

.backToTop-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.backToTop-btn:active {
  transform: scale(0.92);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  /* Fallback */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.lightbox .close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 1010;
  transition: all 0.3s ease;
}

.lightbox .close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.lightbox-content {
  width: 100%;
  max-width: 1300px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  scrollbar-width: none;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.lightbox-content::-webkit-scrollbar {
  width: 6px;
}

.lightbox-content::-webkit-scrollbar-track {
  background: transparent;
}

.lightbox-content::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
}

.lightbox-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  align-items: start;
}

.lightbox-gallery img {
  width: 100%;
  height: auto;
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, filter 0.3s ease;
  display: block;
}

.lightbox-gallery img:hover {
  transform: scale(1.02);
  z-index: 1;
}

.lightbox-single-img {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  display: block;
  margin: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.7);
}

.footer .grid {
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
}

.footer .mini {
  color: #6f685b;
  font-size: 13px;
}

.footer .brand img {
  width: 36px;
  height: 36px;
}

.footer-dark {
  background: #0c0c0c;
  color: #e6e6e6;
  padding-top: 0;
}

.footer-cta {
  text-align: center;
  padding: 90px 20px 46px;
  background: #0c0c0c;
}

.footer-cta h2 {
  font-family: "Playfair Display";
  color: #fff;
  margin: 0 0 14px;
  font-size: 48px;
}

.footer-cta p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: #d4d4d4;
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-inner {
  padding: 52px 24px 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #cfcfcf;
}

.footer-col a {
  color: #cfcfcf;
  transition: 0.25s;
  font-size: 14px;
}

.footer-col a:hover {
  color: #d9a520;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.footer-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-right: 4px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
}

.contact-list li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-list li a:hover {
  color: #d9a520;
}

.contact-list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-list .icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.socials a {
  margin-right: 16px;
  display: inline-flex;
  align-items: center;
  color: #cfcfcf;
}

.socials a:hover svg {
  stroke: #d9a520;
}

.socials svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  font-size: 14px;
  color: #999;
}

/* ============================================
   GLOBAL RESPONSIVE MEDIA QUERIES
   ============================================ */
@media (max-width: 1024px) {

  /* Navigation */
  .burger {
    display: block;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 20px;
    position: relative;
  }

  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .burger span:nth-child(1) {
    top: 0;
  }

  .burger span:nth-child(2) {
    top: 9px;
  }

  .burger span:nth-child(3) {
    top: 18px;
  }

  .header.scrolled .burger span {
    background: var(--offblack);
  }

  .burger.open span {
    background: var(--offblack) !important;
  }

  .burger.open span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
  }

  .burger.open span:nth-child(2) {
    opacity: 0;
  }

  .burger.open span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
  }

  .header.scrolled {
    width: 100%;
    top: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .header:has(.burger.open) .nav {
    height: 90px;
    padding: 0 40px;
  }

  .header.scrolled:has(.burger.open) {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }

  .navlinks {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 1000;
    padding: 0;
    margin: 0;
  }

  .navlinks.open {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  .navlinks li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    margin: 15px 0;
  }

  .navlinks.open li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }

  /* Stagger animations */
  .navlinks.open li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .navlinks.open li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .navlinks.open li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .navlinks.open li:nth-child(4) {
    transition-delay: 0.4s;
  }

  .navlinks.open li:nth-child(5) {
    transition-delay: 0.5s;
  }

  .navlinks.open li:nth-child(6) {
    transition-delay: 0.6s;
  }

  .navlinks.open li:nth-child(7) {
    transition-delay: 0.7s;
  }

  .navlinks.open a {
    color: var(--offblack) !important;
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    text-shadow: none !important;
  }

  .navlinks.open a:hover,
  .navlinks.open a.active,
  .header.scrolled .navlinks.open a.active {
    color: var(--gold) !important;
  }

  .navlinks a.btn.active,
  .navlinks a.outline.active {
    color: #fff !important;
  }

  .navlinks .btn {
    margin-top: 10px;
    background: var(--gold);
    color: #fff !important;
  }
}

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-images {
    margin-top: 40px;
  }
}

@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer .grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-card {
    padding: 32px;
  }

  /* About page tablet fix - stack grid-2 on tablets */
  .section .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Reorder founder section on tablet/mobile - image after text */
  .section.alt .grid-2 {
    display: flex;
    flex-direction: column-reverse;
  }

  .founder-img-wrapper {
    max-width: 100%;
  }

  .founder-img {
    max-height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
  }

  .about-images {
    grid-template-columns: 1fr 1fr;
  }

  .about-images img:nth-child(2) {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .lightbox-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    padding: 50px 30px;
  }

  .contact-form-panel {
    padding: 50px 30px;
  }
}

@media (max-width: 850px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .trend-row {
    margin-bottom: 30px;
    gap: 30px;
    display: flex;
    flex-direction: column;
  }
  
  /* Ensure image is always second on mobile for alternating rows */
  .trend-row:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

@media (max-width: 720px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  form .row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100vh;
    padding-top: 68px;
  }

  .hero .inner {
    padding: 20px 0;
  }
}

@media (max-width: 620px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 60px 0 80px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px;
    border-radius: 16px;
  }

  .form-header {
    flex-direction: column;
    text-align: center;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-cta {
    padding: 14px 20px;
  }

  .contact-info-panel {
    padding: 40px 24px;
  }

  .contact-form-panel {
    padding: 40px 24px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .social-buttons {
    flex-direction: column;
  }

  .social-btn {
    justify-content: center;
  }

  .about-images {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .about-images img {
    min-height: 150px;
  }

  .about-images img:nth-child(2) {
    margin-top: 0;
  }
}

@media (max-width: 550px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .lightbox-gallery {
    grid-template-columns: 1fr;
  }

  .lightbox-content {
    padding: 16px;
  }
  
  .lightbox .close {
    top: 12px;
    right: 12px;
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .brand span {
    font-size: 16px;
  }

  .brand small {
    font-size: 7px;
    letter-spacing: 1.8px;
    margin-top: 1px;
  }
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #111;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: linear-gradient(#333 1px, transparent 1px), linear-gradient(90deg, #333 1px, transparent 1px);
  background-size: 40px 40px;
}

.blueprint-svg {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  opacity: 0.8;
  pointer-events: none;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-bottom: 0.5rem;
}

.draw-path {
  fill: transparent;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: draw 8s ease-in-out infinite alternate, fillText 8s ease-in-out infinite alternate;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 2000;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes fillText {
  0%, 20% {
    fill: transparent;
  }
  50%, 100% {
    fill: currentColor;
  }
}

/* Explicit text color fill class for white/gold */
.blueprint-svg text {
  color: var(--gold);
}
.blueprint-svg text[style*="stroke: #fff;"] {
  color: #fff;
}

.error-kicker {
  color: var(--gold) !important;
  font-size: 1rem;
}

.error-title {
  font-size: clamp(3rem, 6vw, 6rem);
  margin-bottom: 24px;
  color: #fff;
}

.error-text {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.125rem;
  color: #e5e5e5;
}

/* ============================================
   PAGE LOADER - Premium Interior Design Theme
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0c0c0c 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body.loading {
  overflow: hidden;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Elegant Floor Plan Animation */
.loader-blueprint {
  width: 120px;
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 60%;
  height: auto;
  object-fit: contain;
  animation: fadeInLogo 1s ease-out forwards;
}

@keyframes fadeInLogo {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.loader-blueprint svg {
  width: 100%;
  height: 100%;
}

.loader-blueprint .blueprint-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawBlueprint 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.loader-blueprint .blueprint-line:nth-child(2) {
  animation-delay: 0.15s;
}

.loader-blueprint .blueprint-line:nth-child(3) {
  animation-delay: 0.3s;
}

.loader-blueprint .blueprint-line:nth-child(4) {
  animation-delay: 0.45s;
}

@keyframes drawBlueprint {
  0% {
    stroke-dashoffset: 400;
    opacity: 0.3;
  }

  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -400;
    opacity: 0.3;
  }
}

/* Golden accent ring */
.loader-ring {
  position: absolute;
  inset: -15px;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: loaderSpin 1.2s linear infinite;
}

.loader-ring::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 2px solid transparent;
  border-top-color: rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  animation: loaderSpin 1.8s linear infinite reverse;
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Loader text */
.loader-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.loader-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
}

.loader-tagline {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Progress bar */
.loader-progress {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 12px;
}

.loader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), #f1d080);
  border-radius: 2px;
  transition: width 0.3s ease;
  animation: loaderProgress 1.5s ease-in-out infinite;
}

@keyframes loaderProgress {
  0% {
    width: 0%;
    margin-left: 0;
  }

  50% {
    width: 60%;
    margin-left: 20%;
  }

  100% {
    width: 0%;
    margin-left: 100%;
  }
}

/* Corner decorations */
.loader-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(212, 175, 55, 0.3);
  border-style: solid;
  border-width: 0;
}

.loader-corner--tl {
  top: 40px;
  left: 40px;
  border-top-width: 1px;
  border-left-width: 1px;
}

.loader-corner--tr {
  top: 40px;
  right: 40px;
  border-top-width: 1px;
  border-right-width: 1px;
}

.loader-corner--bl {
  bottom: 40px;
  left: 40px;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.loader-corner--br {
  bottom: 40px;
  right: 40px;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

/* ============================================
   SKELETON LOADING UI
   ============================================ */
.skeleton {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0.05) 100%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Skeleton for lightbox gallery */
.lightbox-skeleton {
  width: 100%;
  aspect-ratio: 16/11;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(255, 255, 255, 0.03) 100%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.lightbox-skeleton::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      transparent 40%,
      rgba(212, 175, 55, 0.05) 50%,
      transparent 60%);
  animation: skeletonGleam 2s ease-in-out infinite;
}

@keyframes skeletonGleam {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(200%) rotate(45deg);
  }
}

/* Image container with skeleton + fade-in */
.img-skeleton-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0;
  break-inside: avoid;
}

.img-skeleton-wrapper .skeleton-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0.03) 100%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.img-skeleton-wrapper .skeleton-placeholder::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 2px solid transparent;
  border-top-color: rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  animation: loaderSpin 1s linear infinite;
}

.img-skeleton-wrapper.loaded .skeleton-placeholder {
  opacity: 0;
  pointer-events: none;
}

.img-skeleton-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.3s ease;
  border-radius: 8px;
}

.img-skeleton-wrapper.loaded img {
  opacity: 1;
}

.img-skeleton-wrapper img:hover {
  transform: scale(1.02);
}

/* Progressive image loading for regular images */
.progressive-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
      rgba(239, 229, 210, 0.5) 0%,
      rgba(247, 240, 224, 0.5) 100%);
}

.progressive-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%);
  background-size: 200% 100%;
  animation: progressiveShimmer 2s ease-in-out infinite;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.progressive-img.loaded::before {
  opacity: 0;
}

.progressive-img img {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.progressive-img.loaded img {
  opacity: 1;
}

@keyframes progressiveShimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}
/* CSS */
.floating-contacts {
  position: fixed;
  left: 20px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.floating-btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 52px;
  height: 52px;
  border-radius: 26px;
  text-decoration: none;
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-btn:hover {
  width: 160px;
  transform: scale(1.04);
}

.btn-icon {
  width: 52px;
  min-width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.btn-icon::after {
  content: '';
  position: absolute;
  top: 5px; left: 9px;
  width: 55%; height: 30%;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  pointer-events: none;
}

.btn-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  padding-right: 14px;
  transition: opacity 0.2s ease 0.1s, transform 0.25s ease 0.1s;
  pointer-events: none;
}

.floating-btn:hover .btn-label {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp */
.floating-btn.whatsapp {
  background: linear-gradient(135deg, #1fcd61 0%, #0fa84c 50%, #0a8c3c 100%);
  box-shadow: 0 4px 20px rgba(16, 185, 89, 0.45), 0 1px 4px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
}
.floating-btn.whatsapp:hover {
  box-shadow: 0 6px 28px rgba(16, 185, 89, 0.55), 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
}
.floating-btn.whatsapp .btn-label { color: #e8fff2; }

/* Instagram */
.floating-btn.instagram {
  background: linear-gradient(135deg, #f9d423 0%, #f56040 30%, #e1306c 55%, #833ab4 80%, #405de6 100%);
  box-shadow: 0 4px 20px rgba(209, 55, 108, 0.45), 0 1px 4px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.15);
}
.floating-btn.instagram:hover {
  box-shadow: 0 6px 28px rgba(209, 55, 108, 0.55), 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}
.floating-btn.instagram .btn-label { color: #fff0f8; }


@keyframes pulse-out {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 768px) {
  .floating-btn { width: 46px; height: 46px; border-radius: 23px; }
  .floating-btn:hover { width: 140px; }
  .btn-icon { width: 46px; min-width: 46px; height: 46px; }
}