@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

:root {
  --navy: #1a365d;
  --navy-light: #2c4a7c;
  --navy-dark: #0f1f3a;
  --burgundy: #722f37;
  --burgundy-light: #8b3d47;
  --gold: #c9a227;
  --gold-light: #d4b84a;
  --black: #1a1a1a;
  --dark-gray: #2d2d2d;
  --medium-gray: #666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --cream: #faf8f5;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

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

.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--navy);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 24px auto 0;
}

.scroll-reveal:nth-child(1) {
  transition-delay: 0ms;
}
.scroll-reveal:nth-child(2) {
  transition-delay: 100ms;
}
.scroll-reveal:nth-child(3) {
  transition-delay: 200ms;
}
.scroll-reveal:nth-child(4) {
  transition-delay: 300ms;
}
.scroll-reveal:nth-child(5) {
  transition-delay: 400ms;
}
.scroll-reveal:nth-child(6) {
  transition-delay: 500ms;
}
.scroll-reveal:nth-child(7) {
  transition-delay: 600ms;
}
.scroll-reveal:nth-child(8) {
  transition-delay: 700ms;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 54, 93, 0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 42px;
}

.nav-logo-text {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.15) translate(0, 0);
  }
  100% {
    transform: scale(1.05) translate(-1%, -1%);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 54, 93, 0.85) 0%,
    rgba(114, 47, 55, 0.75) 50%,
    rgba(26, 54, 93, 0.9) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.5s;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content .hero-tagline {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.8s;
  line-height: 1.6;
}

.hero-content .hero-desc {
  font-size: 1.05rem;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 1.1s;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: inline-flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 1.4s;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

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

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--white);
  transform: scale(1.2);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.sticky-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
}

.sticky-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
}

.sticky-btn:hover {
  transform: scale(1.1);
}

.sticky-btn.main {
  background: var(--navy);
  z-index: 2;
}

.sticky-btn.main.active {
  background: var(--burgundy);
  transform: rotate(45deg);
}

.sticky-menu {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.sticky-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-btn.whatsapp {
  background: #25d366;
}

.sticky-btn.phone {
  background: var(--navy);
}

.sticky-btn .tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.sticky-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.intro-section {
  background: var(--cream);
  padding: 100px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.intro-text h2 span {
  color: var(--burgundy);
}

.intro-text p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.intro-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--gold);
  font-family: "Playfair Display", serif;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin: 0;
}

.intro-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.intro-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.practice-preview {
  padding: 100px 0;
  background: var(--white);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.practice-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.practice-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.practice-card-img {
  height: 220px;
  overflow: hidden;
}

.practice-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.practice-card:hover .practice-card-img img {
  transform: scale(1.1);
}

.practice-card-content {
  padding: 28px;
}

.practice-card-content h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.practice-card-content p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.practice-card-content .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--burgundy);
  font-weight: 600;
  font-size: 0.9rem;
}

.practice-card-content .read-more:hover {
  color: var(--gold);
  gap: 12px;
}

.faq-teaser {
  padding: 100px 0;
  background: var(--cream);
}

.faq-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.faq-teaser-item {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  overflow: hidden;
}

.faq-teaser-item:hover {
  box-shadow: var(--shadow-lg);
}

.faq-teaser-question {
  width: 100%;
  padding: 28px;
  background: none;
  border: none;
  text-align: left;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  transition: var(--transition);
}

.faq-teaser-question:hover {
  background: rgba(201, 162, 39, 0.03);
}

.faq-teaser-icon {
  width: 60px;
  height: 60px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.faq-teaser-icon svg {
  width: 28px;
  height: 28px;
}

.faq-teaser-question h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0;
  padding-right: 30px;
  line-height: 1.4;
}

.faq-teaser-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-teaser-question.active .faq-teaser-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.faq-teaser-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 28px;
}

.faq-teaser-answer.active {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-teaser-answer p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.faq-teaser-answer a {
  color: var(--burgundy);
  font-weight: 500;
  text-decoration: underline;
}

.faq-teaser-answer a:hover {
  color: var(--gold);
}

.faq-teaser-cta {
  text-align: center;
}

.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--burgundy) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.05rem;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--burgundy) 100%);
  padding: 160px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.about-content {
  padding: 100px 0;
}

.about-intro,
.about-approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-approach {
  direction: rtl;
}

.about-approach > * {
  direction: ltr;
}

.about-text h2,
.about-text h3 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.vision-card,
.mission-card {
  background: var(--white);
  padding: 48px 36px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  text-align: center;
  transition: var(--transition);
}

