/*@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');*/

:root {
  --gold: #C7A24F;
  --gold-light: #D9B76A;
  --gold-dark: #9D7D3A;
  --gold-accent: #E8C875;
  --gold-pale: #F5EDD6;
  
  --navy: #0F1419;
  --navy-light: #1A2332;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --cream: #FBF9F4;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-600: #4B5563;
  --gray-900: #111827;
  

  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
  
  --shadow-gold-sm: 0 4px 12px rgba(199, 162, 79, 0.2);
  --shadow-gold-md: 0 8px 24px rgba(199, 162, 79, 0.3);
  --shadow-gold-lg: 0 16px 48px rgba(199, 162, 79, 0.4);
  --shadow-gold-xl: 0 24px 64px rgba(199, 162, 79, 0.5);
  

  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--gray-900);
  overflow-x: hidden;
  line-height: 1.7;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(199, 162, 79, 0.2); }
  50% { box-shadow: 0 0 40px rgba(199, 162, 79, 0.4); }
}

.animate-in {
  animation: fadeInUp 0.8s ease-out forwards;
}



.hf-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(199, 162, 79, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  z-index: 1000;
}
.navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--navy);
  letter-spacing: 1px;
}
.brand-text {
  position: relative;
}
.brand-dot {
  color: var(--gold);
  font-size: 2rem;
  margin-left: 4px;
  animation: pulse 2s infinite;
}
.hf-navbar .nav-link {
  color: var(--gray-900) !important;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition-smooth);
}
.hf-navbar .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.hf-navbar .nav-link:hover::before {
  width: 70%;
}
.hf-navbar .nav-link:hover {
  color: var(--gold) !important;
}
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.dropdown-item {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: var(--transition-smooth);
}
.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(199, 162, 79, 0.1), rgba(199, 162, 79, 0.05));
  color: var(--gold);
}




.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--off-white) 100%);
}
.hero-bg-layers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-layer-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(199, 162, 79, 0.08) 0%, transparent 50%);
  animation: gradientShift 15s ease infinite;
}
.hero-bg-layer-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(217, 183, 106, 0.06) 0%, transparent 60%);
}
.hero-bg-layer-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(199, 162, 79, 0.02) 50%, transparent 100%),
    linear-gradient(0deg, var(--off-white) 0%, transparent 20%);
}
.hero-content {
  position: relative;
  z-index: 2;
}



.luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(199, 162, 79, 0.08), rgba(199, 162, 79, 0.03));
  border: 1.5px solid rgba(199, 162, 79, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out;
}
.luxury-badge i {
  color: var(--gold);
  font-size: 0.875rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}
.hero-description {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--gray-600);
  margin-bottom: 45px;
  max-width: 90%;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}
.hero-features {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 35px 0;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}



.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-gold-md);
}
.feature-text {
  display: flex;
  flex-direction: column;
}
.feature-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.feature-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.feature-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(199, 162, 79, 0.3), transparent);
}
.hero-visual {
  position: relative;
  animation: fadeInScale 1s ease-out 0.4s backwards;
}
.visual-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}



.frame-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 3px solid var(--gold);
  z-index: 2;
}
.frame-tl {
  top: -3px;
  left: -3px;
  border-right: none;
  border-bottom: none;
  border-radius: 24px 0 0 0;
}
.frame-tr {
  top: -3px;
  right: -3px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 24px 0 0;
}
.frame-bl {
  bottom: -3px;
  left: -3px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 24px;
}
.frame-br {
  bottom: -3px;
  right: -3px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 24px 0;
}



.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.visual-frame:hover .hero-image {
  transform: scale(1.05);
}
.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(199, 162, 79, 0.15), rgba(217, 183, 106, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.visual-frame:hover .visual-overlay {
  opacity: 1;
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-gold-md);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float 6s ease-in-out infinite;
}



.badge-1 {
  top: 30px;
  left: -30px;
  animation-delay: 0s;
}
.badge-2 {
  bottom: 40px;
  right: -30px;
  animation-delay: 3s;
}
.badge-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  color: white;
  font-size: 1.5rem;
}
.badge-content {
  display: flex;
  flex-direction: column;
}
.badge-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.badge-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}



.scroll-prompt {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  cursor: pointer;
  animation: fadeInUp 1s ease-out 1s backwards;
}
.scroll-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: pulse 2s infinite;
}



.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5; /* Optional background */
}

.video-card {
    position: relative;
    width: 360px;
    height: 640px;
    max-width: 90%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



section {
  position: relative;
  padding: 120px 0;
}
.section-intro {
  margin-bottom: 70px;
}
.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label.light {
  color: var(--gold-light);
}
.section-heading {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 25px;
}
.heading-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}
.ornament-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament-icon {
  color: var(--gold);
  font-size: 0.75rem;
}
.heading-ornament.light .ornament-line {
  background: linear-gradient(90deg, transparent, white, transparent);
}
.heading-ornament.light .ornament-icon {
  color: white;
}
.section-subheading {
  font-size: 1.2rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 700px;
  margin: 30px auto 0;
}



