:root {
  --primary-color: #1a472a;
  --accent-color: #d4a574;
  --accent-dark: #8b5a3c;
  --text-dark: #1a1a1a;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success: #10b981;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

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

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  color: white;
  padding: 20px;
  box-shadow: var(--shadow);
  z-index: 1000;
  animation: slideUp 0.5s ease-out;
  transform: translateY(0);
}

.cookie-banner.hidden {
  display: none;
}

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

.cookie-content p {
  flex: 1;
  font-size: 0.95rem;
}

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

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ========== BUTTONS ========== */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: #0f2b1c;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* ========== NAVBAR ========== */
.navbar {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
}

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

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:not(.btn):hover {
  color: var(--primary-color);
}

.nav-link:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:not(.btn):hover::after {
  width: 100%;
}

/* Fixed Contact Us button text to be white and visible on all screens */
.nav-link.btn.btn-primary {
  color: white;
  font-weight: 600;
}

.nav-link.btn.btn-primary:hover {
  background-color: #0f2b1c;
  color: white;
}

/* Added hamburger menu button styles for mobile only */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

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

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

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

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

@media (max-width: 768px) {
  /* Fixed mobile navigation - nav-links now hidden by default and shown only when menu is active */
  .navbar-content {
    position: relative;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    display: none;
    width: 100%;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 99;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links .nav-link {
    padding: 12px 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

  .nav-links .nav-link:hover {
    background-color: var(--bg-light);
  }

  .nav-links .btn {
    text-align: center;
    padding: 12px 20px;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d6a42 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========== SERVICES SECTION ========== */
.services {
  padding: 40px 0;
  background-color: var(--bg-light);
}

.section-title {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-weight: 800;
}

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

.service-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent-color);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

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

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

/* ========== PLATFORMS SECTION ========== */
.platforms {
  padding: 40px 0;
  background-color: white;
}

.platforms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.platform-card {
  background: linear-gradient(135deg, var(--primary-color), #2d6a42);
  color: white;
  padding: 50px 40px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
}

.platform-card:nth-child(1) {
  animation-delay: 0.1s;
}
.platform-card:nth-child(2) {
  animation-delay: 0.2s;
}
.platform-card:nth-child(3) {
  animation-delay: 0.3s;
}

.platform-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow);
}

.platform-logo {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.platform-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.platform-card p {
  opacity: 0.95;
  line-height: 1.8;
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: 40px 0;
  background-color: var(--bg-light);
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
}

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

.about-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.features-list {
  list-style: none;
}

.features-list li {
  padding: 15px 0;
  padding-left: 35px;
  position: relative;
  color: var(--text-dark);
  font-weight: 500;
}

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

/* ========== CONTACT SECTION ========== */
.contact {
  padding: 40px 0;
  background-color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 50px;
}

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

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

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

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

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

.contact-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.contact-form-wrapper {
  animation: fadeInUp 0.8s ease-out;
  margin-top: 20px;
}

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

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

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

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

/* ========== FOOTER ========== */
.footer {
  padding: 30px 0 15px;
  background-color: var(--primary-color);
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 10px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
  padding: 40px 0;
  background-color: white;
}

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

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}
.testimonial-card:nth-child(4) {
  animation-delay: 0.1s;
}
.testimonial-card:nth-child(5) {
  animation-delay: 0.2s;
}
.testimonial-card:nth-child(6) {
  animation-delay: 0.3s;
}

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

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

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

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

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

.author-info strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 3px;
}

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

/* ========== LEGAL & TRUST SECTION ========== */
.legal-section {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.legal-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 60px;
}

.trust-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
}

.trust-card:nth-child(1) {
  animation-delay: 0.1s;
}
.trust-card:nth-child(2) {
  animation-delay: 0.2s;
}
.trust-card:nth-child(3) {
  animation-delay: 0.3s;
}

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

.trust-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.trust-card strong {
  color: var(--text-dark);
}

.trust-card a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.trust-card a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.trust-note {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-style: italic;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.compliance-info {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 2px solid var(--primary-color);
  animation: fadeInUp 0.8s ease-out;
}

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

.compliance-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.compliance-list li {
  padding: 15px;
  background: var(--bg-light);
  border-radius: 8px;
  color: var(--text-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.compliance-list li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}
/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-content p {
    font-size: 0.9rem;
  }

  .cookie-buttons {
    width: 100%;
    gap: 10px;
  }

  .cookie-buttons .btn {
    flex: 1;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  /* Enhanced mobile styling for extra small screens */
  .navbar-content {
    padding: 12px 0;
  }

  .logo {
    gap: 8px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }

  .service-card {
    padding: 20px;
  }

  .service-icon {
    font-size: 2.5rem;
  }

  .platform-card {
    padding: 30px 20px;
  }

  .platform-logo {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }

  .platform-card h3 {
    font-size: 1.3rem;
  }

  .platform-card p {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .trust-card {
    padding: 18px;
  }

  .trust-card h3 {
    font-size: 1.1rem;
  }

  .compliance-info {
    padding: 20px;
  }

  .compliance-list li {
    padding: 12px;
    font-size: 0.9rem;
  }

  .contact-info h3 {
    font-size: 1.2rem;
  }

  .contact-item {
    gap: 15px;
  }

  .footer-section h4 {
    font-size: 1rem;
  }

  .footer-section p {
    font-size: 0.9rem;
  }
}
