:root {
  --primary: #1a3a5c;
  --secondary: #e8722a;
  --accent: #2d5a8a;
  --dark: #0d1f30;
  --light: #f4f6f8;
  --text: #2c3e50;
  --text-light: #5a6d7e;
  --white: #ffffff;
  --border: #dde3e9;
  --shadow: rgba(26, 58, 92, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

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

ul {
  list-style: none;
}

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

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

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 2px 20px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

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

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-menu a {
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 5px 0;
}

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%232d5a8a" stroke-width="0.5" opacity="0.3"/><circle cx="50" cy="50" r="30" fill="none" stroke="%232d5a8a" stroke-width="0.5" opacity="0.2"/><circle cx="50" cy="50" r="20" fill="none" stroke="%232d5a8a" stroke-width="0.5" opacity="0.1"/></svg>');
  background-size: 200px;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.hero-text {
  flex: 1;
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 25px;
}

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

.hero-desc {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  flex: 1;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.hero-image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.hero-stats {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  background: var(--white);
  padding: 25px 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px var(--shadow);
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 5px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: #d4651e;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(232, 114, 42, 0.35);
}

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

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

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

.btn-dark:hover {
  background: var(--dark);
}

/* Section Styles */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--light);
}

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

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

.section-tag {
  display: inline-block;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-dark .section-title {
  color: var(--white);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
}

.section-dark .section-desc {
  color: rgba(255,255,255,0.8);
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 30px;
  width: calc(33.333% - 20px);
  min-width: 300px;
  box-shadow: 0 10px 40px var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.price-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
}

.price-currency {
  font-size: 1rem;
  color: var(--text-light);
}

.service-link {
  color: var(--secondary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

/* About Section */
.about-content {
  display: flex;
  gap: 80px;
  align-items: center;
}

.about-visual {
  flex: 1;
  position: relative;
}

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

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

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--secondary);
  color: var(--white);
  padding: 25px 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(232, 114, 42, 0.3);
}

.about-badge-number {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
}

.about-badge-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.3rem;
  color: var(--primary);
  margin-bottom: 25px;
  line-height: 1.3;
}

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

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 35px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  width: calc(50% - 10px);
}

.about-feature-icon {
  width: 45px;
  height: 45px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

/* Benefits Section */
.benefits-wrapper {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.benefits-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 5px 25px var(--shadow);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
}

.benefit-number {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.benefit-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.benefits-cta {
  flex: 0 0 380px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  border-radius: 20px;
  padding: 50px 40px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefits-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.benefits-cta p {
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  flex: 1;
  min-width: 320px;
  box-shadow: 0 10px 40px var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 6rem;
  color: var(--secondary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
}

.testimonial-text {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-info h5 {
  color: var(--primary);
  font-size: 1rem;
}

.testimonial-info span {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Contact Section */
.contact-wrapper {
  display: flex;
  gap: 60px;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-item h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--text-light);
}

.contact-form-wrapper {
  flex: 1;
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px var(--shadow);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: var(--white);
}

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

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

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #d4651e 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

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

.footer-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.footer-brand {
  flex: 1.5;
  min-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 45px;
  height: 45px;
  background: var(--secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-column {
  flex: 1;
  min-width: 180px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

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

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

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

.footer-legal a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 25px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

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

.cookie-text p {
  font-size: 0.95rem;
  opacity: 0.9;
}

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

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

.btn-cookie {
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-cookie-accept {
  background: var(--secondary);
  color: var(--white);
}

.btn-cookie-accept:hover {
  background: #d4651e;
}

.btn-cookie-reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}

.btn-cookie-reject:hover {
  background: rgba(255,255,255,0.1);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.sticky-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(232, 114, 42, 0.4);
  transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(232, 114, 42, 0.5);
}

.sticky-cta-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Page Headers */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 120px 0 80px;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  font-size: 0.9rem;
}

.breadcrumb a {
  opacity: 0.7;
}

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

.breadcrumb span {
  opacity: 0.5;
}

/* Services Page */
.services-page-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-row {
  display: flex;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow);
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-row-image {
  flex: 0 0 40%;
  height: 350px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-row-image svg {
  width: 120px;
  height: 120px;
  fill: var(--secondary);
  opacity: 0.5;
}

.service-row-content {
  flex: 1;
  padding: 50px;
}

.service-row-content h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-row-content p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.8;
}

.service-row-price {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.service-row-price .price-tag {
  background: var(--light);
  padding: 10px 20px;
  border-radius: 8px;
}

.service-row-price .price-amount {
  font-size: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.service-feature-tag {
  background: var(--light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text);
}

/* About Page */
.about-story {
  display: flex;
  gap: 80px;
  align-items: center;
}

.about-story-text {
  flex: 1;
}

.about-story-text h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.about-story-text p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-story-image {
  flex: 1;
}

.about-story-image img {
  border-radius: 20px;
  box-shadow: 0 30px 60px var(--shadow);
}

.team-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  width: calc(25% - 23px);
  min-width: 250px;
  box-shadow: 0 10px 40px var(--shadow);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
}

.team-member h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.team-member span {
  color: var(--secondary);
  font-size: 0.9rem;
}

.values-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.value-card {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 50px 30px;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.value-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.value-card p {
  opacity: 0.85;
  line-height: 1.7;
}

/* Contact Page */
.contact-page-wrapper {
  display: flex;
  gap: 60px;
}

.contact-page-info {
  flex: 1;
}

.contact-page-info h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.contact-page-info > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-page-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-page-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-page-icon {
  width: 60px;
  height: 60px;
  background: var(--light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-page-item h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-page-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.map-placeholder {
  height: 300px;
  background: var(--light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder svg {
  width: 80px;
  height: 80px;
  fill: var(--border);
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.6rem;
  color: var(--primary);
  margin: 40px 0 20px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 15px 0 15px 25px;
  list-style: disc;
}

.legal-content li {
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Thanks Page */
.thanks-wrapper {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--secondary), #d4651e);
  border-radius: 50%;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.thanks-icon svg {
  width: 60px;
  height: 60px;
  fill: var(--white);
}

.thanks-content h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.thanks-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.7;
}

.thanks-service {
  background: var(--light);
  padding: 20px 30px;
  border-radius: 12px;
  margin: 30px 0;
  display: inline-block;
}

.thanks-service span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.thanks-service strong {
  display: block;
  font-size: 1.2rem;
  color: var(--secondary);
  margin-top: 5px;
}

.thanks-actions {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 40px;
  }

  .about-content,
  .about-story,
  .contact-wrapper,
  .contact-page-wrapper {
    flex-direction: column;
  }

  .benefits-wrapper {
    flex-direction: column;
  }

  .benefits-cta {
    flex: auto;
  }

  .service-card {
    width: calc(50% - 15px);
  }

  .service-row,
  .service-row:nth-child(even) {
    flex-direction: column;
  }

  .service-row-image {
    flex: auto;
    width: 100%;
    height: 250px;
  }

  .team-member {
    width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

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

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

  .hero h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-card,
  .testimonial-card,
  .team-member {
    width: 100%;
  }

  .footer-grid {
    gap: 40px;
  }

  .footer-brand,
  .footer-column {
    min-width: 100%;
  }

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

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

  .sticky-cta {
    right: 15px;
    bottom: 80px;
  }

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

  .about-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .about-feature {
    width: 100%;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}
