/* Base Styles */
:root {
  --primary: #4a7aff;
  --primary-light: rgba(74, 122, 255, 0.1);
  --primary-dark: #3a67e0;
  --text: #333333;
  --text-light: #666666;
  --background: #ffffff;
  --background-alt: #f8fafc;
  --border: #e2e8f0;
  --border-dark: #cbd5e1;
  --shadow: rgba(0, 0, 0, 0.05);
  --shadow-hover: rgba(0, 0, 0, 0.1);
  --error: #e53e3e;
  --success: #38a169;
  --radius: 0.5rem;
  --transition: 0.3s ease;
  --container-width: 1200px;
  --header-height: 5rem;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--background);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.accent {
  color: var(--primary);
}

.subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.button.primary {
  background-color: var(--primary);
  color: white;
  border: none;
}

.button.primary:hover {
  background-color: var(--primary-dark);
}

.button.secondary {
  background-color: var(--background);
  color: var(--text);
  border: 1px solid var(--border-dark);
}

.button.secondary:hover {
  background-color: var(--background-alt);
}

.button.text {
  background-color: transparent;
  color: var(--primary);
  padding: 0.5rem 1rem;
}

.button.text:hover {
  background-color: var(--primary-light);
}

.button.full-width {
  width: 100%;
  display: block;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 3px var(--shadow);
  transition: all var(--transition);
}

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

.logo {
  font-size: 1.25rem;
  font-weight: 700;
}

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

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-weight: 500;
  color: var(--text-light);
  position: relative;
}

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

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

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

.mobile-menu-button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  transition: all var(--transition);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background);
  z-index: 999;
  display: none;
  padding-top: 6rem;
}

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

.mobile-menu ul {
  text-align: center;
}

.mobile-menu li {
  margin-bottom: 1.5rem;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 500;
}

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

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -20;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

@media (min-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  max-width: 40rem;
}

.hero-image {
  display: none;
}

@media (min-width: 1024px) {
  .hero-image {
    display: block;
    animation: float 6s ease-in-out infinite;
  }
}

.hero-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(74, 122, 255, 0.1));
}

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

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.grid-bg {
  position: absolute;
  inset: 0;
  z-index: -10;
  background-image: linear-gradient(to right, #f0f0f0 1px, transparent 1px),
    linear-gradient(to bottom, #f0f0f0 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 110%);
}

.blob-bg {
  position: absolute;
  right: 0;
  top: 25%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: var(--primary-light);
  filter: blur(100px);
  z-index: -10;
}

/* Section Styles */
section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--text-light);
}

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

.services-list {
  padding: 4rem 0;
  background-color: var(--background-alt);
}

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

.feature-card {
  background: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 4px var(--shadow);
  transition: all var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px var(--shadow-hover);
}

.service-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.feature-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  margin: 0;
}

.feature-card p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-light);
}

