/* Google Fonts Imports */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Color Variables */
:root {
  --primary-color: #1bb0ce;
  --secondary-color: #62baec;
  --accent-color: #fcbf1e;
  --dark-color: #1a252c;
  --light-color: #f7f9fa;
  --bg-color: #ffffff;
  --text-color: #333333;
  --text-light: #777777;
  --font-family: 'Poppins', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top bar socials */
.top-bar {
  background-color: var(--dark-color);
  padding: 8px 0;
  color: #fff;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

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

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  padding: 16px 0;
}

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

.logo img {
  height: 48px;
  object-fit: contain;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav ul li a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-color);
}

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

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

.btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
}

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

.btn-outline:hover {
  background-color: var(--dark-color);
  color: #fff;
}

.btn-filled {
  background-color: var(--dark-color);
  color: #fff;
  border: 2px solid var(--dark-color);
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f7fbfd 0%, #eef7fc 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.search-box {
  position: relative;
  max-width: 480px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
}

.search-box input {
  width: 100%;
  padding: 18px 24px 18px 56px;
  border: none;
  font-family: var(--font-family);
  font-size: 16px;
  outline: none;
}

.search-box i {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 18px;
}

.hero-image {
  display: flex;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  max-width: 80%;
  filter: drop-shadow(0 20px 30px rgba(27, 176, 206, 0.15));
}

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

/* Info Section */
.info-section {
  padding: 60px 0;
  text-align: center;
  background-color: #fff;
}

.info-section h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 16px auto;
  line-height: 1.5;
}

.info-section a.email-link {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
  transition: var(--transition);
}

.info-section a.email-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -4px;
  left: 0;
  transform: scaleX(0.7);
  transition: var(--transition);
}

.info-section a.email-link:hover {
  color: var(--primary-color);
}

.info-section a.email-link:hover::after {
  transform: scaleX(1);
}

/* FAQ Categories Grid */
.faq-categories {
  background-color: var(--light-color);
  padding: 80px 0;
}

.faq-categories .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.category-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 40px 32px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(98, 186, 236, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--secondary-color);
  font-size: 24px;
}

.category-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.faq-links {
  list-style: none;
}

.faq-links li {
  margin-bottom: 12px;
}

.faq-links li a {
  font-size: 15px;
  color: var(--text-color);
  font-weight: 400;
  display: inline-block;
}

.faq-links li a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.faq-links li.more-link {
  margin-top: 20px;
}

.faq-links li.more-link a {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-links li.more-link a:hover {
  color: var(--dark-color);
}

/* Footer Styles */
footer {
  background-color: #f5f7f8;
  color: #555;
  padding: 60px 0 0 0;
  position: relative;
}

.footer-content {
  position: relative;
}

.footer-social-header {
  position: absolute;
  top: -20px;
  right: 0;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-links a {
  width: 32px;
  height: 32px;
  background-color: #0d233a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: var(--transition);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.2fr 1.2fr;
  gap: 40px;
  padding: 30px 0 50px 0;
  align-items: center;
}

.footer-logo img {
  height: 48px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list li a {
  color: #777;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  text-decoration: none;
}

.footer-links-list li a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.footer-links-list li a i {
  color: #1bb0ce;
  font-size: 16px;
}

.footer-download-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  align-items: center;
}

.footer-download-col h4 {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  margin-bottom: 0;
}

.footer-download-col a img {
  height: 52px;
  object-fit: contain;
  transition: var(--transition);
}

.footer-download-col a img:hover {
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom-bar {
  background-color: #fff;
  border-top: 1px solid #eef1f3;
  padding: 24px 0;
}

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

.footer-bottom-bar p {
  font-size: 14px;
  color: #888;
  margin-bottom: 0;
}

.footer-bottom-bar .tagline {
  color: #555;
}

.scroll-to-top {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
}

.scroll-to-top:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-social-col {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  header nav {
    display: none;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .search-box {
    margin: 0 auto;
  }
  
  .hero-image {
    order: -1;
  }
  
  .faq-categories .grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Home & Products Features Section */
.features-section {
  padding: 80px 0;
  background-color: #fff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background-color: var(--light-color);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.01);
}

.feature-card:hover {
  background-color: #fff;
  transform: translateY(-8px);
  box-shadow: var(--box-shadow);
  border-color: rgba(27, 176, 206, 0.1);
}

.feature-icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Story Section */
.story-section {
  padding: 80px 0;
  background-color: #fff;
}

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

.story-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 24px;
}

.story-content p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
}

.story-image img {
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Contact Section & Form */
.contact-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}

.contact-info {
  background-color: var(--dark-color);
  color: #fff;
  padding: 48px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 18px;
}

.info-text h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-text p {
  font-size: 16px;
  margin-bottom: 0;
  color: #fff;
}

.contact-form-container {
  background-color: #fff;
  padding: 48px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form-container h3 {
  font-size: 24px;
  margin-bottom: 28px;
  color: var(--dark-color);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(27, 176, 206, 0.15);
}

/* Policy Sections */
.policy-section {
  padding: 80px 0;
  background-color: #fff;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 24px;
  text-align: center;
}

.policy-meta {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 48px;
}

.policy-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 40px 0 16px 0;
}

.policy-body p {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}

.policy-table th,
.policy-table td {
  border: 1px solid #e1e8ed;
  padding: 16px;
  text-align: left;
  font-size: 15px;
}

.policy-table th {
  background-color: var(--light-color);
  color: var(--dark-color);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-info,
  .contact-form-container {
    padding: 32px 24px;
  }
}

/* Support Hero Styles */
.support-hero {
  margin-top: 50px; /* space to clear sticky/static header */
  margin-bottom: 40px;
  padding: 0 15px;
}

.support-hero-container {
  max-width: 100%;
}

.support-hero-banner {
  background-color: #03287A;
  border-radius: 30px;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 40px;
  box-shadow: 0 15px 40px rgba(3, 40, 122, 0.15);
}

.support-hero-content h1 {
  font-size: 53px;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: -1.4px;
  color: #FFFFFF;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.support-search-box {
  position: relative;
  margin-top: 24px;
  max-width: 440px;
}

.support-search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 14px;
}

.support-search-box input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  outline: none;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.support-search-box input::placeholder {
  color: #aaa;
}

.support-hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.support-hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
}

/* Login Link inside Header */
.login-link {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-right: 24px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.login-link:hover {
  color: var(--primary-color);
}

/* Support Info Section Styles */
.support-info-section {
  padding: 40px 0;
  text-align: center;
  background-color: #fff;
}

.support-info-text {
  color: #62baec; /* cyan/light blue text from image */
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.2px;
}

.support-email-link {
  font-size: 32px;
  font-weight: 800;
  color: #03287a; /* dark blue email link from image */
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.5px;
}

.support-email-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Responsive Support Hero */
@media (max-width: 768px) {
  .support-hero {
    margin-top: 100px;
  }
  .support-hero-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
    gap: 30px;
  }
  .support-hero-content h1 {
    font-size: 36px;
  }
  .support-search-box {
    margin: 20px auto 0 auto;
  }
  .support-hero-image {
    justify-content: center;
  }
  .support-hero-image img {
    max-height: 180px;
  }
  .support-info-text {
    font-size: 15px;
    padding: 0 15px;
  }
  .support-email-link {
    font-size: 24px;
  }
}

/* Header button overrides to match screenshot design */
.header-buttons .btn-outline {
  border: 1px solid #ccc;
  color: #333;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
  padding: 8px 18px;
  border-radius: 4px;
}

.header-buttons .btn-outline:hover {
  background-color: #f5f5f5;
  color: #333;
}

