﻿/* ===========================
   HomeClik Photography CSS
   =========================== */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96B;
  --gold-dark: #9E7B2E;
  
  /* Theme mapping (Classic Gold by default) */
  --primary: var(--gold);
  --primary-light: var(--gold-light);
  --primary-dark: var(--gold-dark);
  --primary-rgb: 201, 168, 76;
  
  --bg: #0A0A0F;
  --bg2: #0F0F18;
  --bg3: #141420;
  --surface: #1A1A28;
  --surface2: #222235;
  --text: #F0EEF8;
  --text-muted: #9B99B0;
  --border: rgba(var(--primary-rgb), 0.15);
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  
  --theme-transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { 
  font-family: 'Inter', sans-serif; 
  background: var(--bg); 
  color: var(--text); 
  overflow-x: hidden; 
  cursor: none;
  transition: var(--theme-transition);
}

/* Global Transition Hooks for smooth theme shifts */
a, button, .svc-card, .port-item, .pf-btn, .t-btn, .t-dot, .step-card, .footer, .navbar, .logo-cam, .gold, .success-icon, .burst-ring, .tc-box {
  transition: var(--theme-transition);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 36px; height: 36px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 1000000;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 1000000;
  transform: translate(-50%,-50%);
  transition: transform 0.05s;
}
.cursor.hover { width:60px; height:60px; background:rgba(var(--primary-rgb),0.1); }

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 100000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.loader-lens {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  animation: spin 2s linear infinite;
  box-shadow: 0 0 30px rgba(var(--primary-rgb),0.4);
}
.loader-iris {
  width: 40px; height: 40px;
  background: radial-gradient(circle, var(--gold) 30%, transparent 70%);
  border-radius: 50%;
  animation: pulse 1s ease-in-out infinite alternate;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { from { transform: scale(0.8); opacity:0.6; } to { transform: scale(1.1); opacity:1; } }
.loader-text-wrap { text-align: center; }
.loader-brand { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); letter-spacing: 4px; }
.loader-bar { width: 200px; height: 3px; background: var(--surface2); border-radius: 2px; margin-top: 12px; overflow: hidden; }
.loader-fill { width: 0; height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); border-radius: 2px; animation: fill-bar 2s ease forwards; }
@keyframes fill-bar { to { width: 100%; } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: transparent;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo-cam { color: var(--gold); font-size: 1.2rem; }
.logo-img { height: 32px; width: 32px; border-radius: 8px; object-fit: cover; border: 1px solid rgba(var(--primary-rgb), 0.25); transition: border-color 0.4s ease; }
.gold { color: var(--gold); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 36px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.3s; position: relative; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:2px; background:var(--gold); transform:scaleX(0); transition:transform 0.3s; transform-origin:left; }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: #000 !important; font-weight: 600 !important;
  padding: 10px 22px; border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,168,76,0.4); }
.nav-cta::after { display: none !important; }
.hamburger { display: none; background: none; border: none; cursor: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all 0.3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: min(320px,85vw); height: 100vh;
  background: var(--bg2); z-index: 999;
  padding: 90px 40px 40px;
  transition: right 0.4s cubic-bezier(0.77,0,0.18,1);
  border-left: 1px solid var(--border);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 28px; }
