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

:root {
  --primary: #1a365d;
  --primary-dark: #12294a;
  --secondary: #c9a227;
  --secondary-light: #d4b33d;
  --cream: #faf8f5;
  --white: #ffffff;
  --text-dark: #2d3748;
  --text-light: #718096;
  --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-glow: 0 0 30px rgba(201, 162, 39, 0.3);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ============================================
   ANIMATIONS & TRANSITIONS
============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.4);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Animation Utility Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease forwards;
}

/* Animation delays for staggered effects */
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}
.delay-5 {
  animation-delay: 0.5s;
}
.delay-6 {
  animation-delay: 0.6s;
}

/* ============================================
   GLASSMORPHISM & CARD EFFECTS
============================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-card);
}

.glass-card-dark {
  background: rgba(26, 54, 93, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* ============================================
   GRADIENT & TEXT EFFECTS
============================================ */
.gradient-text {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 50%,
    var(--secondary) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease infinite;
}

.text-glow {
  text-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.text-glow-subtle {
  text-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

/* ============================================
   IMAGE FRAMING EFFECTS
============================================ */
.img-frame {
  position: relative;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.img-frame::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid var(--secondary);
  border-radius: 8px;
  opacity: 0.5;
  z-index: -1;
}

.img-glow {
  position: relative;
  border-radius: 12px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 0 30px rgba(201, 162, 39, 0.15);
}

.img-glow::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    transparent 50%,
    var(--secondary)
  );
  z-index: -1;
  opacity: 0.3;
}

/* ============================================
   ENHANCED BUTTON STYLES
============================================ */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
}

.btn-secondary:hover {
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

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: color 0.3s ease;
}

ul {
  list-style: none;
}

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

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background-color: var(--secondary-light);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

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

.section-header h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-header .divider {
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
  margin: 16px auto;
}

.header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

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

.logo-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--secondary);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .firm-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text .firm-tagline {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

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

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

.hero {
  background:
    linear-gradient(
      135deg,
      rgba(26, 54, 93, 0.95) 0%,
      rgba(18, 41, 74, 0.9) 100%
    ),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920")
      center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  margin-top: 0;
}

.hero-content {
  max-width: 700px;
  height: 80vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 1s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-btns {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1s ease 0.4s backwards;
}

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

.page-header {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 160px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb span {
  color: var(--secondary);
}

.about-intro {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
}

.about-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 12px;
  box-shadow:
    var(--shadow-lg),
    0 0 40px rgba(201, 162, 39, 0.15);
  transition: all 0.4s ease;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -25px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--secondary);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.6;
  transition: all 0.4s ease;
}

.about-image:hover img {
  box-shadow:
    var(--shadow-lg),
    0 0 60px rgba(201, 162, 39, 0.25);
}

.about-image:hover::before {
  top: -30px;
  left: -30px;
  opacity: 1;
}

.about-content h2 {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

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

.value-item {
  text-align: center;
  transition: all 0.3s ease;
  padding: 20px;
  border-radius: 8px;
}

.value-item:hover {
  transform: translateY(-5px);
  background: var(--cream);
}

.value-item .icon {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-item:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.3);
  background: var(--secondary);
}

.value-item:hover .icon svg {
  fill: var(--white);
}

.value-item .icon svg {
  width: 28px;
  height: 28px;
  fill: var(--secondary);
  transition: all 0.3s ease;
}

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

.value-item p {
  font-size: 14px;
  color: var(--text-light);
}

.stats-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(201, 162, 39, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 20px;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.stat-item .number {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
  transition: all 0.3s ease;
}

.stat-item:hover .number {
  text-shadow: 0 0 30px rgba(201, 162, 39, 0.8);
}

.stat-item .label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-preview {
  padding: 100px 0;
  background-color: var(--cream);
}

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

.service-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    var(--shadow-lg),
    0 0 30px rgba(201, 162, 39, 0.15);
  border-color: rgba(201, 162, 39, 0.3);
}

.service-card .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--cream) 0%, #f5f2eb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.3);
}

.service-card .icon svg {
  width: 36px;
  height: 36px;
  fill: var(--secondary);
}

