@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #1a3a52;
  --secondary-color: #c9a05f;
  --accent-color: #8b6f47;
  --dark-blue: #0f2537;
  --light-gold: #e5d4b5;
  --cream: #f8f5f0;
  --charcoal: #2d3e50;
  --sage: #9ba899;
  --gradient-primary: linear-gradient(135deg, #1a3a52 0%, #2d4e68 100%);
  --gradient-secondary: linear-gradient(135deg, #c9a05f 0%, #8b6f47 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(26, 58, 82, 0.95) 0%, rgba(45, 78, 104, 0.85) 100%);
  --shadow-sm: 0 2px 8px rgba(26, 58, 82, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 58, 82, 0.12);
  --shadow-lg: 0 8px 32px rgba(26, 58, 82, 0.16);
  --shadow-xl: 0 16px 48px rgba(26, 58, 82, 0.2);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.75rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 245, 240, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(201, 160, 95, 0.15);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(248, 245, 240, 0.95);
}

.header-top {
  background: var(--gradient-primary);
  color: var(--cream);
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-contact {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream);
  opacity: 0.95;
  transition: var(--transition-fast);
}

.header-contact a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.header-social {
  display: flex;
  gap: 1rem;
}

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

.header-social a:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.header-main {
  padding: 1.25rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.logo i {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  font-weight: 500;
  color: var(--primary-color);
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-secondary);
  transition: var(--transition-smooth);
}

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

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0.5rem;
}

.mobile-menu-toggle:hover {
  color: var(--secondary-color);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: var(--cream);
  box-shadow: var(--shadow-xl);
  transition: var(--transition-smooth);
  z-index: 2000;
  overflow-y: auto;
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--gradient-primary);
  color: var(--cream);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--cream);
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-menu nav ul {
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 0;
}

.mobile-menu nav li {
  width: 100%;
  border-bottom: 1px solid rgba(201, 160, 95, 0.2);
}

.mobile-menu nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 37, 55, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(201, 160, 95, 0.03) 35px, rgba(201, 160, 95, 0.03) 70px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
}

.hero-title {
  color: white;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--light-gold);
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-alternate {
  background: white;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--charcoal);
  opacity: 0.85;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(201, 160, 95, 0.1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

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

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-secondary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.card:hover .card-icon {
  transform: rotate(5deg) scale(1.1);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.card-description {
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.card-link {
  color: var(--secondary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.card-link:hover {
  gap: 1rem;
}

.feature-card {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border-left: 4px solid var(--secondary-color);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.feature-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  color: var(--secondary-color);
  opacity: 0.3;
  line-height: 1;
}

.feature-content h3 {
  margin-bottom: 1rem;
}

.accordion {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.accordion-item {
  border-bottom: 1px solid rgba(201, 160, 95, 0.1);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  padding: 1.5rem 2rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
  font-family: 'Cormorant Garamond', serif;
}

.accordion-header:hover {
  background: rgba(201, 160, 95, 0.05);
  color: var(--secondary-color);
}

.accordion-icon {
  font-size: 1.5rem;
  transition: var(--transition-smooth);
  color: var(--secondary-color);
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content.active {
  max-height: 1000px;
}

.accordion-body {
  padding: 1.5rem 2rem 2rem;
  color: var(--charcoal);
  line-height: 1.8;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(201, 160, 95, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition-fast);
  background: white;
  color: var(--charcoal);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(201, 160, 95, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.25rem;
  accent-color: var(--secondary-color);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.form-card {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 160, 95, 0.1);
}

.form-card h3 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.testimonial-slider {
  position: relative;
  padding: 2rem 0;
}

.testimonial {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  position: relative;
  border-left: 4px solid var(--secondary-color);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--secondary-color);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: 'Cormorant Garamond', serif;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonial-info h4 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.testimonial-info p {
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.125rem;
  color: var(--charcoal);
  font-weight: 500;
}

.cta-section {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 160, 95, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--light-gold);
}

footer {
  background: var(--dark-blue);
  color: var(--light-gold);
  padding: 4rem 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-section p {
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--light-gold);
  opacity: 0.9;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
  padding-left: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-contact-item i {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 160, 95, 0.1);
  border-radius: 8px;
  transition: var(--transition-smooth);
  color: var(--light-gold);
}

.footer-social a:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-4px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 160, 95, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-bottom-links a {
  color: var(--light-gold);
  opacity: 0.9;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.footer-bottom-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  transform: translateY(100%);
  transition: var(--transition-smooth);
  border-top: 3px solid var(--secondary-color);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.cookie-text p {
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 0.75rem 1.5rem;
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

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

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.loading-spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 4px solid rgba(201, 160, 95, 0.2);
  border-top-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 245, 240, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-secondary);
  border-radius: 6px;
  border: 2px solid var(--cream);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--light-gold);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-primary {
  background: var(--gradient-secondary);
  color: white;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 37, 55, 0.8);
  backdrop-filter: blur(6px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(201, 160, 95, 0.2);
}

.modal-header h3 {
  color: var(--primary-color);
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--charcoal);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--secondary-color);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-secondary);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
  margin: 0 2rem;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border-radius: 50%;
  border: 4px solid var(--cream);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  font-family: 'Cormorant Garamond', serif;
}

.process-step h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.process-step p {
  color: var(--charcoal);
  opacity: 0.85;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(201, 160, 95, 0.1);
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card.featured {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  transform: scaleX(1);
}

.pricing-header h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
}

.pricing-period {
  color: var(--charcoal);
  opacity: 0.7;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(201, 160, 95, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--secondary-color);
  font-size: 1.25rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.team-member {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

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

.team-image {
  width: 100%;
  height: 320px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.team-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
}

.team-info {
  padding: 2rem;
  text-align: center;
}

.team-info h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-position {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.team-bio {
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 160, 95, 0.1);
  border-radius: 8px;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.team-social a:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--charcoal);
  opacity: 0.7;
  transition: var(--transition-fast);
}

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

.breadcrumb-separator {
  color: var(--charcoal);
  opacity: 0.4;
}

.breadcrumb-current {
  color: var(--secondary-color);
  font-weight: 600;
}

.alert {
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 4px solid;
}

.alert i {
  font-size: 1.5rem;
  margin-top: 0.125rem;
}

.alert-info {
  background: rgba(26, 58, 82, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.alert-success {
  background: rgba(155, 168, 153, 0.2);
  border-color: var(--sage);
  color: #4a6347;
}

.alert-warning {
  background: rgba(201, 160, 95, 0.2);
  border-color: var(--secondary-color);
  color: #8b6f47;
}

.alert-error {
  background: rgba(185, 78, 72, 0.1);
  border-color: #b94e48;
  color: #b94e48;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
  margin: 3rem 0;
  opacity: 0.3;
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-marker {
    left: 0;
    transform: translateX(0);
  }

  .timeline-content {
    margin-left: 2rem;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }

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

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

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .header-top-content {
    flex-direction: column;
    text-align: center;
  }

  .header-contact {
    flex-direction: column;
    gap: 0.75rem;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

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

  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

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

  .card {
    padding: 2rem;
  }

  .form-card {
    padding: 2rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }
}