:root {
  --primary-color: #b1d013; /* Yellow-green from logo */
  --secondary-color: #02a8d6; /* Light blue from logo */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a1a;
  --card-bg: #ffffff;
  --shadow: 0 4px 6px rgba(0,0,0,0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
  overflow-x: hidden;
}

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

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

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

/* Header */
header {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo img {
  height: 50px;
  width: auto;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

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

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
}

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

.btn-primary:hover {
  background-color: #9dbb11;
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(177, 208, 19, 0.4);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-info {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-info div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

/* Quick Actions */
.quick-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.quick-action-card {
  background-color: var(--card-bg);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  width: 250px;
  transition: var(--transition);
  border-top: 4px solid var(--secondary-color);
}

.quick-action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  border-top-color: var(--primary-color);
}

.quick-action-card h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.quick-action-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.quick-action-card .icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

/* Categories */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

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

.category-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.category-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: white;
  border-bottom: 3px solid var(--primary-color);
}

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

.category-content h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Trust Section */
.trust-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.trust-section .section-title::after {
  background-color: var(--secondary-color);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.trust-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.trust-features li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-features i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* Contact Strip */
.contact-strip {
  background-color: var(--primary-color);
  padding: 40px 0;
  text-align: center;
}

.contact-strip h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--bg-dark);
}

.contact-strip-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: #aaaaaa;
  padding: 60px 0 20px;
}

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

.footer-col h4 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

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

.footer-col a {
  color: #aaaaaa;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .quick-actions {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
  .quick-action-card {
    width: 100%;
    max-width: 350px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero {
    text-align: center;
    padding: 60px 0;
  }
  .hero-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }
  .contact-strip-actions {
    flex-direction: column;
    align-items: center;
  }
}