.mob-link { color: var(--text); text-decoration: none; font-size: 1.4rem; font-family: 'Playfair Display', serif; transition: color 0.3s; }
.mob-link:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 700px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width:100%; height:100%; object-fit:cover; transform:scale(1.1); transition:transform 8s ease; }
.hero.loaded .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.7) 50%, rgba(10,10,15,0.85) 100%);
}
.particle-field { position: absolute; inset: 0; pointer-events: none; }
.particle { position: absolute; width: 2px; height: 2px; background: var(--gold); border-radius: 50%; animation: float-p linear infinite; opacity: 0; }
@keyframes float-p {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; padding: 0 60px;
  margin-top: 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.15);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  color: var(--gold); padding: 8px 20px;
  border-radius: 50px; font-size: 0.85rem; font-weight: 500;
  margin-bottom: 28px; backdrop-filter: blur(10px);
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1; margin-bottom: 24px;
}
.line { display: block; }
.gold-italic { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.7;
  max-width: 540px; margin-bottom: 36px;
}
/* Animation helpers */
.anim-pop { animation: pop-in 0.6s cubic-bezier(0.175,0.885,0.32,1.275) both; animation-delay: var(--d, 0s); }
.anim-rise { animation: rise-in 0.8s cubic-bezier(0.16,1,0.3,1) both; animation-delay: var(--d, 0s); }
@keyframes pop-in { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes rise-in { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000; font-weight: 700; font-size: 0.95rem;
  padding: 14px 30px; border-radius: 50px; text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none; cursor: none;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 35px rgba(var(--primary-rgb),0.4); }
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(var(--primary-rgb), 0.5); color: var(--text);
  font-weight: 500; font-size: 0.95rem;
  padding: 14px 30px; border-radius: 50px; text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(var(--primary-rgb),0.1); transform: translateY(-3px); }
.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat { text-align: center; }
.snum { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); font-weight: 700; }
.stat small { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.stat-sep { width: 1px; height: 50px; background: var(--border); }
.hero-scroll-btn-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 8px;
  align-self: center;
}
.hero-scroll-btn-wrapper .scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(var(--primary-rgb), 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 4px;
  cursor: none;
}
.hero-scroll-btn-wrapper .scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(8px);opacity:0.3} }