.vision-card:hover,
.mission-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.vision-icon,
.mission-icon {
  width: 70px;
  height: 70px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--navy);
}

.vision-icon svg,
.mission-icon svg {
  width: 32px;
  height: 32px;
}

.vision-card h3,
.mission-card h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.vision-card p,
.mission-card p {
  color: var(--medium-gray);
  font-size: 1rem;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-card .icon {
  width: 60px;
  height: 60px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--navy);
}

.value-card .icon svg {
  width: 28px;
  height: 28px;
}

.value-card h4 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin: 0;
}

.practice-full {
  padding: 100px 0;
  background: var(--cream);
}

.practice-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.practice-full-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.practice-full-card:hover {
  box-shadow: var(--shadow-lg);
}

.practice-full-img {
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}

.practice-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.practice-full-card:hover .practice-full-img img {
  transform: scale(1.05);
}

.practice-full-content {
  padding: 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.practice-full-content h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.practice-full-content h3 span {
  color: var(--gold);
  font-size: 1.8rem;
  margin-right: 8px;
}

.practice-full-content p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.practice-tagline {
  text-align: center;
  padding: 60px 0;
  background: var(--navy);
  color: var(--white);
}

.practice-tagline p {
  font-size: 1.4rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.team-section {
  padding: 100px 0;
  background: var(--white);
}

.team-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.team-card-new {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.team-card-new:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.team-card-img {
  width: 100%;
  height: 460px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--light-gray);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
  transition: transform 0.6s ease;
}

.team-card-new:hover .team-card-img img {
  transform: scale(1.03);
}

.team-card-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-card-content h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card-content .title {
  color: var(--burgundy);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
  display: block;
}

.team-card-content .bio-short {
  flex-shrink: 0;
  min-height: 80px;
}

.team-card-content .bio-short p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.team-card-content .bio-full {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    margin-top 0.3s ease,
    opacity 0.3s ease;
  opacity: 0;
}

.team-card-content .bio-full.active {
  max-height: 600px;
  margin-top: 12px;
  opacity: 1;
  overflow: visible;
}

.team-card-content .bio-full p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.team-card-content .bio-full p:last-child {
  margin-bottom: 0;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--burgundy);
  font-weight: 600;
  font-size: 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: var(--transition);
  align-self: flex-start;
}

.read-more-btn:hover {
  color: var(--gold);
  gap: 12px;
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn.active i {
  transform: rotate(90deg);
}

.contact-section {
  padding: 100px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--medium-gray);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail .icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-detail p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin: 0;
}

.contact-detail a {
  color: var(--burgundy);
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background: var(--burgundy);
}

.form-message {
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  display: none;
}

.form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.faq-section {
  padding: 100px 0;
  background: var(--white);
}

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

.faq-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

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

.faq-question.active {
  color: var(--burgundy);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gold);
}

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

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

.faq-answer.active {
  max-height: 500px;
  padding: 0 28px 24px;
}

.faq-answer p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--burgundy);
  font-weight: 500;
  text-decoration: underline;
}

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

.map-section {
  padding: 0 0 100px;
  background: var(--cream);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--gold);
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--gold);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

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

  .team-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .practice-full-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 100px 40px;
    transition: var(--transition);
    gap: 24px;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content .hero-tagline {
    font-size: 1.1rem;
  }

  .intro-grid,
  .about-intro,
  .about-approach,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-approach {
    direction: ltr;
  }

  .about-image img {
    height: 300px;
  }

  .about-vision-mission {
    grid-template-columns: 1fr;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid-new {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .team-card-img {
    height: 420px;
  }

  .faq-teaser-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .sticky-actions {
    bottom: 20px;
    right: 20px;
  }

  .sticky-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .cta-section {
    padding: 50px 0;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .practice-full-img {
    height: 220px;
  }

  .intro-text h2 {
    white-space: nowrap;
    font-size: 2rem;
  }

  .intro-text h2 span {
    display: inline-block;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .intro-stats {
    flex-direction: column;
    gap: 20px;
  }

  .nav-logo-text {
    font-size: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-text h2 {
    font-size: 1.6rem;
  }

  .team-card-img {
    height: 240px;
  }
}

.sticky-menu {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.sticky-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(26, 54, 93, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(26, 54, 93, 0);
  }
}

.sticky-btn.main {
  animation: pulse 2s infinite;
}

.sticky-btn.main.active {
  animation: none;
  background: var(--burgundy);
  transform: rotate(45deg);
}
