/**
 * Main Stylesheet
 * Contains all styles for the website including layout, components, and utilities
 */

/* CSS Variables for consistent theming */
:root {
  /* Light theme colors */
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --card: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --muted: #475569;
  
  /* Gold color palette */
  --gold: #D4AF37;      /* Proper Gold */
  --gold-light: #F4E4C1; /* Light Gold/Cream */
  --gold-dark: #B8941F;  /* Dark Gold */
  --gold-accent: #FFD700; /* Bright Gold for accents */
  
  /* Borders and shadows */
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Header/Footer dark theme */
  --nav-bg: #1a1a1a;
  --nav-text: #f1f5f9;
  --nav-text-muted: #94a3b8;
  --nav-border: #2d2d2d;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.container {
  width: min(1200px, 95%);
  margin-inline: auto;
  padding-inline: 1rem;
}

.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 6s ease-in-out infinite;
}

.center { text-align: center; }
.mt-32 { margin-top: 2rem; }

/* Animations */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  width: 0%;
  z-index: 9999;
  transition: width 0.3s ease;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--nav-bg);
  box-shadow: var(--shadow-lg);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.05);
}

/* Adjust logo position for mobile */
@media (max-width: 720px) {
  .brand {
    margin-left: 0.5rem;
  }
}

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.brand-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-text {
  font-size: 1rem;
  font-weight: 600;
}

.extra-text {
  font-size: 0.85rem;
  color: var(--bg-alt);
  font-style: italic;
}




.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  transition: transform 0.3s ease;
}

.hamburger:hover {
  transform: scale(1.1);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nav-text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  color: var(--nav-text);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
  background: rgba(245, 158, 11, 0.1);
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* Add animation to brand text */
.brand-text {
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  filter: brightness(0.7) contrast(1.1);
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 3;
  max-width: 800px;
  padding: 2rem;
  margin-top: 60px;
  backdrop-filter: blur(1px);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 30%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0 0 2rem;
  color: #ffffff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--gold), var(--gold-accent));
}

.btn.outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.btn.outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* Hero Navigation */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(245, 158, 11, 0.6);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-nav i {
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.hero-nav:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--gold-light);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(245, 158, 11, 0.4);
}

.hero-nav:hover i {
  color: var(--gold-light);
  transform: scale(1.1);
  text-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
}

.hero-nav:active {
  transform: translateY(-50%) scale(1.05);
}

.hero-nav.prev { 
  left: 2rem; 
}

.hero-nav.next { 
  right: 2rem; 
}

.hero-nav {
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% {
    box-shadow: 
      0 4px 20px rgba(0, 0, 0, 0.2),
      0 0 0 rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 
      0 4px 20px rgba(0, 0, 0, 0.2),
      0 0 20px rgba(245, 158, 11, 0.2);
  }
}

.hero-nav.prev:hover {
  animation: slideLeft 0.6s ease-in-out infinite alternate;
}

.hero-nav.next:hover {
  animation: slideRight 0.6s ease-in-out infinite alternate;
}

@keyframes slideLeft {
  from { transform: translateY(-50%) scale(1.15) translateX(0); }
  to { transform: translateY(-50%) scale(1.15) translateX(-2px); }
}

@keyframes slideRight {
  from { transform: translateY(-50%) scale(1.15) translateX(0); }
  to { transform: translateY(-50%) scale(1.15) translateX(2px); }
}

.hero-indicators {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.indicator::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--gold), var(--gold-light));
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.indicator:hover {
  border-color: var(--gold);
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.indicator:hover::before {
  width: 6px;
  height: 6px;
}

.indicator.active {
  border-color: var(--gold);
  background: rgba(245, 158, 11, 0.1);
  transform: scale(1.3);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.6);
}

.indicator.active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.indicator.active::before {
  width: 8px;
  height: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.indicator.active {
  animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
  0%, 100% {
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.6);
  }
  50% {
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.8), 0 0 50px rgba(245, 158, 11, 0.3);
  }
}

