/* =====================================================
   Royal Rajasthan Interiors – Master Stylesheet
   Color Palette:
     --clr-darkest:  #291C0E
     --clr-dark:     #6E473B
     --clr-mid:      #A78D78
     --clr-light:    #BEB5A9
     --clr-lightest: #E1D4C2
   ===================================================== */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
  --clr-darkest: #291C0E;
  --clr-dark: #6E473B;
  --clr-mid: #A78D78;
  --clr-light: #BEB5A9;
  --clr-lightest: #E1D4C2;

  --clr-gold: #C9A96E;
  --clr-gold-light: #E2C992;
  --clr-white: #FFFFFF;
  --clr-off-white: #F5F0EB;
  --clr-body-bg: #F8F4EF;
  --clr-text: #3A2E24;
  --clr-text-light: #7A6A5E;
  --clr-whatsapp: #25D366;
  --clr-call: #0062cc;

  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 32px rgba(41, 28, 14, 0.18);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition-fast: 0.25s ease;
  --transition-normal: 0.4s ease;
  --transition-slow: 0.6s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-body-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--clr-darkest);
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Utility ---------- */
.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.6rem;
  color: var(--clr-darkest);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-dark));
  border-radius: 2px;
}

.section-title p {
  color: var(--clr-text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 20px auto 0;
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(41, 28, 14, 0.12);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(41, 28, 14, 0.2);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  /* default reserved space */
  transition: all .5s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: transparent;
}

.btn::after,
.btn::before {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  transform: skew(90deg) translate(-50%, -50%);
  position: absolute;
  inset: 50%;
  left: 25%;
  z-index: -1;
  transition: .5s ease-out;
}

.btn::before {
  top: -50%;
  left: -25%;
  transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}

.btn:hover::before {
  transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}

.btn:hover::after {
  transform: skew(45deg) translate(-50%, -50%);
}

.btn:active {
  filter: brightness(.8);
  transform: scale(.98);
}

/* Base states for various color types */

.btn-primary {
  background-color: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-darkest);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.2);
}

.btn-primary::after,
.btn-primary::before {
  background-color: var(--clr-dark);
}

.btn-primary:hover {
  color: var(--clr-white);
  border-color: var(--clr-dark);
  box-shadow: 0 8px 30px rgba(110, 71, 59, 0.4);
}

.btn-outline {
  border-color: var(--clr-gold);
  color: var(--clr-white);
}

.btn-outline::after,
.btn-outline::before {
  background-color: var(--clr-gold);
}

.btn-outline:hover {
  color: var(--clr-darkest);
}

.btn-gold {
  border-color: var(--clr-gold);
  color: var(--clr-darkest);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.2);
}

/* For gold button, we do an inverted style so the background is solid initially */
.btn-gold {
  background: var(--clr-gold);
  color: var(--clr-darkest);
}

.btn-gold::after,
.btn-gold::before {
  background-color: var(--clr-darkest);
}

.btn-gold:hover {
  color: var(--clr-gold);
  border-color: var(--clr-darkest);
}

/* Keep solid styles for utility buttons like whatsapp/call */
.btn-whatsapp {
  background: var(--clr-whatsapp);
  color: var(--clr-white);
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
}

.btn-whatsapp::after,
.btn-whatsapp::before {
  display: none;
}

.btn-call {
  background: var(--clr-call);
  color: var(--clr-white);
}

.btn-call:hover {
  background: #C0392B;
  transform: translateY(-2px);
}

.btn-call::after,
.btn-call::before {
  display: none;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-fast);
}

.navbar.scrolled {
  background: rgba(41, 28, 14, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand .nav-logo {
  height: 65px;
  width: auto;
  border-radius: 8px;
  /* Added slight smoothing for the square wood logo */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-fast);
}

.nav-brand:hover .nav-logo {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-white);
  background: rgba(201, 169, 110, 0.2);
}

.nav-links a.active {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: var(--clr-darkest);
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--clr-white);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(41, 28, 14, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 40px;
    transition: right var(--transition-normal);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--clr-darkest);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 8s linear;
  transform: scale(1.1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(41, 28, 14, 0.65);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(167, 141, 120, 0.1) 0%, transparent 70%);
  animation: heroGlow 10s ease-in-out infinite alternate-reverse;
  z-index: 1;
  pointer-events: none;
}

