@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --color-white: #FFFFFF;
  --color-charcoal: #2B2B2B;
  --color-gold: #A98C49;
  --color-light-gray: #F7F7F7;
  --color-medium-gray: #6E6E6E;
  
  --font-heading: 'Merriweather', serif;
  --font-body: 'Open Sans', sans-serif;
  
  --header-height: 72px;
  --header-height-sticky: 60px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ============ HEADER ============ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-white);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header.scrolled {
  height: var(--header-height-sticky);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 50px;
  width: auto;
}

.header-nav {
  display: none;
}

.header-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--color-white);
  z-index: 1001;
  padding: 80px 24px 24px;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--color-charcoal);
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-charcoal);
  border-bottom: 1px solid var(--color-light-gray);
}

.mobile-nav-link:hover {
  color: var(--color-gold);
}

.mobile-cta {
  display: block;
  width: 100%;
  padding: 16px;
  margin-top: 24px;
  background: var(--color-gold);
  color: var(--color-white);
  text-align: center;
  font-weight: 600;
  border-radius: 4px;
}

/* Tablet and Desktop Nav */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  
  .header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .header-nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-charcoal);
    position: relative;
    padding: 4px 0;
  }
  
  .header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
  }
  
  .header-nav-link:hover::after {
    width: 100%;
  }
  
  .header-nav-link:hover {
    color: var(--color-gold);
  }
  
  .header-cta {
    display: block;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 0 48px;
  }
  
  .header-logo img {
    height: 60px;
  }
  
  .header-nav {
    gap: 40px;
  }
  
  .header-nav-link {
    font-size: 15px;
  }
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: #b89a52;
  border-color: #b89a52;
}

.btn-secondary {
  background: transparent;
  color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.btn-secondary:hover {
  background: var(--color-light-gray);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ============ HERO SECTIONS ============ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: calc(var(--header-height) + 40px) 24px 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  color: var(--color-white);
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  margin: 8px;
}

@media (min-width: 768px) {
  .hero {
    padding: calc(var(--header-height) + 60px) 48px 80px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .hero p {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 56px;
  }
  
  .hero p {
    font-size: 22px;
  }
}

/* ============ SECTIONS ============ */

.section {
  padding: 60px 24px;
}

.section-dark {
  background: var(--color-light-gray);
}

.section-dark-bg {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-medium-gray);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section {
    padding: 80px 48px;
  }
  
  .section-title {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 100px 80px;
  }
  
  .section-title {
    font-size: 48px;
  }
}

/* ============ HOME: PROBLEM & SOLUTION ============ */

.problem-solution {
  text-align: center;
}

.problem-solution h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.problem-solution p {
  max-width: 800px;
  margin: 0 auto 20px;
  color: var(--color-medium-gray);
}

.problem-solution .highlight {
  color: var(--color-charcoal);
  font-weight: 600;
}

/* ============ HOME: ABOUT BLAKE ============ */

.about-blake {
  background: var(--color-white);
}

.about-blake-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.about-blake-image {
  position: relative;
  overflow: hidden;
}

.about-blake-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

.about-blake-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-blake-content p {
  color: var(--color-medium-gray);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .about-blake-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  .about-blake-image img {
    height: 500px;
  }
  
  .about-blake-content h2 {
    font-size: 36px;
  }
}

/* ============ HOME: LOCAL EXPERTISE ============ */

.local-expertise {
  background: var(--color-light-gray);
  position: relative;
  overflow: hidden;
}

.local-expertise-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.local-expertise-map {
  position: relative;
}

.local-expertise-map img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.local-expertise-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.local-expertise-content p {
  color: var(--color-medium-gray);
}

@media (min-width: 768px) {
  .local-expertise-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  .local-expertise-content h2 {
    font-size: 36px;
  }
}

/* ============ HOME: PRACTICE AREAS ============ */

.practice-areas-grid {
  display: grid;
  gap: 24px;
}

.practice-card {
  background: var(--color-light-gray);
  padding: 32px 24px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.practice-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.practice-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.practice-card-icon img {
  width: 100%;
  height: 100%;
}

.practice-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.practice-card p {
  color: var(--color-medium-gray);
  font-size: 15px;
}

.practice-card .btn {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 14px;
}

@media (min-width: 600px) {
  .practice-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .practice-areas-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .practice-card {
    padding: 40px 32px;
  }
}

/* ============ HOME: OUR APPROACH ============ */

.our-approach {
  background: var(--color-light-gray);
}

.approach-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.approach-content h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.approach-item {
  margin-bottom: 24px;
}

.approach-item h4 {
  font-size: 18px;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.approach-item p {
  color: var(--color-medium-gray);
  font-size: 15px;
}

.approach-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .approach-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  .approach-content h2 {
    font-size: 36px;
  }
  
  .approach-image img {
    height: 500px;
  }
}

/* ============ HOME: PROCESS ============ */

.process {
  background: var(--color-white);
}

.process-steps {
  display: grid;
  gap: 40px;
  position: relative;
}

.process-step {
  position: relative;
  padding-left: 80px;
}

.process-step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--color-gold);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--color-medium-gray);
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
  
  .process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--color-gold);
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  
  .process-steps::before {
    display: none;
  }
}