.story-section {
  background: white;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}
.story-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.story-image-frame:hover .story-image {
  transform: scale(1.08);
}
.image-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(199, 162, 79, 0.15), rgba(217, 183, 106, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.story-image-frame:hover .image-overlay-gradient {
  opacity: 1;
}
.story-content {
  padding: 40px;
  background: linear-gradient(135deg, rgba(250, 250, 250, 0.8), rgba(255, 255, 255, 0.9));
  border-radius: 20px;
  border: 1px solid rgba(199, 162, 79, 0.1);
}
.story-intro,
.story-text{
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--gray-600);
  margin-bottom: 25px;
}
.story-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 35px;
}
.story-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(199, 162, 79, 0.1);
  transition: var(--transition-smooth);
}
.story-stat:hover {
  transform: translateX(10px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold-sm);
}
.stat-icon {
  font-size: 2rem;
  color: var(--gold);
}
.stat-info {
  display: flex;
  flex-direction: column;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.stat-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
}



.mission-vision-section {
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
  overflow: hidden;
}
.mv-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(199, 162, 79, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(217, 183, 106, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.mv-card {
  position: relative;
  background: white;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  height: 100%;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.mv-card:hover::before {
  transform: scaleX(1);
}
.mv-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-gold-lg);
}
.mv-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}
.mv-icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(199, 162, 79, 0.1), rgba(217, 183, 106, 0.05));
  border-radius: 20px;
  transition: var(--transition-smooth);
}
.mv-card:hover .mv-icon-wrapper {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: scale(1.1) rotate(5deg);
}
.mv-icon-wrapper i {
  font-size: 2rem;
  color: var(--gold);
  transition: var(--transition-smooth);
}
.mv-card:hover .mv-icon-wrapper i {
  color: white;
}
.mv-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(199, 162, 79, 0.05);
  line-height: 1;
}
.mv-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.mv-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 25px;
}
.mv-description {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-600);
}
.mv-glow {
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(199, 162, 79, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.mv-card:hover .mv-glow {
  opacity: 1;
}




.values-section {
  background: white;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.value-card {
  padding: 45px 35px;
  background: linear-gradient(135deg, rgba(250, 250, 250, 0.8), rgba(255, 255, 255, 0.9));
  border-radius: 20px;
  border: 1px solid rgba(199, 162, 79, 0.08);
  text-align: center;
  transition: var(--transition-smooth);
  opacity: 0;
}
.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold-lg);
  background: white;
}
.value-icon-box {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(199, 162, 79, 0.1), rgba(217, 183, 106, 0.05));
  border-radius: 50%;
  transition: var(--transition-smooth);
}
.value-card:hover .value-icon-box {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: scale(1.15) rotate(10deg);
  animation: glow 2s infinite;
}
.value-icon-box i {
  font-size: 2.5rem;
  color: var(--gold);
  transition: var(--transition-smooth);
}
.value-card:hover .value-icon-box i {
  color: white;
}
.value-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 15px;
}
.value-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
}



.services-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  overflow: hidden;
}
.services-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(199, 162, 79, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(217, 183, 106, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.service-card {
  position: relative;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: var(--transition-smooth);
  opacity: 0;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-10px);
  border-color: rgba(199, 162, 79, 0.4);
}
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.service-icon {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition-smooth);
}
.service-card:hover .service-icon {
  color: var(--gold-light);
  transform: scale(1.15);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}
.service-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}
.service-line {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.5s ease;
}
.service-card:hover .service-line {
  width: 100%;
}



.why-section {
  background: linear-gradient(135deg, var(--cream) 0%, white 100%);
}
.why-list {
  margin-top: 40px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: white;
  border: 1px solid rgba(199, 162, 79, 0.08);
  border-radius: 16px;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
  opacity: 0;
}
.why-item:hover {
  transform: translateX(15px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold-md);
}
.why-icon-wrapper {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  transition: var(--transition-smooth);
}
.why-item:hover .why-icon-wrapper {
  transform: scale(1.15) rotate(8deg);
}
.why-icon-wrapper i {
  font-size: 1.75rem;
  color: white;
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
}



.stats-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.showcase-card {
  position: relative;
  padding: 40px 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 20px;
  box-shadow: var(--shadow-gold-md);
  text-align: center;
  transition: var(--transition-smooth);
  overflow: hidden;
}
.showcase-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-gold-xl);
}
.showcase-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  transition: var(--transition-smooth);
}
.showcase-card:hover .showcase-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
.showcase-icon i {
  font-size: 2rem;
  color: white;
}
.showcase-content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.showcase-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
}
.showcase-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.showcase-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.showcase-card:hover .showcase-glow {
  opacity: 1;
}



