@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --primary-blue: #0b4a8d;
  --primary-green: #00a859;
  --secondary-green: #008747;
  --accent-yellow: #f4b932;
  --text-dark: #222222;
  --text-gray: #666666;
  --bg-light: #f9f6f0;
  /* Slight earthy/warm tone */
  --white: #ffffff;
  --topbar-bg: #111111;
  --footer-bg: #1a1a1a;
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-gray);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-speed);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary-blue);
  transition: left var(--transition-speed) ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

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

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

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

/* Top Bar */
.topbar {
  background-color: var(--topbar-bg);
  color: #aaaaaa;
  font-size: 0.85rem;
  padding: 10px 0;
}

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

.topbar-info {
  display: flex;
  gap: 20px;
}

.topbar-info i {
  color: var(--primary-green);
  margin-right: 5px;
}

.topbar-social {
  display: flex;
  gap: 15px;
}

.topbar-social a:hover {
  color: var(--primary-green);
}

/* Navbar */
.header-area {
  position: relative;
  z-index: 1000;
}

.navbar {
  background-color: var(--white);
  padding: 20px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: padding var(--transition-speed);
}

.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 0;
  animation: slideDown 0.5s ease forwards;
}

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

.logo img {
  height: 60px;
  width: auto;
  transition: height var(--transition-speed);
}

.navbar.sticky .logo img {
  height: 50px;
}

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

.nav-links a {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 5px;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-green);
  transition: width var(--transition-speed);
}

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

.nav-links a.btn {
  color: var(--white);
}

.nav-links a.btn:hover {
  color: var(--white);
}

.nav-links a.btn::after {
  display: none;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  color: var(--primary-blue);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?q=80&w=2071&auto=format&fit=crop') center/cover no-repeat;
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 120px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 74, 141, 0.95) 0%, rgba(0, 168, 89, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-subtitle {
  font-family: 'Roboto', sans-serif;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  color: var(--white);
  font-size: 5rem;
  margin-bottom: 30px;
  line-height: 1.1;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-btns {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-btns .btn-secondary {
  color: var(--white);
  border-color: var(--white);
}

.hero-btns .btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}

/* Page Header (Inner Pages) */
.page-header {
  background: url('https://images.unsplash.com/photo-1627916962363-23a5c10a4e7f?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
  color: var(--white);
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 74, 141, 0.95) 0%, rgba(0, 168, 89, 0.7) 100%);
}

.page-header h1 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 3.5rem;
  margin: 0;
}

/* Sections General */
.section {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--bg-light);
}

.section-subtitle {
  color: var(--primary-green);
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: -100px;
  margin-bottom: 80px;
  position: relative;
  z-index: 10;
}

.feature-box {
  background: var(--white);
  padding: 50px 30px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-bottom: 4px solid transparent;
}

.feature-box:hover {
  transform: translateY(-15px);
  border-bottom-color: var(--primary-green);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 90px;
  height: 90px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 40px;
  color: var(--primary-green);
  transition: all var(--transition-speed);
}

.feature-box:hover .feature-icon {
  background: var(--primary-green);
  color: var(--white);
  transform: scale(1.1);
}

/* About Grid */
.about-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-img {
  flex: 1;
  position: relative;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-green);
  color: var(--white);
  padding: 30px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 168, 89, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  border: 10px solid var(--white);
}

.about-img-badge span {
  display: block;
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}

.about-img-badge p {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

.about-content {
  flex: 1;
}

.about-list {
  list-style: none;
  margin: 25px 0;
}

.about-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.about-list i {
  color: var(--primary-green);
  font-size: 1.2rem;
}

/* Products Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 40px;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
}

.product-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-info {
  padding: 0;
  text-align: left;
  flex: 1;
}

.product-info h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  transition: color var(--transition-speed);
}

.product-card:hover h3 {
  color: var(--primary-green);
}

/* Product Detail Styles */
.product-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.product-detail-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
}

.product-fader {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  display: block;
}

.day-img {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}

.night-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  animation-name: faderAnimation;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes faderAnimation {
  0% { opacity: 0; }
  30% { opacity: 0; }
  45% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 20px;
}

/* Contact Page Styles */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  padding-right: 20px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  background-color: var(--bg-light);
  transition: border-color var(--transition-speed);
}

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

/* Advanced Footer */
footer {
  background-color: var(--footer-bg);
  color: #a0a0a0;
  padding: 0;
}

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

.footer-widget h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-green);
}

.footer-widget p {
  margin-bottom: 20px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--primary-green);
  font-size: 1.2rem;
  margin-top: 3px;
}

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

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

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'FontAwesome';
  color: var(--primary-green);
}

.footer-links a:hover {
  color: var(--primary-green);
  padding-left: 5px;
}

.footer-newsletter input {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 5px;
  margin-bottom: 15px;
}

.footer-bottom {
  background-color: #111;
  padding: 25px 0;
  text-align: center;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform var(--transition-speed);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .logo img {
    height: 50px;
  }

  .about-grid {
    flex-direction: column;
  }

  .about-img-badge {
    right: 0;
    bottom: 0;
  }

  .contact-wrap, .product-detail-wrap {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: none;
  }

  .navbar {
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  }

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

  .hamburger {
    display: block;
  }
}

@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .product-info {
    text-align: center;
  }

  .logo img {
    height: 40px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .section {
    padding: 60px 0;
  }
}