/* ===== MARQUEE ===== */
.marquee-wrap { overflow: hidden; background: var(--gold); padding: 14px 0; }
.marquee-track {
  display: flex; gap: 40px; width: max-content;
  animation: marquee 30s linear infinite;
  font-size: 0.85rem; font-weight: 700; color: #000; letter-spacing: 1px; text-transform: uppercase;
}
.marquee-track span { white-space: nowrap; }
.bull { color: rgba(0,0,0,0.4); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.sec-header { text-align: center; margin-bottom: 64px; }
.sec-badge {
  display: inline-block;
  background: rgba(var(--primary-rgb),0.1); border: 1px solid rgba(var(--primary-rgb),0.3);
  color: var(--gold); padding: 6px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2; margin-bottom: 16px;
}
.sec-sub { color: var(--text-muted); font-size: 1rem; max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal { transform: translateY(50px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ===== SERVICES ===== */
.services-section { background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 28px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 30px;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(var(--primary-rgb),0.3); border-color: rgba(var(--primary-rgb),0.3); }
.svc-card:hover::before { opacity: 1; }
.svc-card.featured { background: linear-gradient(135deg, var(--surface), #1f1f35); border-color: rgba(var(--primary-rgb),0.4); }
.featured-tag {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000; font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px; letter-spacing: 1px;
}
.svc-icon { font-size: 2.5rem; margin-bottom: 20px; }
.svc-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; margin-bottom: 12px; }
.svc-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.svc-list { list-style: none; margin-bottom: 24px; }
.svc-list li { color: var(--text-muted); font-size: 0.85rem; padding: 4px 0; padding-left: 16px; position: relative; }
.svc-list li::before { content:'✓'; color: var(--gold); position:absolute; left:0; font-weight:700; }
.svc-price { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--gold); font-weight: 700; margin-bottom: 20px; }
.svc-btn {
  display: inline-block; color: var(--gold); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; border: 1px solid rgba(var(--primary-rgb),0.4);
  padding: 10px 20px; border-radius: 50px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  /* Reset button-element defaults */
  background: transparent; font-family: 'Inter', sans-serif;
  cursor: none; outline: none; -webkit-appearance: none;
  position: relative; z-index: 5;
}
.svc-btn:hover { background: var(--gold); color: #000; transform: translateX(4px); }

/* ===== PORTFOLIO ===== */
.portfolio-section { background: var(--bg3); }
.port-filters { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.pf-btn {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-muted); padding: 10px 24px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 500; cursor: none;
  transition: all 0.3s;
}
.pf-btn.active, .pf-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.port-item { position: relative; overflow: hidden; border-radius: 12px; cursor: none; }
.port-item.tall { grid-row: span 2; }
.port-item.wide { grid-column: span 2; }
.port-item img { 
  width: 115%; height: 100%; 
  object-fit: cover; 
  transform: translateX(-12%);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.3, 1); 
}
.port-item:hover img { 
  transform: translateX(0); 
}
.port-hover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; opacity: 0; transition: opacity 0.4s;
}
.port-item:hover .port-hover { opacity: 1; }
.port-cat { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.port-hover h4 { font-family:'Playfair Display',serif; font-size:1.2rem; margin-bottom:12px; transform:translateY(10px); transition:transform 0.4s; }
.port-item:hover .port-hover h4 { transform: translateY(0); }
.port-zoom {
  background: rgba(var(--primary-rgb), 0.9); color: #000; border: none; cursor: none;
  padding: 8px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  transform: translateY(10px); transition: transform 0.4s 0.05s, background 0.3s;
  width: max-content;
}
.port-item:hover .port-zoom { transform: translateY(0); }
.port-zoom:hover { background: var(--gold-light); }
/* Filter hidden */
.port-item.hidden { display: none; }
.port-item.show { animation: pop-in 0.4s ease both; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.95); }
.lb-box { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; text-align: center; animation: lb-in 0.4s cubic-bezier(0.16,1,0.3,1); }
@keyframes lb-in { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
#lb-img { max-width: 90vw; max-height: 80vh; border-radius: 12px; object-fit: contain; }
.lb-cap { color: var(--text-muted); margin-top: 16px; font-size: 1rem; }
.lb-close {
  position: absolute; top: -50px; right: 0;
  background: none; border: 2px solid rgba(255,255,255,0.3); color: #fff;
  width: 36px; height: 36px; border-radius: 50%; font-size: 0.9rem; cursor: none;
  transition: background 0.3s; display: flex; align-items: center; justify-content: center;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }
.lb-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  z-index: 100010;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 0;
}
.lb-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.5);
}
.lb-nav-btn.prev-btn { left: -70px; }
.lb-nav-btn.next-btn { right: -70px; }

@media (max-width: 768px) {
  .lb-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  .lb-nav-btn.prev-btn { left: 10px; }
  .lb-nav-btn.next-btn { right: 10px; }
}

/* ===== HOW IT WORKS ===== */
.hiw-section { background: var(--bg2); }
.steps-row { display: flex; align-items: flex-start; justify-content: center; gap: 8px; flex-wrap: wrap; }
.step-card {
  flex: 1; min-width: 180px; max-width: 240px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
}
.step-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.step-num { font-family:'Playfair Display',serif; font-size:2.5rem; color:rgba(var(--primary-rgb),0.2); font-weight:700; line-height:1; margin-bottom:12px; }
.step-ico { font-size: 2rem; margin-bottom: 16px; }
.step-card h3 { font-size: 1rem; margin-bottom: 10px; font-weight: 600; }
.step-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.step-arrow { color: rgba(var(--primary-rgb),0.4); font-size: 1.5rem; padding-top: 60px; flex-shrink: 0; }

/* ===== ABOUT ===== */
.about-section { background: var(--bg3); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-vis { position: relative; }
.about-img-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.about-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 20px; }
.about-deco {
  position: absolute; inset: -16px; border: 2px solid rgba(var(--primary-rgb),0.3);
  border-radius: 24px; z-index: -1;
}
.about-float-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.about-float-badge span { font-size: 1.8rem; }
.about-float-badge strong { display: block; font-size: 0.85rem; }
.about-float-badge small { color: var(--text-muted); font-size: 0.75rem; }
.about-text .sec-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 12px 0 20px; }
.about-text p { color: var(--text-muted); line-height: 1.7; }
.skill-bars { margin: 28px 0 36px; }
.skill-row { margin-bottom: 20px; }
.skill-row > span { font-size: 0.85rem; }
.skill-row { display: grid; grid-template-columns: 1fr auto; gap: 4px; align-items: center; }
.skill-row > span:last-of-type { color: var(--gold); font-weight: 600; }
.s-bar { grid-column: 1/-1; height: 4px; background: var(--surface2); border-radius: 2px; overflow: hidden; }
.s-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 2px; transition: width 1.5s cubic-bezier(0.16,1,0.3,1); }