.service-detail {
  padding: 4rem 0;
  background-color: var(--background);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .service-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse .service-content {
  direction: ltr;
}

.service-content {
  max-width: 36rem;
}

.service-content h2 {
  margin-bottom: 1rem;
}

.service-content p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.service-row .service-image {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.service-row:hover .service-image img {
  transform: scale(1.05);
}

/* Products Section */
.products {
  background-color: var(--background-alt);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px var(--shadow-hover);
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-content {
  flex: 1;
  padding: 1.5rem;
  background-color: var(--background);
  border-radius: 0 0 var(--radius) var(--radius);
}

.product-content h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

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

.product-content .button {
  float: right;
}

/* About Section */
.about {
  position: relative;
  background-color: var(--background);
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: -10;
  opacity: 0.05;
}

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

.about-content {
  padding-right: 2rem;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

.values {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.value-item {
  padding: 1.5rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

.team {
  padding: 4rem 0;
}

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

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

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

.member-image {
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
}

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

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

.member-role {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem 0;
}

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

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-content {
  width: calc(50% - 30px);
  padding: 1rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content {
    padding-right: 0;
  }

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

  .timeline::before {
    left: 0;
  }

  .timeline-marker {
    left: 0;
  }

  .timeline-content {
    width: calc(100% - 30px);
    margin-left: 30px !important;
  }
}

/* Contact Section */
.contact {
  background-color: var(--primary-light);
}

.contact-form {
  max-width: 30rem;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  transition: border-color var(--transition);
}

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

.form-group.form-checkbox {
  display: flex;
  align-items: flex-start;
}

.form-group.form-checkbox input {
  width: auto;
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.error-message {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.error-message.active {
  display: block;
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--error);
}

/* Footer */
.footer {
  background-color: var(--background-alt);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about {
  max-width: 20rem;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-contact ul {
  color: var(--text-light);
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Page Header */
.page-header {
  padding: 8rem 0 2rem;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  max-width: 48rem;
  margin: 0 auto;
  color: var(--text-light);
}

/* Services List Page */
.services-list {
  padding: 3rem 0;
}

.service-detail {
  padding: 3rem 0;
  background-color: var(--background-alt);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row.reverse {
  direction: ltr;
}

.service-content {
  max-width: 36rem;
}

.service-image {
  height: 20rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-image img,
.service-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  margin-bottom: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a7aff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Products List Page */
.products-list {
  padding: 3rem 0;
}

.packages {
  padding: 3rem 0;
  background-color: var(--background-alt);
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.package-card {
  position: relative;
  padding: 2rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.package-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 16px var(--shadow-hover);
}

.package-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 4px 12px var(--shadow);
}

.package-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
}

.package-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.package-header h3 {
  margin-bottom: 0.25rem;
}

.package-header p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* About Page */
.about-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.team {
  padding: 3rem 0;
  background-color: var(--background-alt);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.team-member {
  text-align: center;
  transition: all var(--transition);
}

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

.member-image {
  width: 16rem;
  height: 16rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 8px var(--shadow);
}

.member-image img,
.member-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-role {
  color: var(--primary);
  margin-bottom: 0;
}

.history {
  padding: 3rem 0;
}

.timeline {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: var(--primary-light);
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -0.5rem;
  top: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--primary);
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-light);
}

/* Contact Page */
.contact-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

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

.form-header p {
  color: var(--text-muted);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
}

.map-section {
  padding: 4rem 0;
}

.map-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }
}

/* Legal Pages */
.content-section {
  padding: 3rem 0;
}

.content-container {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-content {
  background-color: var(--background);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 4px var(--shadow);
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

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

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.last-updated {
  margin-top: 2rem;
  font-style: italic;
  color: var(--text-light);
  font-size: 0.875rem;
}

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

/* Media Queries */
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

  h2 {
    font-size: 2.25rem;
  }

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

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

  .service-row,
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .service-row.reverse {
    direction: rtl;
  }

  .service-row.reverse .service-content {
    direction: ltr;
  }

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

@media (min-width: 1024px) {
  .mobile-menu-button {
    display: none;
  }

  .main-nav {
    display: block;
  }

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

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

/* Print Styles */
@media print {
  .header,
  .footer,
  .mobile-menu,
  .mobile-menu-button {
    display: none;
  }

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

  .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  a {
    text-decoration: underline;
    color: #000;
  }

  .page-header {
    padding: 1rem 0;
  }

  .legal-content {
    box-shadow: none;
    padding: 0;
  }
}

/* Social Media Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  transition: all var(--transition);
}

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

.social-links svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Footer Bottom Links */
.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Feature List */
.feature-list {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.terms-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.terms-article {
  margin-bottom: 3rem;
}

.terms-article:last-child {
  margin-bottom: 0;
}

.terms-article h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.terms-article p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.terms-list {
  list-style: none;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.terms-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.terms-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.terms-list.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terms-list.contact-info li i {
  color: var(--primary);
  width: 1rem;
  text-align: center;
}

.terms-list.contact-info li::before {
  display: none;
}

@media (max-width: 768px) {
  .terms-content {
    padding: 2rem;
    margin: 0 1rem;
  }

  .terms-article {
    margin-bottom: 2rem;
  }
}