.hero-indicators {
  animation: slideUpFade 0.8s ease-out 0.5s both;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* About Section */
.about-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg), var(--bg-alt));
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.about-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  height: 400px; /* Fixed height to allow cropping */
  object-fit: cover; /* Ensures image fills container */
  object-position: center top; /* Adjust to face area (e.g., top/center/bottom) */
  
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  border: 3px solid var(--gold);
  background: var(--gold);
  background-clip: padding-box;
}


.about-image img:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.25);
  border-color: var(--gold-accent);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-accent));
  border-radius: 2px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.services-cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}

.card:hover::before {
  left: 100%;
}

.card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Testimonial */
.testimonial {
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding: 2rem;
}

.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-style: italic;
  margin: 0 0 1.5rem;
  color: var(--text);
  position: relative;
}

.testimonial blockquote::before,
.testimonial blockquote::after {
  content: '"';
  font-size: 3rem;
  color: var(--gold);
  position: absolute;
  top: -1rem;
}

.testimonial blockquote::before { left: -2rem; }
.testimonial blockquote::after { right: -2rem; }

.t-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  object-fit: cover;
  border: 3px solid var(--gold);
  overflow: hidden;
}

/* CTA Section */
.cta-box {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.9));
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  opacity: 0.05;
  animation: pulse 4s ease-in-out infinite;
}

.cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.03), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
  border-color: var(--gold-accent);
}

.cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 1.5rem;
  position: relative;
  color: var(--gold-accent);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.cta-box p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: #f1f5f9;
  position: relative;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-box .btn {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold-accent));
  color: #1a1a1a;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  border: none;
}

.cta-box .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, var(--gold-accent), #FFD700);
  color: #1a1a1a;
}

.cta-box .btn:active {
  transform: translateY(-1px);
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  min-height: 40vh;
}

.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 19, 19, 0.6);
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 0.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

/* Forms */
.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 2rem;
}

.form-card {
  padding: 2rem;
}

.form-card h2 {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-card label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  margin: 1rem 0 0.25rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 2px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-card .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card .contact-list li {
  margin: 1rem 0;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.info-card .contact-list i {
  color: var(--gold);
  margin-top: 0.25rem;
}

.rounded {
  border-radius: 16px;
  overflow: hidden;
}

/* Footer */
.footer {
  margin-top: 3rem;
  background: var(--nav-bg);
  color: var(--nav-text-muted);
  border-top: 1px solid var(--nav-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
  align-items: start;
}

.footer h4 {
  color: var(--nav-text);
  margin: 0 0 1rem;
  font-weight: 600;
  text-align: left;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(1.2);
  display: block;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.footer-links li {
  margin: 0.75rem 0;
}

.footer-links a {
  color: var(--nav-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--nav-text);
}

.social {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
  margin-top: 1rem;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--nav-border);
  border-radius: 10px;
  color: var(--nav-text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social a:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  transform: translateY(-2px);
}

.social a[href*="wa.me"]:hover {
  background: #25d366;
  border-color: #25d366;
}

.social a[aria-label="Facebook"]:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social a[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #bc1888;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--nav-border);
  padding: 1.5rem;
  color: var(--nav-text-muted);
  font-size: 0.9rem;
}

/* Animations & Reveals */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* FAQ Styles */
.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.faq-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-intro h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-intro p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-item {
  background: linear-gradient(135deg, var(--card), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-dark), var(--gold), var(--gold-accent));
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.faq-item:hover::before {
  transform: scaleY(1);
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.faq-item.active::before {
  transform: scaleY(1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.75rem 2rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-q::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active .faq-q::after {
  opacity: 1;
}

.faq-q:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(212, 175, 55, 0.01));
}

.faq-item.active .faq-q {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
}

.faq-q .question-text {
  flex: 1;
  padding-right: 1rem;
  line-height: 1.4;
}

.faq-q .faq-icon {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}

.faq-q:hover .faq-icon {
  background: var(--gold);
  color: white;
  transform: scale(1.1);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 2rem 0;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.01), transparent);
}

.faq-item.open .faq-a {
  padding: 2rem;
  max-height: 500px;
}

.faq-a p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

.faq-a ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.faq-a ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  line-height: 1.5;
}

.faq-a ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.faq-a strong {
  color: var(--gold-dark);
  font-weight: 600;
}

/* About Page Styles */
.about.section {
  padding: 5rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.attorney-image {
  width: 100%;
  max-width: 400px;
  border-radius: 50% !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.attorney-image:hover {
  transform: scale(1.02);
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  margin: 0 0 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.mission-vision {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.mission-vision h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mission-vision h4 i {
  color: var(--gold);
}

.mission-vision p {
  margin-bottom: 2rem;
}

/* Services Page Styles */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-item {
  background: linear-gradient(135deg, var(--card), var(--bg-alt));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--border);
  position: relative;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item.active {
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
  background: linear-gradient(135deg, var(--bg-alt), rgba(212, 175, 55, 0.02));
  transition: all 0.3s ease;
  position: relative;
}

.service-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.service-header:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
}

.service-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--text);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 700;
}

.service-header h3 i {
  color: var(--gold);
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
  background: rgba(212, 175, 55, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-header:hover h3 i {
  background: var(--gold);
  color: white;
  transform: scale(1.1);
}

.service-header i.fa-chevron-down {
  color: var(--gold);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 1.2rem;
  background: rgba(212, 175, 55, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-header:hover i.fa-chevron-down {
  background: var(--gold);
  color: white;
}

.service-header.active i.fa-chevron-down {
  transform: rotate(180deg);
  background: var(--gold);
  color: white;
}

.service-content {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.01), transparent);
}

.service-content.active {
  padding: 2.5rem 2rem;
  max-height: 2000px;
}

.service-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.service-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-content ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.6;
  transition: all 0.3s ease;
}

.service-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.1rem;
  background: rgba(212, 175, 55, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.service-content ul li:hover {
  transform: translateX(5px);
  color: var(--gold-dark);
}

/* Forms Section Styles */
.forms-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-alt), rgba(212, 175, 55, 0.02));
}

.forms-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.form-section {
  background: var(--card);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s forwards;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-accent));
  animation: shimmer 3s ease-in-out infinite;
}

