:root {
  --primary-color: #0f172a;
  --secondary-color: #1e293b;
  --accent-color: #3b82f6;
  --text-color: #334155;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}
body a { text-decoration:none; outline:none; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Styles */
.main-header {
  background: linear-gradient(90deg, #0f172a 80%, #3b82f6 120%);
  box-shadow: 0 2px 12px 0 rgba(25, 45, 100, 0.08);
  border-bottom: 1.5px solid rgba(59, 130, 246, 0.12);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  height: var(--header-height);
}

.main-header.hide {
  transform: translateY(-100%);
}

.navbar {
  padding: 0;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo { padding-top:5px }
.logo img {
  max-height: 45px;
  transition: transform 0.3s ease;
}

.chatbot-avatar {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}

.chatbot-avatar img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
  border: 2px solid #3b82f6;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.98);
  padding: 1.5rem 0;
  box-shadow: var(--shadow);
  z-index: 1001;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0;
}
.nav-links a.active{
  color: var(--accent-color);
}
.nav-links a:hover {
  opacity: 0.8;
}
.nav-links a:hover::after {
  width: 100%;
}

.cta-button {
  background: var(--accent-color);
  padding: 0.75rem 1.5rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
}

.cta-button:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  padding: 60px 0 0 0;
  background: var(--gradient);
  color: var(--white);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(to right, #fff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-weight: 500;
}

.hero-description {
  font-size: 1.25rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.hero-graphic {
  position: relative;
  width: 340px;
  height: 340px;
  min-width: 220px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hero-graphic::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    rgba(59, 130, 246, 0.18) 0%,
    rgba(15, 23, 42, 0) 70%
  );
  z-index: 0;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-circle,
.floating-square,
.floating-triangle {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.floating-circle {
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.floating-square {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  top: 40%;
  right: 20%;
  animation-delay: 2s;
}

.floating-triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid rgba(255, 255, 255, 0.2);
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

.ai-brain {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.brain-path {
  fill: none;
  stroke: var(--accent-color);
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 3s ease forwards;
}

.brain-node {
  fill: var(--accent-color);
  animation: pulse 2s ease-in-out infinite;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.primary-button,
.secondary-button {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-button {
  background: var(--accent-color);
  color: var(--white);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Features Section */
.features-section {
  background: var(--light-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.75rem;
  color: var(--primary-color);
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  justify-items: center;
}

.feature-card {
  background: linear-gradient(135deg, #fff 80%, #e8f0fe 100%);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(59, 130, 246, 0.08),
    0 1.5px 6px 0 rgba(15, 23, 42, 0.06);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1.5px solid #e5eaf2;
  position: relative;
  width: 100%;
  max-width: 340px;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 36px 0 rgba(59, 130, 246, 0.13),
    0 2px 8px 0 rgba(15, 23, 42, 0.1);
  border-color: #3b82f6;
}

.feature-icon {
  margin-bottom: 1.2rem;

  /* background: linear-gradient(135deg, #e0e7ff 60%, #fff 100%); */
  border-radius: 12px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 2px 8px 0 rgba(59,130,246,0.08); */
  margin-left: auto;
  margin-right: auto;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  color: var(--primary-color);
  font-weight: 600;
}

.feature-card p {
  color: #334155;
  font-size: 1.05rem;
  opacity: 0.92;
}

@media (max-width: 900px) {
  .features-section h2 {
    text-align: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Demo Section */
.demo-section {
  padding: 100px 0;
  background: var(--white);
}

.demo-box {
  background: var(--white);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.demo-box h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2.75rem;
  color: var(--primary-color);
  font-weight: 700;
}

.demo-description {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 1.25rem;
  color: var(--text-color);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.demo-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature-column h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
}

.feature-list li:before {
  content: "→";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Capabilities Section */
.capabilities-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.capabilities-section h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.75rem;
  color: var(--primary-color);
  font-weight: 700;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.capability-card {
  background: var(--white);
  padding: 2rem 1.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.capability-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.capability-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}
.capability-card p { line-height:150%; font-size:15px }
/* Footer */
.main-footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo img {
  height: 45px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo img:hover {
  opacity: 1;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-links a:hover::after {
  width: 100%;
}

.copyright {
  opacity: 0.7;
  font-size: 1rem;
  text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
  .header-flex {
    flex-direction: row;
    height: var(--header-height);
  }
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader:after {
  content: "";
  width: 50px;
  height: 50px;
  border: 4px solid var(--light-bg);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Technology Section */
.technology-section {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  margin-top: 1.5rem;
}

.tech-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.tech-card:hover::before {
  transform: scaleX(1);
}

.tech-visualization {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Contact Section Styles - Hero Gradient & Professional Layout */
.contact-section {
  padding: 100px 0 100px 0;
  background: linear-gradient(90deg, #0f172a 80%, #3b82f6 120%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
.contact-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.13);
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  /*overflow: hidden;*/
  z-index: 2;
}
.contact-card:after {
    position: absolute;
    content: "";
    right: -15px;
    bottom: -15px;
    background: rgba(255, 255, 255, 0.2);
    top: 15px;
    left: 15px;
    z-index: -1;
}
.contact-section .contact-details { margin:0; padding:0; list-style:none; }
.contact-section .contact-details li { margin:0; padding:0; display:flex; flex-wrap:wrap; align-items:center; justify-content:center; }
.contact-section .contact-details li + li { margin-top:40px }
.contact-section .contact-details li .w1 { width:75px; height:75px; background:#ecf3ff; display:flex; align-items:center; justify-content:center; border-radius:10px }
.contact-section .contact-details li .w1 i { color:#3b82f6 }
.contact-section .contact-details li .w2 { width:calc(100% - 90px); padding:0 0 0 15px }
.contact-section .contact-details li .info-label { font-size:18px; font-weight: 600; color:#0f172a; margin:0 0 5px 0; line-height:100% }
.contact-section .contact-details li .info-value { font-size:16px; margin:0; }
.contact-section .contact-details li .info-value, .contact-section .contact-details li .info-value a { color:#727e91; font-weight:400; line-height:150% }
.contact-section .contact-details li .info-value a { text-decoration:none; transition:all 0.5s ease-in-out; }
.contact-section .contact-details li .info-value a:hover { color:#3b82f6 }
.contact-form-col,
.contact-info-col {
  flex: 1 1 350px;
  min-width: 320px;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-col {
  border-right: 1.5px solid #f1f5f9;
  background: #f8fafc;
}
.contact-info-col {
  background: #fff;
}
.contact-form-col h2 {
  font-size: 2rem;
  color: #0f172a; line-height: 100%;
  margin-bottom: 7px;
  font-weight: 700;
}
.contact-form-col p {
  color: #727e91;
  margin-bottom: 30px;
  font-size: 1rem; line-height: 140%;
}
.contact-form {
  width: 100%;
}
.form-group {
  margin-bottom: 15px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  color: #1e293b;
  transition: border-color 0.4s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #c5c5c5;
  outline: none;
}
.form-group textarea {
  resize: none;
  min-height: 110px;
}
.submit-button {
  /*background: linear-gradient(90deg, #3b82f6 60%, #0f172a 100%);*/
  color: #fff;
  border: none;
  padding: 18px 0;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 100%;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
  letter-spacing: 0;
  margin-top: 8px;
  background: var(--accent-color);
}
.submit-button:hover {
  background: #2563eb;
  transform: translateY(-2px);
  /*background: linear-gradient(90deg, #0f172a 60%, #3b82f6 100%);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.13);*/
}
.conact-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
/* .info-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(15,23,42,0.13);
    padding: 36px 32px;
} */
.info-section {
  margin-bottom: 24px;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.info-icon {
  color: #0f172a;
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.info-label {
  font-weight: 700;
  color: #3b82f6;
  font-size: 1.08rem;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-label.country {
  font-size: 1.08rem;
  color: #3b82f6;
  font-weight: 700;
}
.flag {
  font-size: 1.15em;
  margin-right: 4px;
}
.info-value {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 2px;
  line-height: 1.5;
}
.info-desc {
  color: #64748b;
  font-size: 0.97rem;
  margin-bottom: 2px;
}
.info-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 18px 0 24px 0;
}
@media (max-width: 900px) {
  .info-row {
    gap: 10px;
    margin-bottom: 18px;
  }
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

main {
  padding-top: var(--header-height);
}

.ai-hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.hero-text {
  text-align: left;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  margin-left: 0;
}
.hero-text .ai-badge {
  align-self: flex-start;
}
.hero-cta {
  justify-content: flex-start;
}
@media (max-width: 1100px) {
  .ai-hero-flex {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
  }
  .hero-text {
    text-align: center;
    align-items: center;
    margin-left: 0;
  }
  .hero-text .ai-badge {
    align-self: center;
  }
  .hero-cta {
    justify-content: center;
  }
}
.ai-badge {
  display: inline-block;
  background: #3b82f6;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 0.4em 1.2em;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}
.tech-icon {
  margin-bottom: 15px;
}
.ai-highlight {
  color: #3b82f6;
  font-weight: 600;
}
.ai-hero-graphic {
  position: relative;
  width: 340px;
  height: 340px;
  min-width: 220px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.ai-hero-graphic::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    rgba(59, 130, 246, 0.18) 0%,
    rgba(15, 23, 42, 0) 70%
  );
  z-index: 0;
}
.ai-bot-mascot {
  width: 100%;
  height: 100%;
  max-width: 320px;
  max-height: 320px;
  border-radius: 0;
  box-shadow: none;
  background: none;
  object-fit: contain;
  z-index: 1;
  display: block;
  position: relative;
}
.ai-bubble {
  position: absolute;
  background: #fff;
  color: #1e293b;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 24px;
  padding: 0.7em 1.3em;
  box-shadow: 0 4px 24px 0 rgba(59, 130, 246, 0.1);
  opacity: 0.95;
  animation: ai-bubble-fade 2.5s infinite alternate;
  z-index: 2;
  white-space: nowrap;
}
.hero-wave {
  bottom: -8px;
  position: relative;
}
.ai-bubble-1 {
  left: -60px;
  top: 30px;
  animation-delay: 0s;
}
.ai-bubble-2 {
  right: -80px;
  bottom: 40px;
  animation-delay: 1.2s;
}
@keyframes ai-bubble-fade {
  0% {
    opacity: 0.7;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(-10px);
  }
}
@media (max-width: 1100px) {
  .ai-hero-graphic {
    width: 200px;
    height: 200px;
    min-width: 140px;
    min-height: 140px;
  }
  .ai-bot-mascot {
    max-width: 200px;
    max-height: 200px;
  }
  .ai-bubble-1 {
    left: -40px;
    top: 10px;
  }
  .ai-bubble-2 {
    right: -50px;
    bottom: 10px;
  }
}
@media (max-width: 768px) {
  .ai-hero-graphic {
    width: 120px;
    height: 120px;
    min-width: 80px;
    min-height: 80px;
  }
  .ai-bot-mascot {
    max-width: 120px;
    max-height: 120px;
  }
  .ai-bubble {
    font-size: 0.95rem;
    padding: 0.5em 1em;
  }
  .ai-bubble-1 {
    left: -30px;
    top: 0px;
  }
  .ai-bubble-2 {
    right: -30px;
    bottom: 0px;
  }
}
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 1.5rem;
  display: none;
  z-index: 9999;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 90%;
  width: 400px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideUp 0.5s ease-out;
}
@keyframes slideUp {
  from {
      transform: translate(-50%, 100%);
      opacity: 0;
  }
  to {
      transform: translate(-50%, 0);
      opacity: 1;
  }
}
.cookie-consent p {
  margin: 0 0 1.2rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}
.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.cookie-btn {
  padding: 0.7rem 1.8rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.accept-btn {
  background: #2275e4;
  color: white;
}
.accept-btn:hover {
  background: #1a5cb3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 117, 228, 0.2);
}
.decline-btn {
  background: #f5f5f5;
  color: #666;
  border: 1px solid #ddd;
}
.decline-btn:hover {
  background: #e9e9e9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  .cookie-consent {
      bottom: 10px;
      padding: 1.2rem;
      width: 85%;
  }
  .cookie-buttons {
      flex-direction: column;
      gap: 0.8rem;
  }
  .cookie-btn {
      width: 100%;
  }
}

/* Policy Pages */
.policy-content {
    padding: 100px 0;
    background: var(--light-bg);
    min-height: calc(100vh - 300px);
}

.policy-content h1 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin: 1.5rem 0;
    /*text-align: center;*/
}

.policy-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    /*margin-bottom: 2rem;*/
    box-shadow: var(--shadow);
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.policy-section p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section ul li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-section a {
    color: var(--accent-color);
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 60px 0;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 1.5rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

/* --- Enhanced Professional Footer --- */
.footer-sections {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem 0 1.5rem 0;
    flex-wrap: wrap;
}
/*.footer-section {
    flex: 1 1 200px;
    min-width: 200px;
}*/
.footer-sections .footer-section.w1 { width:50%; flex:0 0 50% }
.footer-sections .footer-section.w2, .footer-sections .footer-section.w3 { width:20%; flex:0 0 20% }
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.footer-logo-img {
    height: 48px;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}
.footer-desc {
    color: var(--white);
    opacity: 0.8;
    font-size: 1.08rem;
    margin: 0;
    font-weight: 400;
}
.footer-heading {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-links-list li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    font-size: 1rem;
    transition: opacity 0.2s, text-decoration 0.2s;
    position: relative;
}
.footer-links-list li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.1rem 0 0.2rem 0;
    font-size: 1rem;
    color: var(--white);
    background: none;
    margin-top: 0.5rem;
}
.footer-bottom-left {
    text-align: left;
    opacity: 0.7;
}
.footer-bottom-right {
    text-align: right;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

@media (max-width: 900px) {
    .footer-sections {
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem;
        padding: 2rem 0 1rem 0;
    }
    .footer-section {
        min-width: 0;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .footer-bottom-left, .footer-bottom-right {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 1279px) {
  .contact-section .contact-card { max-width:calc(95% - 30px) }
}    
@media (max-width: 767px) {
  .contact-section { padding:30px 0 }
  .contact-form-col, .contact-info-col { padding:30px }
  .contact-form-col h2 { font-size:1.7rem }
  .g-recaptcha { transform:scale(0.85); -webkit-transform:scale(0.85); transform-origin:left center; -webkit-transform-origin:left center; }
}