/* ===== TESTIMONIALS ===== */
.test-section { background: var(--bg2); }
.test-slider { overflow: hidden; position: relative; }
.test-track { display: flex; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.test-card {
  flex: 0 0 100%; padding: 0 40px;
  text-align: center;
}
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 24px; letter-spacing: 4px; }
.test-card > p {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text);
  line-height: 1.8; max-width: 680px; margin: 0 auto 32px;
}
.test-auth { display: flex; align-items: center; justify-content: center; gap: 16px; }
.test-av {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #000; font-size: 1.1rem;
}
.test-auth strong { display: block; font-size: 0.95rem; }
.test-auth small { color: var(--text-muted); font-size: 0.8rem; }
.test-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.t-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-size: 1.1rem; cursor: none;
  transition: background 0.3s, border-color 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.t-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--surface2); cursor: none; transition: all 0.3s;
}
.t-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info .sec-title { font-size: clamp(1.6rem,3vw,2.4rem); margin: 12px 0 20px; }
.contact-info > p { color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.cinfo-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.ci-item { display: flex; align-items: center; gap: 16px; }
.ci-icon { font-size: 1.4rem; width: 48px; height: 48px; background: var(--surface); border-radius: 12px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); }
.ci-item strong { display: block; font-size: 0.85rem; margin-bottom: 4px; }
.ci-item span { color: var(--text-muted); font-size: 0.9rem; }
.social-row { display: flex; gap: 12px; }
.soc-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.soc-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); transform: translateY(-4px); }

/* Booking Form */
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.bk-form h3 { font-family:'Playfair Display',serif; font-size: 1.5rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.fg label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; color: var(--text-muted); text-transform: uppercase; }
.fg input, .fg select, .fg textarea {
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--text); border-radius: 10px; padding: 12px 16px;
  font-size: 0.9rem; font-family: 'Inter', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: rgba(var(--primary-rgb), 0.6);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(155,153,176,0.6); }