.form-section:first-child {
  animation-delay: 0.3s;
}

.form-section:last-child {
  animation-delay: 0.5s;
}

.form-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
}

.form-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.form-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-accent));
  border-radius: 2px;
}

.form-section h2 i {
  color: var(--gold);
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.form-section p {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.calendly-wrapper {
  margin-top: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  min-height: 600px;
  background: #f8fafc;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
  background: var(--bg-alt);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  font-style: italic;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.submit-btn {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--gold), var(--gold-accent));
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn.outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: none;
}

.submit-btn.outline:hover {
  background: var(--gold);
  color: white;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Form message styling */
.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
  animation: slideDown 0.3s ease-out;
}

.form-message.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-message.error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Circular Images */
.avatar,
.attorney-image,
.about-photo {
  border-radius: 50% !important;
  aspect-ratio: 1/1;
  object-fit: cover;
  overflow: hidden;
}

/* Fixed WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

.whatsapp-float i {
  color: white;
  line-height: 60px;
}

.whatsapp-text {
  display: none;
  position: absolute;
  right: 70px;
  background-color: #128C7E;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.whatsapp-float:hover .whatsapp-text {
  display: block;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Animations */
@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg), var(--bg-alt));
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-section p {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  max-width: 800px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin: 0;
  transition: all 0.3s ease;
  text-align: left;
  color: var(--text);
  font-size: 1rem;
}

.contact-info p:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.contact-info i {
  color: var(--gold);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-accent));
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  background: var(--bg);
  color: var(--text);
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
  background: var(--bg-alt);
}

.contact-form button {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  width: 100%;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--gold), var(--gold-accent));
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg-alt), var(--bg));
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.faq-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
  color: var(--gold-dark);
}

.faq-answer {
  display: none;
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.01), transparent);
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideDown 0.3s ease;
}

/* Circular image with gold border */
.about-photo-circular {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
}

.about-photo-circular:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
  border-color: var(--gold-light);
}

