/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary-color: #007eff;
  --secondary-color: #4caf50;
  --accent-color: #2196f3;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  /* Typography */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 80px 0;
  --border-radius: 8px;
  --border-radius-large: 16px;

  /* Animations */
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: var(--font-weight-normal);
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-medium);
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-size: 16px;
  line-height: 1.5;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #4caf50 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
  color: var(--white);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #45a049 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  color: var(--white);
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  padding: 1rem 0;
}

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

.nav-brand .logo {
  height: 40px;
  width: auto;
}

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

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: var(--text-dark);
  font-weight: var(--font-weight-medium);
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--background-light) 0%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
}

/* Section Styles */
section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  text-align: left;
}

.service-card li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* About Section */
.about {
  background: var(--background-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat p {
  color: var(--text-light);
  margin: 0;
}

.advantages-grid {
  display: grid;
  gap: 1.5rem;
}

.advantage-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advantage-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.advantage-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.advantage-card p {
  margin: 0;
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
  background: var(--white);
}

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

.testimonial-card {
  background: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  position: relative;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
}

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

.testimonial-rating {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

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

/* Blog Section */
.blog {
  background: var(--background-light);
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-date,
.blog-category {
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-category {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: var(--font-weight-medium);
}

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

.blog-content h3 a {
  color: var(--text-dark);
}

.blog-content h3 a:hover {
  color: var(--primary-color);
}

.read-more {
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more::after {
  content: "→";
  transition: var(--transition);
}

.read-more:hover::after {
  transform: translateX(4px);
}

/* Contact Section */
.contact {
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.contact-item h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-item p {
  margin: 0;
}

.contact-item a {
  color: var(--primary-color);
}

/* Forms */
.contact-form,
.newsletter-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-medium);
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-400);
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: bold;
  font-size: 12px;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: var(--gray-400);
}

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

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

.footer-section ul li a {
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

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

.newsletter-form .form-group input {
  background: var(--gray-800);
  border-color: var(--gray-600);
  color: var(--white);
}

.newsletter-form .form-group input::placeholder {
  color: var(--gray-500);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1.5rem 0;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-text h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
}

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

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

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: var(--white);
  border-radius: var(--border-radius-large);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-300);
}

.modal-header h3 {
  margin: 0;
  color: var(--text-dark);
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-600);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  padding: 1.5rem;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category div {
  flex: 1;
}

.cookie-category h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.cookie-category p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-left: 1rem;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-400);
  transition: var(--transition);
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--white);
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

input:disabled + .slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-300);
  text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

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

  .nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

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

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

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

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .cookie-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 200px;
  }

  .service-card,
  .blog-card,
  .testimonial-card {
    margin: 0 10px;
  }
}

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

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

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
  animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
  animation: fadeInRight 0.6s ease-out;
}

/* ===================
   PAGE-SPECIFIC STYLES
   =================== */

/* Page Header - Common for all pages */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  padding: 120px 0 80px;
  margin-top: 80px;
  color: var(--white);
  text-align: center;
}

.page-header-content h1 {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  color: var(--white);
}

.page-header-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* ===================
   ABOUT PAGE STYLES
   =================== */

/* Company Story Section */
.company-story {
  padding: var(--section-padding);
  background: var(--white);
}

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

.story-text h2 {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.story-image {
  text-align: center;
}

.story-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-large);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.mission-vision {
  padding: var(--section-padding);
  background: var(--background-light);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.mission-card,
.vision-card,
.values-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-large);
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 122, 0, 0.1);
  border-radius: 50%;
}

.card-icon img {
  width: 50px;
  height: 50px;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.mission-card p,
.vision-card p,
.values-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Team Section */
.team {
  padding: var(--section-padding);
  background: var(--white);
}

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

.section-header h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

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

.team-member {
  background: var(--background-light);
  padding: 30px;
  border-radius: var(--border-radius-large);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.member-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
}

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

.member-info h4 {
  color: var(--text-dark);
  margin-bottom: 5px;
}

.member-info span {
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  display: block;
  margin-bottom: 15px;
}

.member-info p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===================
   SERVICES PAGE STYLES
   =================== */

/* Main Services Section */
.main-services {
  padding: var(--section-padding);
  background: var(--white);
}

.services-detailed-grid {
  display: grid;
  gap: 40px;
  margin-top: 60px;
}

.service-detailed-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius-large);
  padding: 40px;
  transition: var(--transition);
}

.service-detailed-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.1);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.service-icon img {
  width: 100%;
  height: 100%;
}