.fg select option { background: var(--bg2); }
.fg textarea { resize: vertical; }
.submit-btn { width: 100%; margin-top: 8px; justify-content: center; font-size: 1rem; padding: 16px; }
.form-ok {
  display: none; text-align: center; padding: 24px;
  background: rgba(var(--primary-rgb), 0.1); border: 1px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 12px; margin-top: 16px;
}
.form-ok span { font-size: 2rem; }
.form-ok strong { display: block; font-size: 1.1rem; margin: 8px 0; }
.form-ok p { color: var(--text-muted); font-size: 0.9rem; }
.form-ok.visible { display: block; animation: pop-in 0.5s ease; }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .nav-logo { font-size: 1.4rem; margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; color: var(--gold); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.f-soc { display: flex; gap: 24px; }
.f-soc a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.f-soc a:hover { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed; bottom: 36px; right: 36px; z-index: 500;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none; color: #000; font-size: 1.5rem; cursor: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4);
  transform: translateY(80px) scale(0);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.back-top.visible { transform: translateY(0) scale(1); }
.back-top:hover { transform: translateY(-4px) scale(1.1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .navbar { padding: 20px 30px; }
  .navbar.scrolled { padding: 14px 30px; }
  .nav-links { gap: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
}
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-float-badge { right: 16px; bottom: 16px; }
  .port-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 220px; }
  .port-item.wide { grid-column: span 1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 24px; }
  .hero-scroll-btn-wrapper { display: none; }
  .hero-stats { gap: 20px; }
  .snum { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding-top: 0; }
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .port-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .port-item.tall { grid-row: span 1; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== COLOR THEMES ===== */
body.theme-gold {
  --primary: #C9A84C;
  --primary-light: #E8C96B;
  --primary-dark: #9E7B2E;
  --primary-rgb: 201, 168, 76;
  --gold: var(--primary);
  --gold-light: var(--primary-light);
  --gold-dark: var(--primary-dark);
}
body.theme-cyberpunk {
  --primary: #d946ef;
  --primary-light: #f472b6;
  --primary-dark: #a21caf;
  --primary-rgb: 217, 70, 239;
  --gold: var(--primary);
  --gold-light: var(--primary-light);
  --gold-dark: var(--primary-dark);
}
body.theme-emerald {
  --primary: #10b981;
  --primary-light: #34d399;
  --primary-dark: #047857;
  --primary-rgb: 16, 185, 129;
  --gold: var(--primary);
  --gold-light: var(--primary-light);
  --gold-dark: var(--primary-dark);
}
body.theme-sapphire {
  --primary: #3b82f6;
  --primary-light: #60a5fa;
  --primary-dark: #1d4ed8;
  --primary-rgb: 59, 130, 246;
  --gold: var(--primary);
  --gold-light: var(--primary-light);
  --gold-dark: var(--primary-dark);
}
body.theme-coral {
  --primary: #f43f5e;
  --primary-light: #fb7185;
  --primary-dark: #be123c;
  --primary-rgb: 244, 63, 94;
  --gold: var(--primary);
  --gold-light: var(--primary-light);
  --gold-dark: var(--primary-dark);
}

/* ===== FLOATING THEME SWITCHER ===== */
.theme-switcher-btn {
  position: fixed; bottom: 36px; left: 36px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3); cursor: none; font-size: 1.25rem;
  transition: transform 0.3s, border-color 0.3s, background-color 0.3s;
}
.theme-switcher-btn:hover { transform: scale(1.08) rotate(45deg); border-color: var(--gold); background: rgba(var(--primary-rgb), 0.1); }
.theme-panel {
  position: fixed; bottom: 96px; left: 36px; z-index: 999;
  background: rgba(26,26,40,0.95); border: 1px solid var(--border);
  border-radius: 14px; padding: 12px; display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow); backdrop-filter: blur(10px);
  transform: scale(0.8) translateY(20px); opacity: 0; pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
  transform-origin: bottom left;
  min-width: 170px;
}
.theme-panel.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
.theme-opt {
  display: flex; align-items: center; gap: 10px;
  background: transparent; border: none; outline: none;
  padding: 8px 16px; border-radius: 8px; color: var(--text-muted);
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 500;
  cursor: none; width: 100%; text-align: left; transition: all 0.2s;
}
.theme-opt:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.theme-opt.active { color: var(--gold); font-weight: 600; background: rgba(var(--primary-rgb), 0.12); }
.theme-dot-indicator {
  width: 10px; height: 10px; border-radius: 50%; display: inline-block;
  background: currentColor; box-shadow: 0 0 8px currentColor;
}

/* ===== CINEMA SLIDER SLIDESHOW ===== */
.slideshow-section { background: var(--bg2); position: relative; padding: 80px 0; }
.cinema-slider {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 520px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
}
.cinema-track {
  width: 100%;
  height: 100%;
  position: relative;
}
.cinema-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%); /* Slides come from the right side */
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease, visibility 0.8s ease;
  z-index: 1;
}
.cinema-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0); /* Center state */
  z-index: 2;
}
.cinema-slide.prev-slide {
  transform: translateX(-100%); /* Exiting slide goes to the left side */
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.cinema-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  display: block;
}
.cinema-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  color: #fff;
  z-index: 3;
  text-align: left;
}
.cinema-cat {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}
.cinema-caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
}
.cinema-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.cinema-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4);
}
.prev-btn { left: 24px; }
.next-btn { right: 24px; }

/* Progress bar */
.cinema-progress-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}
.cinema-progress-bar {
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 4s linear; /* Matches auto-slide duration */
}

/* Dots */
.cinema-dots {
  position: absolute;
  bottom: 24px;
  right: 40px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.cinema-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.cinema-dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--gold);
}