/* Footer Responsive Improvements */
@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
  }
  
  .footer h4 {
    text-align: center;
    margin-bottom: 1.25rem;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .social {
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  /* Center the first column (about section) */
  .footer-grid > div:first-child {
    text-align: center;
  }
  
  .footer-grid > div:first-child .footer-logo {
    margin: 0 auto 1rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    text-align: center;
  }
  
  .footer h4 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  .footer-links {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-links li {
    margin: 0.5rem 0;
  }
  
  .footer-links a {
    justify-content: center;
    padding: 0.5rem 0;
  }
  
  .footer-logo {
    margin: 0 auto 1rem;
    display: block;
  }
  
  .social {
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .social a {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  /* Ensure all footer sections are centered */
  .footer-grid > div {
    text-align: center;
  }
  
  /* Add some spacing between sections */
  .footer-grid > div:not(:last-child) {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--nav-border);
  }
  
  .footer-bottom {
    padding: 1.25rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    gap: 1.5rem;
    padding: 2rem 0;
  }
  
  .footer h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-links {
    margin-bottom: 1rem;
  }
  
  .footer-links li {
    margin: 0.35rem 0;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .social {
    gap: 0.75rem;
    margin-top: 1rem;
  }
  
  .social a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .footer-bottom {
    padding: 1rem;
    font-size: 0.8rem;
  }
  
  /* Reduce spacing between sections */
  .footer-grid > div:not(:last-child) {
    padding-bottom: 1rem;
  }
}

/* Footer section dividers for mobile */
.footer-section-divider {
  display: none;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* Mobile footer enhancements */
@media (max-width: 768px) {
  .footer-section-divider {
    display: block;
  }
  
  /* Add subtle animation to social icons on mobile */
  .social a {
    transition: all 0.3s ease;
  }
  
  .social a:hover {
    transform: translateY(-3px) scale(1.1);
  }
}

/* Extra small mobile adjustments */
@media (max-width: 480px) {
  .footer-section-divider {
    width: 40px;
    margin: 1rem auto;
  }
}

/* Contact page layout improvements */
.contact-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.contact-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/1600x600/?meeting,office');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.contact-hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.2s forwards;
}

.contact-content {
  flex: 1;
  padding: 4rem 0;
}

.forms-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.form-section {
  background: var(--card);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s forwards;
}

.form-section:first-child {
  animation-delay: 0.3s;
}

.form-section:last-child {
  animation-delay: 0.5s;
}

.form-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-section h2 i {
  color: var(--gold);
  font-size: 1.8rem;
}

.form-section p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.calendly-wrapper {
  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.submit-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn.outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.submit-btn.outline:hover {
  background: var(--gold);
  color: white;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility Improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible for better keyboard navigation */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --gold: #B8860B;
    --gold-light: #DAA520;
    --gold-dark: #8B6914;
  }
  
  .btn,
  .cta-box,
  .service-item,
  .faq-item {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus indicators for interactive elements */
.btn:focus,
.nav-link:focus,
.faq-q:focus,
.submit-btn:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Screen reader only content */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 1.8rem;
  color: white;
}

.card:hover .service-icon {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.3);
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}
/* About Section Animations */
.about-image {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-text {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image.animate-in {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.about-text.animate-in {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}
/* Hero Text Slide Animation */
.hero-content h1 {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-content p {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-content .hero-ctas {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active .hero-content h1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.hero-slide.active .hero-content p {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.hero-slide.active .hero-content .hero-ctas {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

/* Contact Page Hero Section */
.contact-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.7) contrast(1.1);
  z-index: 1;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 2;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
  z-index: 3;
  pointer-events: none;
}

.contact-hero .container {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.contact-hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0;
  color: #ffffff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .contact-hero {
    min-height: 30vh;
  }
  
  .contact-hero .container {
    padding: 1.5rem;
  }
  
  .contact-hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    line-height: 1.2;
  }
  
  .contact-hero p {
    font-size: 0.95rem;
  }
}
/* Hero Slide Adjustments for Portrait Images */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  filter: brightness(0.7) contrast(1.1);
}

/* Specific class for portrait images */
.hero-slide.portrait-img {
  background-position: center 60%; /* Adjust this value until the face is properly positioned */
  background-size: cover;
}



@media (min-width: 768px) {
  .hero-slide.portrait-img {
    background-position: center 25%;
  }
}

@media (max-width: 767px) {
  .hero-slide.portrait-img {
    background-position: center 20%;
  }
}