.service-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-card a {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card a:hover {
  color: var(--primary);
}

.testimonials {
  padding: 100px 0;
  background-color: var(--white);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  text-align: center;
  padding: 40px;
}

.testimonial-item .quote {
  font-size: 22px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-item .quote::before {
  content: '"';
  font-family: "Playfair Display", serif;
  font-size: 80px;
  color: var(--secondary);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

.testimonial-item .client {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.testimonial-item .client-info {
  font-size: 14px;
  color: var(--text-light);
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 100px 0;
  text-align: center;
}

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

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

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

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

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about .logo-icon {
  background-color: var(--secondary);
}

.footer-about .logo-icon svg {
  fill: var(--white);
}

.footer-about .logo-text .firm-name {
  color: var(--white);
}

.footer-about p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer h4 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

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

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

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 8px;
  text-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

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

.social-links a:hover {
  background-color: var(--secondary);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary);
  transform: translateY(-5px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.services-page {
  padding: 100px 0;
  background-color: var(--white);
}

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

.services-full-grid .service-card {
  padding: 50px 40px;
}

.services-full-grid .service-card .icon {
  width: 100px;
  height: 100px;
}

.services-full-grid .service-card .icon svg {
  width: 44px;
  height: 44px;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px;
}

.team-member {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-member .image {
  height: 300px;
  background-color: var(--cream);
  overflow: hidden;
}

.team-member .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .image img {
  transform: scale(1.05);
}

.team-member .info {
  padding: 24px;
  text-align: center;
}

.team-member h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-member .position {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.team-member p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.team-member .social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-member .social a {
  width: 36px;
  height: 36px;
  background-color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-member .social a:hover {
  background-color: var(--secondary);
}

.team-member .social svg {
  width: 16px;
  height: 16px;
  fill: var(--text-dark);
}

.team-member .social a:hover svg {
  fill: var(--white);
}

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

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

.contact-info {
  background-color: var(--primary);
  padding: 50px;
  border-radius: 8px;
  color: var(--white);
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.contact-info ul {
  margin-bottom: 40px;
}

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

.contact-info .icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info .icon svg {
  width: 22px;
  height: 22px;
  fill: var(--secondary);
}

.contact-info .detail h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-info .detail p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info .social-links {
  margin-top: 40px;
}

.contact-form {
  background-color: var(--cream);
  padding: 50px;
  border-radius: 8px;
}

.contact-form h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background-color: var(--white);
  transition: border-color 0.3s ease;
}

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

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

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

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr !important;
  gap: 60px;
  align-items: start;
}

.booking-info {
  padding: 40px;
  background-color: var(--primary);
  border-radius: 8px;
  color: var(--white);
}

.booking-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.booking-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.booking-info ul {
  margin-bottom: 30px;
}

.booking-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}

.booking-info li svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
}

.booking-form {
  background-color: var(--white);
  padding: 50px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-form h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 32px;
}

.form-group input[type="date"],
.form-group input[type="time"] {
  cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  padding: 4px;
}

.success-message {
  display: none;
  text-align: center;
  padding: 40px;
  background-color: var(--cream);
  border-radius: 8px;
}

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

.success-message svg {
  width: 60px;
  height: 60px;
  fill: #48bb78;
  margin-bottom: 20px;
}

.success-message h4 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 12px;
}

.success-message p {
  color: var(--text-light);
}

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

@media (max-width: 768px) {
  .header .container {
    padding: 12px 20px;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

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

  .nav-menu li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
   .services-full-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .about-intro .container {
    gap: 40px;
  }

  .about-intro .container {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 80px;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .services-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .team-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .contact-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile optimizations for new design elements */
  .animate-fade-in-up,
  .animate-slide-left,
  .animate-slide-right,
  .animate-scale-in {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .btn::before {
    display: none;
  }

  .service-card:hover,
  .value-item:hover,
  .team-member:hover {
    transform: none;
  }

  .about-image::before {
    display: none;
  }

  .about-intro .container {
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .services-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .team-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .contact-grid,
  .booking-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .header .container {
    padding: 12px 20px;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

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

  .nav-menu li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .page-header {
    padding: 120px 0 60px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .about-intro {
    padding: 60px 0;
  }

  .about-intro .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-image::before {
    display: none;
  }

  .my-team-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .values-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