/* ============ HOME: FAQ ============ */

.faq-section {
  background: var(--color-light-gray);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-charcoal);
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--color-medium-gray);
  font-size: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ============ HOME: TESTIMONIALS ============ */

.testimonials {
  position: relative;
  padding: 100px 24px;
  background-size: cover;
  background-position: center;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(43, 43, 43, 0.9);
}

.testimonials-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonials h2 {
  color: var(--color-white);
  font-size: 32px;
  margin-bottom: 48px;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-quote {
  font-size: 20px;
  color: var(--color-white);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  color: var(--color-gold);
  font-weight: 600;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav button:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============ HOME: FINAL CTA ============ */

.final-cta {
  position: relative;
  padding: 100px 24px;
  background-size: cover;
  background-position: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(43, 43, 43, 0.85);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--color-white);
  font-size: 32px;
  margin-bottom: 16px;
}

.final-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}

/* ============ ABOUT PAGE ============ */

.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-light-gray);
  padding: calc(var(--header-height) + 40px) 24px 40px;
}

.about-hero-content {
  text-align: center;
}

.about-hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 20px;
  color: var(--color-medium-gray);
}

@media (min-width: 768px) {
  .about-hero h1 {
    font-size: 48px;
  }
}

.about-story {
  background: var(--color-white);
}

.story-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.story-content h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.story-content p {
  color: var(--color-medium-gray);
  margin-bottom: 16px;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  .story-content h2 {
    font-size: 36px;
  }
  
  .story-image img {
    height: 500px;
  }
}

/* Qualifications Grid */
.qualifications {
  background: var(--color-light-gray);
}

.qualifications-grid {
  display: grid;
  gap: 24px;
}

.qualification-item {
  background: var(--color-white);
  padding: 24px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid var(--color-light-gray);
}