.service-title h3 {
  color: var(--text-dark);
  margin-bottom: 5px;
}

.price-range {
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  font-size: 1.1rem;
}

.service-detailed-card > p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--text-light);
}

.service-features {
  margin-bottom: 30px;
}

.service-features h4 {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-light);
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.service-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-tag {
  background: var(--background-light);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
  border: 1px solid var(--gray-300);
}

/* Additional Services Section */
.additional-services {
  padding: var(--section-padding);
  background: var(--background-light);
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.additional-service-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.additional-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.additional-service-card .service-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
}

.additional-service-card h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.additional-service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===================
   THANKS PAGE STYLES
   =================== */

/* Thank You Section */
.thank-you {
  padding: 80px 0;
  background: var(--white);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-icon {
  margin-bottom: 30px;
}

.thank-you-content h1 {
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.thank-you-message {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 50px;
}

/* Next Steps Section */
.next-steps {
  background: var(--background-light);
  padding: 40px;
  border-radius: var(--border-radius-large);
  margin-bottom: 40px;
}

.next-steps h3 {
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step {
  text-align: center;
  padding: 20px;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(255, 122, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

/* Contact Info Section */
.contact-info {
  background: var(--gray-100);
  padding: 30px;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
}

.contact-info h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
  text-align: center;
}

.contact-info > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 20px;
}

.urgent-contact {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

/* .contact-item:hover {
  background: var(--primary-color);
  color: var(--white);
} */

.contact-item svg {
  width: 20px;
  height: 20px;
}

/* Thank You Actions */
.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Additional Information Section */
.additional-info {
  padding: 60px 0;
  background: var(--background-light);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.info-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
  color: var(--text-dark);
  margin-bottom: 15px;
}

.info-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===================
   BLOG ARTICLE STYLES
   =================== */

/* Article Header */
.article-header {
  padding: 120px 0 60px;
  margin-top: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.back-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  padding: 8px 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.back-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.article-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.category {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: var(--font-weight-medium);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.article-header h1 {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 30px;
  color: var(--white);
  line-height: 1.2;
}

.article-info {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: var(--font-weight-semibold);
  color: var(--white);
}

.author-title {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.article-date,
.reading-time {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-date::before {
  content: "📅";
  font-size: 0.8rem;
}

.reading-time::before {
  content: "⏱️";
  font-size: 0.8rem;
}

/* Article Featured Image */
.article-featured-image {
  padding: 60px 0;
  background: var(--background-light);
}

.article-featured-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--border-radius-large);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: block;
}

/* Article Content */
.article-content {
  padding: 80px 0;
  background: var(--white);
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-intro {
  margin-bottom: 50px;
}

.article-intro .lead {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0;
}

.article-body h2 {
  color: var(--text-dark);
  font-size: 2rem;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary-color);
}

.article-body h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.article-body h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.article-body h4 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 10px;
}

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

.article-body ul,
.article-body ol {
  margin-bottom: 20px;
  padding-left: 0;
  list-style: none;
}

.article-body li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-light);
  line-height: 1.7;
}

.article-body ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 0.8rem;
  top: 2px;
}

.article-body ol {
  counter-reset: list-counter;
}

.article-body ol li {
  counter-increment: list-counter;
}

.article-body ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  color: var(--white);
  background: var(--primary-color);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: var(--font-weight-semibold);
  top: 0;
}

.article-body strong {
  color: var(--text-dark);
  font-weight: var(--font-weight-semibold);
}

/* Special Content Boxes */
.info-box,
.recipe-box,
.statistics-box,
.checklist,
.tip-box {
  background: var(--background-light);
  padding: 30px;
  border-radius: var(--border-radius-large);
  margin: 40px 0;
  border-left: 5px solid var(--secondary-color);
}

.info-box {
  border-left-color: var(--accent-color);
  background: rgba(33, 150, 243, 0.05);
}

.recipe-box {
  border-left-color: var(--primary-color);
  background: rgba(255, 122, 0, 0.05);
}

.statistics-box {
  border-left-color: var(--secondary-color);
  background: rgba(76, 175, 80, 0.05);
}

.checklist {
  border-left-color: var(--primary-color);
  background: rgba(255, 122, 0, 0.03);
}

.tip-box {
  border-left-color: #ffc107;
  background: rgba(255, 193, 7, 0.05);
}

.info-box h3,
.recipe-box h3,
.statistics-box h3,
.checklist h3,
.tip-box h3,
.info-box h4,
.recipe-box h4,
.statistics-box h4,
.checklist h4,
.tip-box h4 {
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.info-box p,
.recipe-box p,
.statistics-box p,
.checklist p,
.tip-box p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.info-box ul,
.recipe-box ul,
.statistics-box ul,
.checklist ul,
.tip-box ul {
  margin-bottom: 0;
}

/* Article Navigation */
.article-navigation {
  padding: 60px 0;
  background: var(--background-light);
  border-top: 2px solid var(--gray-200);
}

.article-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.prev-article,
.next-article {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.prev-article:hover,
.next-article:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.next-article {
  flex-direction: row-reverse;
  text-align: right;
}

.nav-arrow {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
}

.nav-article-info h4 {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 5px;
}

.nav-article-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.back-to-blog {
  text-align: center;
}

.back-to-blog a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  padding: 15px 30px;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.back-to-blog a:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Article Share */
.article-share {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.share-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.share-content h3 {
  color: var(--text-dark);
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: var(--transition);
}

.share-btn.facebook {
  background: #1877f2;
  color: var(--white);
}

.share-btn.twitter {
  background: #1da1f2;
  color: var(--white);
}

.share-btn.linkedin {
  background: #0a66c2;
  color: var(--white);
}

.share-btn.email {
  background: var(--gray-600);
  color: var(--white);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Related Articles */
.related-articles {
  padding: 80px 0;
  /* background: var(--background-light); */
}

.related-articles h2 {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.related-article-card {
  background: var(--white);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.related-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-article-content {
  padding: 25px;
}

.related-article-categories {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.related-article-categories .category {
  background: var(--background-light);
  color: var(--text-dark);
  padding: 4px 8px;
  font-size: 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--gray-300);
}

.related-article-content h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.related-article-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.related-article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===================
   RESPONSIVE STYLES FOR PAGES
   =================== */

@media (max-width: 768px) {
  .page-header {
    padding: 100px 0 60px;
  }

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

  .page-header-content p {
    font-size: 1rem;
  }

  /* About Page Mobile */
  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .mission-card,
  .vision-card,
  .values-card {
    padding: 30px;
  }

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

  /* Services Page Mobile */
  .service-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .service-detailed-card {
    padding: 30px;
  }

  .additional-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Thanks Page Mobile */
  .thank-you-content h1 {
    font-size: 2rem;
  }

  .thank-you-message {
    font-size: 1.1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .urgent-contact {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Blog Articles Mobile */
  .article-header {
    padding: 100px 0 50px;
  }

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

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .article-categories {
    order: -1;
  }

  .article-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .article-featured-image {
    padding: 40px 0;
  }

  .article-content {
    padding: 60px 0;
  }

  .article-body {
    font-size: 1rem;
    padding: 0 10px;
  }

  .article-intro .lead {
    font-size: 1.2rem;
  }

  .article-body h2 {
    font-size: 1.7rem;
    margin-top: 40px;
  }

  .article-body h3 {
    font-size: 1.3rem;
    margin-top: 30px;
  }

  .article-body h4 {
    font-size: 1.1rem;
  }

  .info-box,
  .recipe-box,
  .statistics-box,
  .checklist,
  .tip-box {
    padding: 20px;
    margin: 30px 0;
  }

  .article-nav-content {
    flex-direction: column;
    gap: 20px;
  }

  .prev-article,
  .next-article {
    width: 100%;
  }

  .next-article {
    flex-direction: row;
    text-align: left;
  }

  .share-buttons {
    flex-direction: column;
    align-items: center;
  }

  .share-btn {
    width: 200px;
    justify-content: center;
  }

  .related-articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .related-articles {
    padding: 60px 0;
  }
}

/* Print Styles */
@media print {
  .header,
  .cookie-banner,
  .modal {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }

  .service-card,
  .blog-card,
  .testimonial-card,
  .service-detailed-card,
  .team-member,
  .step {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid var(--gray-300);
  }

  .page-header {
    background: none !important;
    color: var(--text-dark) !important;
  }

  .page-header-content h1,
  .page-header-content p {
    color: var(--text-dark) !important;
  }
}

.related-articles,
.stats-grid,
.reasons-grid,
.cert-badges,
.process-steps,
.pricing-table{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 10px;
}
@media(max-width: 992px){
.related-articles,
  .stats-grid,
  .reasons-grid,
  .cert-badges,
  .process-steps,
  .pricing-table {
    flex-direction: column; }
}