.cta-section {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  overflow: hidden;
}
.cta-bg-layers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.cta-layer-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(199, 162, 79, 0.15) 0%, transparent 50%);
}
.cta-layer-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 60%, rgba(217, 183, 106, 0.1) 0%, transparent 50%);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(199, 162, 79, 0.1);
  border: 1.5px solid rgba(199, 162, 79, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  margin-bottom: 30px;
}
.cta-badge i {
  color: var(--gold);
}
.cta-heading {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}
.gradient-text-light {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 50px;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary-cta,
.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.btn-primary-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  box-shadow: var(--shadow-gold-md);
}
.btn-primary-cta:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-xl);
  color: white;
  text-decoration: none;
}
.btn-secondary-cta {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-secondary-cta:hover {
  background: white;
  color: var(--navy);
  border-color: white;
  transform: translateY(-4px);
  text-decoration: none;
}



.hf-footer {
  color: #000;
  background: rgba(85, 87, 88, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E4E6EB;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.hf-footer a { 
  color: #000; 
  text-decoration: none; 
}
.hf-footer a:hover { 
  color: #D2AD67; 
}
.hf-heading {
  color: #D2AD67;
  letter-spacing: .02em;
  margin-bottom: .75rem;
}
.ft-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
#ft-container01, #ft-container02 {
  border-right: 1px solid rgba(251, 250, 246, 0.12);
}
#mailto01 {
  overflow-wrap: break-word;
}
.mb-2 h6 {
  font-weight: bold;
}
.col-md-4.mb-4 {
  margin: 0;
}
.hf-hours li {
  display: flex;
  justify-content: space-between;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hf-hours li:last-child { 
  border-bottom: 0; 
}
.hf-hours .day { 
  font-weight: 600; 
}
.hf-hours .time { 
  opacity: .8; 
}
.btn-gold {
  background: linear-gradient(135deg,#C7A24F,#E4CA7A);
  color: #fff;
  border: 0; 
  border-radius: 999px;
  padding: .7rem 1.4rem;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(199,162,79,.22);
  text-shadow: 0 1px 0 rgba(0,0,0,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.btn-gold:hover { 
  filter: brightness(1.05); 
  transform: translateY(-2px); 
}
.social-icon {
  margin-left: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.social-icon img {
  margin-right: 10px;
  border-radius: 50%;
}
.hf-social-link {
  display: inline-flex;
  align-items: center; 
  justify-content: center;
  transition: transform .15s ease, border-color .15s ease, background-color .15s ease, color .15s ease;
}
.hf-social-link:hover {
  transform: translateY(-2px);
  border-color: #D2AD67;
  color: #111;
}




@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .section-heading {
    font-size: 3rem;
  }
  .cta-heading {
    font-size: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-description {
    font-size: 1.1rem;
  }
  .hero-features {
    flex-wrap: wrap;
    gap: 25px;
  }
  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  .feature-number {
    font-size: 1.5rem;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .section-heading {
    font-size: 2.8rem;
  }
  .mv-card {
    padding: 40px 30px;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 60px 0;
  }
  
  .hero-section {
    min-height: auto;
    padding: 80px 0 50px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .luxury-badge {
    font-size: 0.65rem;
    padding: 8px 18px;
    margin-bottom: 20px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
    padding: 25px 0;
  }
  
  .feature-item {
    width: 100%;
    justify-content: flex-start;
  }
  
  .feature-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  
  .feature-number {
    font-size: 1.4rem;
  }
  
  .feature-label {
    font-size: 0.8rem;
  }
  
  .feature-divider {
    display: none;
  }
  
  .hero-visual {
    margin-top: 30px;
  }
  
  .floating-badge {
    position: static;
    margin: 15px auto;
    width: fit-content;
    animation: none;
  }
  
  .badge-1,
  .badge-2 {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
  
  .frame-corner {
    width: 50px;
    height: 50px;
  }
  
  .section-heading {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .section-label {
    font-size: 0.75rem;
    margin-bottom: 15px;
  }
  
  .section-intro {
    margin-bottom: 40px;
  }
  
  .section-subheading {
    font-size: 1.05rem;
    margin-top: 20px;
  }
  
  .ornament-line {
    width: 40px;
  }
  
  .story-content {
    padding: 25px 20px;
  }
  
  .story-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .story-text {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .story-stats {
    gap: 15px;
    margin-top: 25px;
  }
  
  .story-stat {
    padding: 15px;
  }
  
  .stat-icon {
    font-size: 1.5rem;
  }
  
  .stat-value {
    font-size: 1rem;
  }
  
  .stat-desc {
    font-size: 0.85rem;
  }
  
  .mv-card {
    padding: 30px 25px;
    margin-bottom: 20px;
  }
  
  .mv-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .mv-icon-wrapper i {
    font-size: 1.5rem;
  }
  
  .mv-number {
    font-size: 3.5rem;
  }
  
  .mv-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .mv-description {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .value-card {
    padding: 30px 25px;
  }
  
  .value-icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .value-icon-box i {
    font-size: 2rem;
  }
  
  .value-name {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .value-desc {
    font-size: 0.95rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .service-num {
    font-size: 2.5rem;
  }
  
  .service-icon {
    font-size: 2rem;
  }
  
  .service-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .service-desc {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .why-item {
    gap: 15px;
    padding: 20px 15px;
    margin-bottom: 15px;
  }
  
  .why-icon-wrapper {
    width: 44px;
    height: 44px;
  }
  
  .why-icon-wrapper i {
    font-size: 1.4rem;
  }
  
  .why-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  
  .why-text {
    font-size: 0.95rem;
  }
  
  .stats-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .showcase-card {
    padding: 30px 25px;
  }
  
  .showcase-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .showcase-icon i {
    font-size: 1.75rem;
  }
  
  .showcase-number {
    font-size: 3rem;
    margin-bottom: 8px;
  }
  
  .showcase-label {
    font-size: 0.95rem;
  }
  
  .cta-section {
    padding: 80px 0;
  }
  
  .cta-heading {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .cta-badge {
    font-size: 0.65rem;
    padding: 8px 18px;
    margin-bottom: 20px;
  }
  
  .cta-description {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  
  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 0.95rem;
  }
  
  .scroll-prompt {
    display: none;
  }

  .ft-container {
    font-size: .875em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
    
  #ft-container01, #ft-container02 {
    max-width: 490px;
    border-bottom: 1px solid rgba(251, 250, 246, 0.12);
    border-right: none;
    padding-bottom: 15px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .luxury-badge {
    font-size: 0.6rem;
    padding: 7px 15px;
    gap: 6px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-radius: 10px;
  }
  
  .feature-number {
    font-size: 1.25rem;
  }
  
  .feature-label {
    font-size: 0.75rem;
  }
  
  section {
    padding: 50px 0;
  }
  
  .section-heading {
    font-size: 1.75rem;
  }
  
  .section-subheading {
    font-size: 1rem;
  }
  
  .story-content {
    padding: 20px 15px;
  }
  
  .story-intro {
    font-size: 1.05rem;
  }
  
  .story-text {
    font-size: 0.95rem;
  }
  
  .mv-card {
    padding: 25px 20px;
  }
  
  .mv-icon-wrapper {
    width: 55px;
    height: 55px;
  }
  
  .mv-icon-wrapper i {
    font-size: 1.3rem;
  }
  
  .mv-number {
    font-size: 3rem;
  }
  
  .mv-title {
    font-size: 1.6rem;
  }
  
  .mv-description {
    font-size: 0.95rem;
  }
  
  .value-card {
    padding: 25px 20px;
  }
  
  .value-icon-box {
    width: 65px;
    height: 65px;
  }
  
  .value-icon-box i {
    font-size: 1.75rem;
  }
  
  .value-name {
    font-size: 1.2rem;
  }
  
  .value-desc {
    font-size: 0.9rem;
  }
  
  .service-card {
    padding: 25px 18px;
  }
  
  .service-num {
    font-size: 2.2rem;
  }
  
  .service-icon {
    font-size: 1.75rem;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
  
  .service-desc {
    font-size: 0.9rem;
  }
  
  .why-item {
    padding: 18px 12px;
  }
  
  .why-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .why-icon-wrapper i {
    font-size: 1.2rem;
  }
  
  .why-title {
    font-size: 1.1rem;
  }
  
  .why-text {
    font-size: 0.9rem;
  }
  
  .showcase-card {
    padding: 25px 20px;
  }
  
  .showcase-number {
    font-size: 2.5rem;
  }
  
  .showcase-label {
    font-size: 0.9rem;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-heading {
    font-size: 1.9rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .btn-primary-cta,
  .btn-secondary-cta {
    padding: 14px 25px;
    font-size: 0.9rem;
  }
  
  .floating-badge {
    padding: 15px 18px;
    gap: 12px;
  }
  
  .badge-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .badge-number {
    font-size: 1.3rem;
  }
  
  .badge-text {
    font-size: 0.8rem;
  }
  
  .frame-corner {
    width: 40px;
    height: 40px;
  }
}

/* Extra Small Devices */
@media (max-width: 374.98px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .section-heading {
    font-size: 1.6rem;
  }
  
  .cta-heading {
    font-size: 1.7rem;
  }
  
  .luxury-badge,
  .cta-badge {
    font-size: 0.55rem;
    padding: 6px 12px;
  }
  
  .feature-item {
    gap: 10px;
  }
  
  .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}