@charset "UTF-8";

:root {
  --sapphire-blue: #1e3a5f;
  --deep-sapphire: #0f2744;
  --amber-gold: #d4a84b;
  --warm-amber: #f0c674;
  --crystal-white: #f8fafc;
  --glass-surface: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-soft: rgba(30, 58, 95, 0.1);
  --shadow-medium: rgba(30, 58, 95, 0.15);
  --text-primary: #1a2634;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--crystal-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--deep-sapphire);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  color: inherit;
}

a {
  color: var(--sapphire-blue);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--amber-gold);
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

.section-title h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber-gold), var(--warm-amber));
  border-radius: 2px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  border: none;
  transition: var(--transition-smooth);
  white-space: nowrap;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber-gold), var(--warm-amber));
  color: var(--deep-sapphire);
  box-shadow: 0 4px 20px rgba(212, 168, 75, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 75, 0.4);
  color: var(--deep-sapphire);
}

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

.btn-secondary:hover {
  background: var(--crystal-white);
  color: var(--sapphire-blue);
}

.btn-outline {
  background: transparent;
  color: var(--sapphire-blue);
  border: 2px solid var(--sapphire-blue);
}

.btn-outline:hover {
  background: var(--sapphire-blue);
  color: var(--crystal-white);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 39, 68, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(15, 39, 68, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--crystal-white);
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--amber-gold), var(--warm-amber));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-sapphire);
  font-size: 1.5rem;
}

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

.nav-link {
  color: var(--crystal-white);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-gold);
  background: rgba(212, 168, 75, 0.1);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--crystal-white);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--deep-sapphire) 0%, var(--sapphire-blue) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23d4a84b" stop-opacity="0.1"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="20" cy="30" r="40" fill="url(%23g)"/><circle cx="80" cy="70" r="60" fill="url(%23g)"/></svg>');
  background-size: cover;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 75, 0.15);
  border: 1px solid rgba(212, 168, 75, 0.3);
  color: var(--amber-gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--crystal-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: rgba(248, 250, 252, 0.85);
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  z-index: 2;
}

.hero-image img {
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 var(--border-radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.stats-bar {
  background: var(--crystal-white);
  padding: 40px 0;
  margin-top: -60px;
  position: relative;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--glass-surface);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px var(--shadow-soft);
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px var(--shadow-medium);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--amber-gold);
  font-family: 'Georgia', serif;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.features-section {
  background: linear-gradient(180deg, var(--crystal-white) 0%, rgba(212, 168, 75, 0.05) 100%);
}

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

.feature-card {
  background: var(--glass-surface);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber-gold), var(--warm-amber));
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px var(--shadow-medium);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--amber-gold), var(--warm-amber));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--deep-sapphire);
  transition: var(--transition-smooth);
}

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

.feature-card h3 {
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.services-section {
  background: var(--deep-sapphire);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.services-section h2 {
  color: var(--crystal-white);
}

.services-section .section-title p {
  color: rgba(248, 250, 252, 0.7);
}

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

.service-card {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  transition: var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
  border-color: rgba(212, 168, 75, 0.4);
}

.services-section .service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-section .service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 168, 75, 0.4);
}

.service-image {
  width: 100%;
  height: 200px;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-card h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.services-section .service-card h3 {
  color: var(--crystal-white);
}

.services-section .service-card p {
  color: rgba(248, 250, 252, 0.75);
}

.service-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber-gold);
  font-family: 'Georgia', serif;
}

.price-label {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
}

.services-section .price-label {
  color: rgba(248, 250, 252, 0.6);
}

.about-section {
  background: var(--crystal-white);
}

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

.about-images {
  position: relative;
}

.about-main-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px var(--shadow-medium);
}

.about-main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: linear-gradient(135deg, var(--amber-gold), var(--warm-amber));
  padding: 24px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 20px 50px rgba(212, 168, 75, 0.3);
}

.about-badge span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--deep-sapphire);
  font-family: 'Georgia', serif;
  line-height: 1;
}

.about-badge small {
  color: var(--deep-sapphire);
  font-size: 0.85rem;
  font-weight: 500;
}

.about-content h2 {
  margin-bottom: 24px;
}

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

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

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

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 75, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about-feature span {
  color: var(--text-primary);
  font-weight: 500;
}

.team-section {
  background: linear-gradient(180deg, rgba(212, 168, 75, 0.05) 0%, var(--crystal-white) 100%);
}

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

.team-card {
  background: var(--glass-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px var(--shadow-medium);
}

.team-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-card:hover .team-image img {
  transform: scale(1.08);
}

.team-info {
  padding: 24px 20px;
}

.team-info h3 {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.team-info p {
  color: var(--amber-gold);
  font-weight: 500;
  font-size: 0.9rem;
}

.testimonials-section {
  background: var(--deep-sapphire);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(212, 168, 75, 0.1) 0%, transparent 100%);
}

.testimonials-section h2 {
  color: var(--crystal-white);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--amber-gold);
  font-size: 1.1rem;
}

.testimonial-text {
  color: rgba(248, 250, 252, 0.85);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--amber-gold);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--crystal-white);
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-info span {
  color: rgba(248, 250, 252, 0.6);
  font-size: 0.85rem;
}

.gallery-section {
  background: var(--crystal-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 39, 68, 0.8) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--crystal-white);
  font-weight: 600;
}