.qualification-item h4 {
  color: var(--color-gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.qualification-item p {
  font-weight: 600;
}

@media (min-width: 600px) {
  .qualifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .qualifications-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Focus Experience */
.focus-experience {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.focus-experience h2 {
  color: var(--color-white);
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0;
}

.focus-tag {
  background: rgba(169, 140, 73, 0.2);
  color: var(--color-gold);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
}

.focus-experience p {
  color: rgba(255,255,255,0.8);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ============ PRACTICE AREAS PAGE ============ */

.pa-hero {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: calc(var(--header-height) + 60px) 24px 60px;
  text-align: center;
}

.pa-hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.pa-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pa-hero h1 {
    font-size: 48px;
  }
}

/* Practice Cards Detail */
.pa-cards {
  background: var(--color-white);
}

.pa-card {
  background: var(--color-light-gray);
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 24px;
}

.pa-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.pa-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.pa-card > p {
  color: var(--color-medium-gray);
  margin-bottom: 16px;
}

.pa-card-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.pa-card-details.open {
  max-height: 1000px;
}

.pa-card-details p {
  padding-top: 16px;
  border-top: 1px solid var(--color-medium-gray);
  color: var(--color-medium-gray);
  font-size: 15px;
}

.pa-card .btn {
  margin-top: 16px;
}

/* Why Choose ENAX */
.why-enax {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.why-enax h2 {
  color: var(--color-white);
}

.why-enax-grid {
  display: grid;
  gap: 32px;
}

.why-item {
  text-align: center;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.why-item h4 {
  color: var(--color-gold);
  margin-bottom: 8px;
}

.why-item p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

@media (min-width: 768px) {
  .why-enax-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-enax-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Case Studies */
.case-studies {
  background: var(--color-light-gray);
}

.case-grid {
  display: grid;
  gap: 24px;
}

.case-card {
  background: var(--color-white);
  padding: 24px;
  border-radius: 4px;
  border-left: 4px solid var(--color-gold);
}

.case-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.case-card p {
  color: var(--color-medium-gray);
  font-size: 15px;
}

@media (min-width: 768px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============ FAQ PAGE ============ */

.faq-hero {
  background: var(--color-light-gray);
  padding: calc(var(--header-height) + 60px) 24px 60px;
  text-align: center;
}

.faq-hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.faq-hero p {
  color: var(--color-medium-gray);
  max-width: 500px;
  margin: 0 auto;
}

/* FAQ Search & Filter */
.faq-search {
  background: var(--color-white);
  padding: 40px 24px;
}

.faq-search-box {
  max-width: 600px;
  margin: 0 auto 32px;
}

.faq-search-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--color-light-gray);
  border-radius: 4px;
  font-size: 16px;
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.faq-filter {
  padding: 10px 20px;
  background: var(--color-light-gray);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-filter:hover,
.faq-filter.active {
  background: var(--color-gold);
  color: var(--color-white);
}

/* FAQ List */
.faq-full {
  background: var(--color-light-gray);
  padding-top: 20px;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category h3 {
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-gold);
}

/* ============ CONTACT PAGE ============ */

.contact-hero {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: calc(var(--header-height) + 60px) 24px 60px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.contact-hero p {
  color: rgba(255,255,255,0.8);
}

/* Contact Info */
.contact-info {
  background: var(--color-white);
  padding: 60px 24px;
}

.contact-info-grid {
  display: grid;
  gap: 32px;
  text-align: center;
}

.contact-info-item {
  padding: 24px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.contact-info-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-info-item p {
  color: var(--color-medium-gray);
}

.contact-info-item a {
  color: var(--color-gold);
}

@media (min-width: 768px) {
  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact Form */
.contact-form-section {
  background: var(--color-light-gray);
  padding: 60px 24px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 40px;
  border-radius: 4px;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 8px;
  text-align: center;
}

.contact-form > p {
  color: var(--color-medium-gray);
  text-align: center;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-light-gray);
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group .required {
  color: var(--color-gold);
}

.contact-form .btn {
  width: 100%;
}

/* Contact Map */
.contact-map {
  padding: 60px 24px;
}

.contact-map h2 {
  text-align: center;
  margin-bottom: 32px;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 400px;
  background: var(--color-light-gray);
  border-radius: 4px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============ FOOTER ============ */

.footer {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 60px 24px 24px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-bottom: 8px;
}

.footer-brand a {
  color: var(--color-gold);
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--color-gold);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-cta .btn {
  width: 100%;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.footer-legal a:hover {
  color: var(--color-gold);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-cta {
    text-align: left;
  }
  
  .footer-cta .btn {
    width: auto;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

/* ============ ANIMATIONS ============ */

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Pulse Animation */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.btn-pulse {
  animation: pulse 2s ease-in-out 3;
}

/* Magnetic Button Effect */
.magnetic {
  transition: transform 0.3s ease;
}

/* Hero Split Text Reveal */
.split-text {
  overflow: hidden;
}

.split-text span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.split-text.visible span {
  transform: translateY(0);
  opacity: 1;
}

.split-text.visible span:nth-child(1) { transition-delay: 0.1s; }
.split-text.visible span:nth-child(2) { transition-delay: 0.2s; }
.split-text.visible span:nth-child(3) { transition-delay: 0.3s; }
.split-text.visible span:nth-child(4) { transition-delay: 0.4s; }
.split-text.visible span:nth-child(5) { transition-delay: 0.5s; }
.split-text.visible span:nth-child(6) { transition-delay: 0.6s; }

/* Diagonal Wipe Image Reveal */
.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.6s ease;
}

.img-reveal.revealed::after {
  transform: translateX(-100%);
}

/* Section Divider */
.section-divider {
  max-width: 100px;
  height: 2px;
  background: var(--color-gold);
  margin: 24px auto;
}

/* Progress Bar */
.progress-bar {
  height: 2px;
  background: var(--color-light-gray);
  margin-bottom: 40px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--color-gold);
  width: 0;
  transition: width 0.6s ease;
}

/* ============ PREFER REDUCED MOTION ============ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal, .stagger-children, .split-text, .img-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  
  .btn-pulse {
    animation: none;
  }
}

/* ============ MOBILE FLOATING CTA ============ */

.mobile-floating-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.mobile-floating-cta a {
  width: 56px;
  height: 56px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(169, 140, 73, 0.4);
}

.mobile-floating-cta svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
}

@media (max-width: 767px) {
  .mobile-floating-cta {
    display: block;
  }
}

/* ============ SUCCESS MESSAGE ============ */

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show {
  display: block;
}

.form-success h3 {
  color: var(--color-gold);
  margin-bottom: 16px;
}

.form-success p {
  color: var(--color-medium-gray);
}

/* ============ CONFETTI ANIMATION ============ */

.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  top: -10px;
  z-index: 9999;
  animation: confetti-fall 3s linear forwards;
}

@keyframes confetti-fall {
  to {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}