@media (max-width: 768px) {
  .cinema-slider { height: 380px; }
  .cinema-caption h3 { font-size: 1.5rem; }
  .cinema-caption { padding: 24px; }
  .cinema-btn { width: 40px; height: 40px; font-size: 1rem; }
  .cinema-dots { right: 24px; bottom: 16px; }
}

/* ======= HOME CAROUSEL SLIDER ======= */
.home-carousel-section {
  padding: 80px 0 40px 0;
  background: var(--bg);
  overflow: hidden;
}
.home-carousel-header {
  text-align: center;
  margin-bottom: 40px;
}
.home-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.home-carousel-wrapper {
  overflow: hidden;
  border-radius: 16px;
}
.home-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 20px;
}
.home-carousel-slide {
  flex: 0 0 calc(33.333% - 13.33px);
  position: relative;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.home-carousel-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(201, 168, 76, 0.25);
}
.home-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.home-carousel-slide:hover img {
  transform: scale(1.05);
}
.home-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--text);
  text-align: left;
}
.home-carousel-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 700;
}
.home-carousel-overlay p {
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.4;
}
.home-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.home-carousel-btn:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}
.home-carousel-btn.prev-btn { left: -10px; }
.home-carousel-btn.next-btn { right: -10px; }
.home-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.home-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.home-carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--gold);
}

@media (max-width: 992px) {
  .home-carousel-slide {
    flex: 0 0 calc(50% - 10px);
    height: 380px;
  }
  .home-carousel-btn.prev-btn { left: 0px; }
  .home-carousel-btn.next-btn { right: 0px; }
  .home-carousel-container { padding: 0 30px; }
}
@media (max-width: 576px) {
  .home-carousel-slide {
    flex: 0 0 100%;
    height: 340px;
  }
}

/* ===== MINIMALIST KOLAM DESIGNS ===== */
.kolam-watermark {
  position: absolute;
  width: 320px;
  height: 320px;
  opacity: 0.05; /* Subtlest luxury watermark */
  pointer-events: none;
  z-index: 1;
}
.kolam-watermark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
}

/* Position Watermarks in Hero */
.hero-kolam-left {
  top: 5%;
  left: -120px;
  animation: spin-slow 60s linear infinite;
}
.hero-kolam-right {
  bottom: 5%;
  right: -120px;
  animation: spin-slow-reverse 65s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spin-slow-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Kolam Section Divider */
.kolam-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 70px auto;
  max-width: 800px;
  opacity: 0.25;
}
.kolam-divider .k-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}
.kolam-divider .k-icon {
  width: 36px;
  height: 36px;
}
.kolam-divider .k-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
}

@media (max-width: 768px) {
  .kolam-watermark {
    width: 200px;
    height: 200px;
  }
  .hero-kolam-left { left: -80px; }
  .hero-kolam-right { right: -80px; }
  .kolam-divider { margin: 40px auto; gap: 16px; }
  .kolam-divider .k-icon { width: 28px; height: 28px; }
}

/* ===== REVIEW MODAL SYSTEM ===== */
.review-modal-box {
  width: 90vw;
  max-width: 500px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  text-align: left;
}
.review-modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.review-modal-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.rating-stars {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 44px;
}
.star-btn {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.star-btn:hover {
  transform: scale(1.15);
}
.star-btn.active {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}
@media (max-width: 576px) {
  .review-modal-box {
    padding: 30px 20px;
  }
}

/* Custom Cursor support inside inputs and select elements */
.fg input, .fg select, .fg textarea, .rating-stars, .star-btn, .review-modal-box, .lightbox {
  cursor: none !important;
}

/* ===== REVIEWS PAGE SPECIALS ===== */
.reviews-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, rgba(10,10,15,0.98) 0%, rgba(20,20,25,0.95) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}
.reviews-grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.review-card-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.15);
  border-color: rgba(var(--primary-rgb), 0.4);
}
.review-card-item .stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.review-card-item p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}
.review-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.3);
}
.review-card-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}
.review-card-info small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .reviews-hero { padding: 120px 0 60px; }
  .reviews-container { padding: 40px 20px; }
  .reviews-grid-view { grid-template-columns: 1fr; gap: 20px; }
}