.blog-section {
  background: linear-gradient(180deg, var(--crystal-white) 0%, rgba(212, 168, 75, 0.03) 100%);
}

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

.blog-card {
  background: var(--glass-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px var(--shadow-medium);
}

.blog-image {
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-content {
  padding: 28px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-category {
  background: rgba(212, 168, 75, 0.15);
  color: var(--amber-gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-date {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.blog-content h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.blog-card:hover h3 {
  color: var(--amber-gold);
}

.blog-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sapphire-blue);
  font-weight: 600;
  font-size: 0.95rem;
}

.blog-link:hover {
  gap: 12px;
}

.faq-section {
  background: var(--crystal-white);
}

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

.faq-item {
  margin-bottom: 16px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: var(--glass-surface);
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-smooth);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep-sapphire);
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: rgba(212, 168, 75, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-gold);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--amber-gold);
  color: var(--deep-sapphire);
}

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

.faq-answer-content {
  padding: 0 28px 24px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.contact-section {
  background: linear-gradient(135deg, var(--deep-sapphire) 0%, var(--sapphire-blue) 100%);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.contact-info h2 {
  color: var(--crystal-white);
  margin-bottom: 16px;
}

.contact-info > p {
  color: rgba(248, 250, 252, 0.75);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--amber-gold), var(--warm-amber));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-sapphire);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item-content h4 {
  color: var(--crystal-white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-item-content p {
  color: rgba(248, 250, 252, 0.8);
  font-size: 0.95rem;
}

.contact-form-wrapper {
  background: var(--glass-surface);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper h3 {
  margin-bottom: 24px;
  text-align: center;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-smooth);
  background: var(--crystal-white);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--amber-gold);
  box-shadow: 0 0 0 4px rgba(212, 168, 75, 0.1);
}

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

.contact-form-wrapper .btn {
  width: 100%;
  margin-top: 10px;
}

.map-section {
  padding: 80px 0;
  background: var(--crystal-white);
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-medium);
}

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

.service-area-section {
  background: linear-gradient(180deg, rgba(212, 168, 75, 0.03) 0%, var(--crystal-white) 100%);
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-area-map {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-medium);
}

.service-area-map img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-area-content h2 {
  margin-bottom: 20px;
}

.service-area-content > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 500;
}

.service-list li::before {
  content: '✓';
  color: var(--amber-gold);
  font-weight: 700;
}

.process-section {
  background: var(--deep-sapphire);
}

.process-section h2 {
  color: var(--crystal-white);
}

.process-section .section-title p {
  color: rgba(248, 250, 252, 0.7);
}

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

.process-card {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--amber-gold), var(--warm-amber));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-sapphire);
  margin: 0 auto 20px;
}

.process-card h3 {
  color: var(--crystal-white);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.process-card p {
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.95rem;
}

.process-card::after {
  content: '→';
  position: absolute;
  top: 50px;
  right: -20px;
  color: rgba(212, 168, 75, 0.4);
  font-size: 2rem;
}

.process-card:last-child::after {
  display: none;
}

.cta-section {
  background: linear-gradient(135deg, var(--amber-gold), var(--warm-amber));
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--deep-sapphire);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--deep-sapphire);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}

.cta-section .btn-primary {
  background: var(--deep-sapphire);
  color: var(--crystal-white);
  box-shadow: 0 4px 20px rgba(15, 39, 68, 0.3);
}

.cta-section .btn-primary:hover {
  background: var(--sapphire-blue);
}

footer {
  background: var(--deep-sapphire);
  padding: 80px 0 30px;
  color: var(--crystal-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: rgba(248, 250, 252, 0.7);
  margin-top: 16px;
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-title {
  color: var(--crystal-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(248, 250, 252, 0.7);
  transition: var(--transition-smooth);
}

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

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

.footer-contact span {
  color: var(--amber-gold);
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(248, 250, 252, 0.5);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(248, 250, 252, 0.5);
  font-size: 0.9rem;
}

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

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--deep-sapphire) 0%, var(--sapphire-blue) 100%);
  text-align: center;
  padding: 120px 24px 80px;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--amber-gold), var(--warm-amber));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--deep-sapphire);
  margin: 0 auto 32px;
}

.thank-you-content h1 {
  color: var(--crystal-white);
  margin-bottom: 20px;
}

.thank-you-content p {
  color: rgba(248, 250, 252, 0.85);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.legal-section {
  padding: 120px 0 80px;
  background: var(--crystal-white);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 40px;
  text-align: center;
}

.legal-content h2 {
  margin: 40px 0 16px;
  font-size: 1.5rem;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.9;
}

.legal-content ul {
  margin: 16px 0 24px 24px;
}

.legal-content li {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 400px;
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: block;
}

.cookie-consent-banner h4 {
  margin-bottom: 12px;
  color: var(--deep-sapphire);
}

.cookie-consent-banner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-buttons .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .hero-image {
    display: none;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-card::after {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--deep-sapphire);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-150%);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }
  
  .hero-content {
    padding-top: 100px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    padding: 24px 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-images {
    order: -1;
  }
  
  .about-main-image img {
    height: 350px;
  }
  
  .about-badge {
    bottom: -20px;
    right: 20px;
    padding: 16px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .service-area-grid {
    grid-template-columns: 1fr;
  }
  
  .service-area-map {
    order: -1;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .cookie-consent-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}