@keyframes heroGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -20px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-glass {
  background: rgba(41, 28, 14, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 45px 40px;
  max-width: 500px;
  margin: 0;
  text-align: left;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: var(--clr-darkest);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease;
}

.hero h2 {
  font-size: 3.1rem;
  color: var(--clr-white);
  margin-bottom: 16px;
  line-height: 1.2;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero h2 span {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 100%;
  margin: 0 0 30px 0;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

/* Decorative orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  z-index: 1;
}

.hero-orb-1 {
  width: 300px;
  height: 300px;
  background: var(--clr-gold);
  top: 10%;
  right: 5%;
  animation: float 6s ease-in-out infinite;
}

.hero-orb-2 {
  width: 200px;
  height: 200px;
  background: var(--clr-dark);
  bottom: 15%;
  left: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 150px;
  height: 150px;
  background: var(--clr-mid);
  top: 60%;
  right: 20%;
  animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }
}

/* =====================================================
   PAGE HEADER (inner pages)
   ===================================================== */
.page-header {
  padding: 180px 0 100px;
  background: linear-gradient(rgba(41, 28, 14, 0.6), rgba(41, 28, 14, 0.6)), url('../images/WhatsApp Image 2026-02-21 at 2.05.42 PM.jpeg');
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(201, 169, 110, 0.15), transparent 60%);
}

.page-header h2 {
  font-size: 3rem;
  color: var(--clr-white);
  position: relative;
  z-index: 1;
}

.page-header .breadcrumb {
  display: flex;
  gap: 10px;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  position: relative;
  z-index: 1;
  font-size: 1rem;
}

.page-header .breadcrumb a {
  color: var(--clr-gold);
}

.page-header .breadcrumb a:hover {
  text-decoration: underline;
}

/* =====================================================
   ABOUT SECTION (Home)
   ===================================================== */
.about-preview {
  background: var(--clr-off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(41, 28, 14, 0.15);
}

.about-img-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-img-wrapper:hover img {
  transform: scale(1.05);
}

.about-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: var(--clr-darkest);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
}

.about-img-badge .num {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  display: block;
  line-height: 1;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--clr-text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-text .btn {
  margin-top: 12px;
}

/* =====================================================
   METRICS / COUNTERS
   ===================================================== */
.metrics-section {
  background: linear-gradient(rgba(41, 28, 14, 0.88), rgba(41, 28, 14, 0.88)), url('../images/about-image.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.about-page .metrics-grid {
  max-width: 1100px;
  margin: 0 auto;
  gap: 0;
}

.metric-card {
  text-align: left;
  padding: 60px 30px;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.metric-card:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-card:hover {
  background: var(--clr-dark);
  /* Brown background from theme */
  transform: scale(1.05);
  z-index: 2;
  border-radius: var(--radius-md);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.metric-bg-letter {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 10rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
  line-height: 1;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.metric-card:hover .metric-bg-letter {
  color: rgba(255, 255, 255, 0.1);
  right: 20px;
}

.metric-icon {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: block;
  margin: 0 0 20px 0;
  font-size: 3rem;
  color: var(--clr-gold);
  /* Theme gold icon */
  transition: all var(--transition-normal);
}

.metric-icon i {
  border: 2px solid var(--clr-gold);
  border-radius: 50%;
  padding: 15px;
}

.metric-card:hover .metric-icon {
  color: var(--clr-white);
}

.metric-card:hover .metric-icon i {
  border-color: var(--clr-white);
}

.metric-card h4 {
  font-size: 1.5rem;
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.metric-card .count {
  font-size: 2.8rem;
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  display: block;
  line-height: 1.1;
}

.metric-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.metric-card .label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metric-readmore {
  display: inline-block;
  color: var(--clr-white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-top: 10px;
  letter-spacing: 1px;
  position: relative;
  width: fit-content;
}

.metric-readmore::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--clr-white);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.metric-card:hover .metric-readmore::after {
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 600px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   SERVICES PREVIEW (Home) + SERVICES PAGE
   ===================================================== */
.services-section {
  background: var(--clr-body-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  border-radius: 30px 80px 30px 30px;
  overflow: hidden;
  background: var(--clr-white);
  box-shadow: 0 10px 30px rgba(41, 28, 14, 0.08);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(41, 28, 14, 0.15);
}

.service-card-img-wrapper {
  overflow: hidden;
  position: relative;
  height: 250px;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-img {
  transform: scale(1.1);
}

.service-card-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}

.service-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--clr-darkest);
  font-family: var(--font-heading);
  font-weight: 700;
}

.service-card-body p {
  color: var(--clr-text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-card-body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.service-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: var(--clr-darkest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  z-index: 2;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

/* =====================================================
   MISSION & VISION
   ===================================================== */
.mission-vision {
  background: var(--clr-off-white);
  position: relative;
  overflow: hidden;
}

/* Decorative background elements for creativity */
.mission-vision::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.05), transparent 70%);
  pointer-events: none;
}

.mv-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.solution_card {
  flex: 0 1 calc(50% - 15px);
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(136, 144, 195, 0.2),
    0 5px 15px 0 rgba(37, 44, 97, 0.15);
  border-radius: 15px;
  padding: 30px 25px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 280px;
  transition: 0.7s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.solution_card:hover {
  background: var(--clr-dark);
  color: #fff;
  transform: scale(1.05);
  z-index: 9;
}

.solution_card:hover .solu_title h3,
.solution_card:hover .solu_description p {
  color: #fff;
}

.solution_card:before {
  content: "";
  position: absolute;
  background: rgba(201, 169, 110, 0.1);
  width: 170px;
  height: 400px;
  z-index: -1;
  transform: rotate(42deg);
  right: -56px;
  top: -23px;
  border-radius: 35px;
}

.solution_card:hover:before {
  background: rgba(255, 255, 255, 0.1);
}

.solution_card .so_top_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--clr-dark);
  transition: 0.7s;
}

.solution_card:hover .so_top_icon {
  background: var(--clr-gold);
  color: var(--clr-darkest);
}

.solu_title h3 {
  color: #212121;
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 15px;
  transition: 0.7s;
}

.solu_description p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
  transition: 0.7s;
}

.read_more_btn {
  border: 0;
  border-radius: 15px;
  background: var(--clr-gold) !important;
  color: var(--clr-darkest);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.solution_card:hover .read_more_btn {
  background: #fff !important;
  color: var(--clr-dark);
}

.hover_color_bubble {
  position: absolute;
  background: rgba(201, 169, 110, 0.15);
  width: 100rem;
  height: 100rem;
  left: 0;
  right: 0;
  z-index: -1;
  top: 16rem;
  border-radius: 50%;
  transform: rotate(-36deg);
  left: -18rem;
  transition: 0.7s;
}

.solution_card:hover .hover_color_bubble {
  top: 0rem;
}

@media (max-width: 768px) {
  .solution_card {
    flex: 0 1 100%;
  }
}

/* =====================================================
   CORE VALUES
   ===================================================== */
.core-values {
  background: var(--clr-body-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  position: relative;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(41, 28, 14, 0.08);
  transition: all var(--transition-normal);
  text-align: center;
}

.value-card:hover {
  box-shadow: 0 15px 45px rgba(41, 28, 14, 0.15);
}

.value-card-top {
  position: relative;
  height: 380px;
  /* Reference look */
  overflow: hidden;
}

.value-card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.value-card:hover .value-card-top img {
  transform: scale(1.1);
}

.value-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(110, 71, 59, 0.9);
  /* Theme brown overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  opacity: 0;
  transition: all var(--transition-normal);
  z-index: 2;
}

.value-card:hover .value-overlay {
  opacity: 1;
}

.value-overlay p {
  color: var(--clr-white);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  transform: translateY(-20px);
  transition: all var(--transition-normal) 0.1s;
}

.value-card:hover .value-overlay p {
  transform: translateY(0);
}

.value-readmore {
  color: var(--clr-white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  border-bottom: 2px solid var(--clr-white);
  padding-bottom: 4px;
}

.value-triangle {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  background: var(--clr-white);
  z-index: 3;
  transition: transform var(--transition-normal);
  padding-bottom: 60px;
  /* Space for the title */
}

.value-triangle::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: var(--clr-white);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.value-card:hover .value-triangle {
  transform: translateY(80px);
  /* Slide down away */
}

.value-icon {
  margin-top: -30px;
  /* Position in the triangle tip */
  position: relative;
  z-index: 4;
  font-size: 2.2rem;
  color: var(--clr-dark);
}

.value-icon i {
  transition: all var(--transition-normal);
}

.value-card:hover .value-icon i {
  color: var(--clr-gold);
}

.value-card-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0 25px;
  z-index: 5;
  background: var(--clr-white);
  /* Background for the title part */
}

/* On hover, card bottom style changes slightly or gets a tinted bg if you want to match the reference "Read more" style's bottom label */
.value-card:hover .value-card-bottom {
  background: #f4f1ee;
  /* Subtle tinted background for the label area on hover */
}

.value-card-bottom h4 {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--clr-darkest);
  margin: 0;
}

@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card-top {
    height: 320px;
  }
}

/* =====================================================
   OUR WORK PROCESS
   ===================================================== */
.work-process {
  background:
    linear-gradient(rgba(41, 28, 14, 0.5), rgba(41, 28, 14, 0.5)),
    url('../images/work-process-bg.jpeg'),
    url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 10 C60 30 90 40 90 60 C90 80 70 95 50 95 C30 95 10 80 10 60 C10 40 40 30 50 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
  background-size: cover, cover, 150px;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--clr-darkest);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  /* Reducing width to make cards look smaller */
  margin: 0 auto;
}

.process-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 45px 25px;
  border-radius: 40px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  /* Liquid Glass Base */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px) saturate(150%);
  -webkit-backdrop-filter: blur(25px) saturate(150%);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Liquid Sheen Animation */
.process-card::before {
  content: '';
  position: absolute;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  transition: transform 1s ease;
  pointer-events: none;
  z-index: 1;
}

.process-card:hover::before {
  transform: translate(50%, 50%);
}

.process-card:hover {
  background: rgba(41, 28, 14, 0.8);
  /* Theme brown glass */
  border-radius: 10px;
  /* Transitioning to mostly sharp as requested earlier but keeping slight comfort */
  border-color: rgba(201, 169, 110, 0.5);
  /* Gold glass edge */
  transform: translateY(-12px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(201, 169, 110, 0.2);
}

.process-card>* {
  position: relative;
  z-index: 2;
  /* Content above sheen */
}

.process-icon {
  font-size: 3.5rem;
  color: var(--clr-gold);
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

.process-card:hover .process-icon {
  color: var(--clr-white);
  transform: scale(1.1);
}

.process-card h4 {
  color: var(--clr-white);
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

.step-num {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.process-card:hover .step-num {
  background: var(--clr-white);
  color: var(--clr-dark);
}

@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 40px 20px;
  }
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-choose {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-2.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
}

.why-choose .section-title h2,
.why-choose .section-title p {
  color: var(--clr-white);
}

.title-underline {
  width: 50px;
  height: 3px;
  background: #ff6a00;
  /* Matching the orange underline from reference, can change to var(--clr-gold) if preferred */
  margin: 15px auto 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  background: var(--clr-white);
  transition: all var(--transition-normal);
  text-align: center;
}

.why-card:hover {
  background: #ff6a00;
  /* Theme orange from reference - will use a value that matches user theme better */
  background: var(--clr-gold);
  /* Using theme gold */
  transform: none;
  box-shadow: none;
}

.why-card-icon {
  width: auto;
  height: auto;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--clr-darkest);
  transition: all var(--transition-normal);
}

.why-card:hover .why-card-icon,
.why-card:hover h4 {
  color: var(--clr-white);
}

.why-card h4 {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin: 0;
  color: var(--clr-darkest);
  transition: all var(--transition-normal);
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: var(--clr-body-bg);
  padding: 100px 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(201, 169, 110, 0.12);
  /* Light gold/cream tint */
  border-radius: 40px;
  padding: 80px;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(41, 28, 14, 0.05);
}

.cta-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 5;
}

.cta-content h2 {
  font-size: 3.2rem;
  line-height: 1.1;
  color: var(--clr-darkest);
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

.cta-content h2 span {
  color: var(--clr-gold);
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--clr-text-light);
  margin-bottom: 40px;
  max-width: 500px;
}

.cta-btns {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-cta-main {
  background: var(--clr-darkest);
  color: var(--clr-white);
  padding: 18px 40px;
  border-radius: 100px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(41, 28, 14, 0.2);
}

.btn-cta-main:hover {
  background: var(--clr-gold);
  color: var(--clr-darkest);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(201, 169, 110, 0.3);
}

.cta-alt-btns {
  display: flex;
  gap: 12px;
}

.cta-alt-btns a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(41, 28, 14, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-darkest);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.cta-alt-btns a:hover {
  background: var(--clr-white);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: scale(1.1);
}

.cta-graphic {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.graphic-main {
  font-size: 10rem;
  color: var(--clr-dark);
  opacity: 0.8;
  z-index: 5;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  animation: float-main 4s infinite ease-in-out;
}

.graphic-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.shape {
  position: absolute;
  background: var(--clr-gold);
  opacity: 0.4;
  border-radius: 50%;
}

.shape-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  right: 10%;
  background: var(--clr-gold-light);
  animation: float-slow 6s infinite ease-in-out;
}

.shape-2 {
  width: 30px;
  height: 30px;
  bottom: 20%;
  left: 0%;
  background: var(--clr-dark);
  animation: float-slow 4s infinite reverse ease-in-out;
}

.shape-3 {
  width: 15px;
  height: 15px;
  top: 60%;
  right: -10%;
  animation: float-slow 5s infinite ease-in-out;
}

.shape-4 {
  width: 40px;
  height: 40px;
  top: -20%;
  left: 20%;
  background: var(--clr-white);
  opacity: 0.6;
  animation: float-slow 7s infinite ease-in-out;
}

@keyframes float-main {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes float-slow {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(15px, -15px);
  }
}

@media (max-width: 1100px) {
  .cta-card {
    padding: 60px;
  }

  .cta-content h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .cta-card {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-content p {
    margin: 0 auto 40px;
  }

  .cta-btns {
    justify-content: center;
  }

  .cta-graphic {
    flex: 0 0 auto;
  }
}

@media (max-width: 600px) {
  .cta-card {
    padding: 40px 25px;
    border-radius: 30px;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-btns {
    flex-direction: column;
  }

  .graphic-main {
    font-size: 7rem;
  }
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section {
  background: var(--clr-body-bg);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  min-width: 100%;
  padding: 20px;
}

.testimonial-inner {
  background: #ffffff;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(201, 169, 110, 0.18) 0%, rgba(201, 169, 110, 0.18) 45%, transparent 46.5%),
    linear-gradient(135deg, #ffffff 0%, #fdf9f4 100%);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-lg);
  padding: 45px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(41, 28, 14, 0.05);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  height: 100%;
}

.testimonial-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(41, 28, 14, 0.1);
  border-color: var(--clr-gold);
}

.testimonial-inner .quote-icon {
  font-size: 3rem;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-inner p {
  font-size: 1.1rem;
  color: var(--clr-text);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author h4 {
  font-size: 1.15rem;
  color: var(--clr-darkest);
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--clr-gold);
  font-size: 0.9rem;
  font-weight: 500;
}

.testimonial-stars {
  color: var(--clr-gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--clr-mid);
  background: transparent;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--clr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-darkest);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clr-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.slider-dot.active {
  background: var(--clr-gold);
  transform: scale(1.2);
}

/* =====================================================
   TESTIMONIALS PAGE
   ===================================================== */
.testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.testimonials-page-grid .testimonial-inner {
  height: 100%;
  text-align: left;
}

.testimonials-page-grid .testimonial-inner .quote-icon {
  text-align: left;
}

.testimonials-page-grid .testimonial-inner p {
  text-align: left;
}

.testimonial-page-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-darkest);
  font-family: var(--font-heading);
}

/* =====================================================
   FAQ / ACCORDION
   ===================================================== */
.faq-section {
  background: var(--clr-off-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-white);
  box-shadow: 0 2px 12px rgba(41, 28, 14, 0.06);
  transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
  box-shadow: 0 6px 24px rgba(41, 28, 14, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--clr-darkest);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(201, 169, 110, 0.08);
}

.faq-question .faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clr-lightest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.open .faq-question {
  color: var(--clr-dark);
  background: rgba(201, 169, 110, 0.08);
}

.faq-item.open .faq-toggle {
  background: var(--clr-gold);
  color: var(--clr-darkest);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-answer-inner {
  padding: 0 28px 22px;
  color: var(--clr-text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-section {
  background: var(--clr-body-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: 0 10px 40px rgba(41, 28, 14, 0.08);
  transition: all var(--transition-normal);
}

.contact-form-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(41, 28, 14, 0.12);
  border-color: rgba(201, 169, 110, 0.3);
}

.contact-form-wrapper h3 {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-darkest);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--clr-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-text);
  background: rgba(255, 255, 255, 0.8);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.15);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-card {
  display: flex;
  gap: 18px;
  padding: 30px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(41, 28, 14, 0.08);
  transition: all var(--transition-normal);
  border: 1px solid rgba(41, 28, 14, 0.03);
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(41, 28, 14, 0.12);
  border-color: rgba(201, 169, 110, 0.3);
}

.contact-info-icon {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-darkest);
}

.contact-info-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--clr-text-light);
  font-size: 0.95rem;
}

.contact-info-card a:hover {
  color: var(--clr-dark);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-dark), var(--clr-darkest));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white) !important;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: var(--clr-darkest);
  transform: translateY(-4px);
}

.map-wrapper {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(41, 28, 14, 0.1);
}

.map-wrapper iframe {
  display: block;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-full-section {
  background: var(--clr-body-bg);
}

.about-full-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.philosophy-grid {
  align-items: center;
}

.philosophy-grid .about-full-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-full-text h3 {
  font-size: 2.6rem;
  margin-bottom: 24px;
  color: var(--clr-darkest);
  line-height: 1.2;
}

.about-full-text p {
  color: var(--clr-text-light);
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 35px;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(41, 28, 14, 0.05);
  transition: all var(--transition-normal);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.about-highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(201, 169, 110, 0.15);
  border-color: var(--clr-gold);
}

.about-highlight-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-darkest);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.about-highlight-item:hover .about-highlight-icon {
  transform: rotate(360deg) scale(1.1);
}

.about-highlight-item span {
  font-weight: 600;
  font-size: 1rem;
  color: var(--clr-darkest);
}

.about-img-wrapper {
  animation: float-image 6s ease-in-out infinite;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(41, 28, 14, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.about-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.philosophy-grid .about-img-wrapper {
  height: auto;
}

.philosophy-grid .about-img-wrapper img {
  height: 520px;
}

@keyframes float-image {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.philosophy-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 35px;
}

.philosophy-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(41, 28, 14, 0.04);
  transition: all var(--transition-normal);
  border: 1px solid rgba(201, 169, 110, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.philosophy-step:hover {
  transform: translateY(-8px);
  background: #fdf9f4;
  border-color: var(--clr-gold);
  box-shadow: 0 15px 35px rgba(201, 169, 110, 0.15);
}

.philosophy-step .step-num {
  font-size: 1.50rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--clr-gold);
  opacity: 0.4;
  line-height: 1;
  transition: all var(--transition-normal);
  min-width: 40px;
}

.philosophy-step:hover .step-num {
  opacity: 1;
  transform: scale(1.1);
}

.philosophy-step h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--clr-darkest);
  font-family: var(--font-body);
  font-weight: 700;
  transition: color var(--transition-normal);
}

.philosophy-step:hover h4 {
  color: var(--clr-dark);
}

.philosophy-step p {
  font-size: 0.88rem;
  color: var(--clr-text-light);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .philosophy-steps {
    grid-template-columns: 1fr;
  }

  .philosophy-step {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .philosophy-step:hover {
    transform: translateY(-5px);
  }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--clr-darkest);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  color: var(--clr-white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer-brand h3 span {
  color: var(--clr-gold);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer h4 {
  color: var(--clr-white);
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--clr-gold);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--clr-gold);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item .fc-icon {
  min-width: 24px;
  text-align: center;
  color: var(--clr-gold);
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item a:hover {
  color: var(--clr-gold);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: #28a745;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-brand-link {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-brand-link:hover {
  color: var(--clr-gold) !important;
  text-decoration: none !important;
}

/* =====================================================
   FLOATING BUTTONS
   ===================================================== */
.floating-btns-left {
  position: fixed;
  bottom: 30px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.floating-btns-right {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-white);
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.call {
  background: #0062cc;
}

.float-btn.scroll-top {
  background: linear-gradient(135deg, var(--clr-dark), var(--clr-darkest));
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.float-btn.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Tablets */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 2.8rem;
  }

  .hero-glass {
    padding: 45px 35px;
  }

  .about-grid,
  .about-full-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .cta-section h2 {
    font-size: 2.2rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero h2 {
    font-size: 2rem;
  }

  .hero-glass {
    padding: 35px 24px;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-padding {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .metric-card {
    padding: 24px 12px;
  }

  .metric-card .count {
    font-size: 2rem;
  }

  .services-grid,
  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .page-header {
    padding: 130px 0 70px;
    min-height: 350px;
  }

  .page-header h2 {
    font-size: 2.25rem;
  }

  .navbar {
    padding: 10px 0;
    height: 70px;
  }

  .nav-brand .nav-logo {
    height: 50px;
  }

  .hamburger {
    margin-top: 0;
  }

  .contact-section {
    padding-top: 60px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .testimonials-page-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

/* =====================================================
   GALLERY PAGE
   ===================================================== */
.gallery-section {
  background: var(--clr-body-bg);
}

.gallery-filter-wrapper {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 8px 16px;
  background: rgba(225, 212, 194, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--clr-text-light);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover {
  color: var(--clr-darkest);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: var(--clr-darkest);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.35);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(41, 28, 14, 0.08);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--clr-lightest);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

/* Video badge overlay */
.video-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(41, 28, 14, 0.85);
  color: var(--clr-gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 169, 110, 0.4);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(41, 28, 14, 0.9) 0%, rgba(110, 71, 59, 0.3) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: opacity var(--transition-normal);
  z-index: 1;
}

.gallery-item-info {
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.gallery-item-category {
  color: var(--clr-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.gallery-item-title {
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
}

.gallery-item-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.95);
  color: var(--clr-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  transition: all var(--transition-normal);
  z-index: 2;
}

/* Hover States */
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(41, 28, 14, 0.2);
}

.gallery-item:hover .gallery-item-img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-item-info {
  transform: translateY(0);
}

.gallery-item:hover .gallery-item-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(25, 17, 10, 0.97);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.95);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.lightbox.active .lightbox-content {
  opacity: 1;
  transform: scale(1);
}

.lightbox-caption {
  color: var(--clr-lightest);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-top: 20px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Lightbox Controls */
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--clr-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--clr-gold);
  color: var(--clr-darkest);
  border-color: var(--clr-gold);
  transform: rotate(90deg);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--clr-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.lightbox-btn:hover {
  background: var(--clr-gold);
  color: var(--clr-darkest);
  border-color: var(--clr-gold);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

/* Responsive styles for gallery */
@media (max-width: 992px) {
  .lightbox-prev {
    left: 20px;
  }
  .lightbox-next {
    right: 20px;
  }
  .lightbox-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }
  
  .filter-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
  
  .lightbox-btn {
    top: auto;
    bottom: 20px;
    transform: translateY(0);
    width: 45px;
    height: 45px;
  }
  
  .lightbox-prev {
    left: calc(50% - 60px);
  }
  
  .lightbox-next {
    right: calc(50% - 60px);
  }
  
  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}