:root {
  --green: #224E59;
  --green-light: #2A5E6C;
  --green-dark: #143842;
  --accent: #7BB7C7;
  --brown: #b68b2d;
  --gold-light: #d8b65c;
  --white: #ffffff;
  --cream: #f4f6f3;
  --soft-bg: #eef3f1;
  --text: #143842;

  --shadow: 0 10px 35px rgba(34, 78, 89, 0.12);
  --shadow-hover: 0 18px 45px rgba(34, 78, 89, 0.22);

  --gradient-main: linear-gradient(135deg, #224E59, #2A5E6C, #143842);
  --gradient-gold: linear-gradient(135deg, #b68b2d, #d8b65c);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #f4f6f3, #eef3f1);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* NAVBAR */

.navbar {
  width: 100%;
  padding: 20px 6%;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 30px;
  font-weight: 900;
  color: var(--green);
}

.logo span,
.footer span {
  color: var(--brown);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--green);
  font-weight: 700;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--brown);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-input {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 30px;
  outline: none;
  font-size: 14px;
  width: 190px;
}

.search-input:focus {
  border-color: #111;
}

.icon-btn {
  border: none;
  background: #f4f4f4;
  padding: 10px 14px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
}

.icon-btn:hover {
  background: #111;
  color: white;
}

.nav-btn {
  background: #111;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* HERO */

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 45px;
  align-items: center;
  padding: 100px 6%;
  background:
    radial-gradient(circle at top right, rgba(123, 183, 199, 0.24), transparent 32%),
    radial-gradient(circle at bottom left, rgba(182, 139, 45, 0.22), transparent 30%),
    linear-gradient(135deg, #224E59, #2A5E6C, #143842);
  color: var(--white);
}

.tagline {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.06;
  margin-bottom: 24px;
  max-width: 950px;
}

.hero-text {
  max-width: 780px;
  color: #dce5e8;
  font-size: 18px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}

.btn {
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 900;
  transition: 0.35s ease;
}

.btn.primary {
  background: var(--gradient-gold);
  color: var(--green-dark);
  box-shadow: 0 10px 25px rgba(182, 139, 45, 0.25);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn:hover {
  transform: translateY(-4px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  padding: 36px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.glass-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.glass-card li {
  list-style: none;
  margin: 14px 0;
  color: #ecf4f5;
  font-weight: 600;
}

/* TRUST BAR */

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 24px 6%;
  background: var(--white);
  color: var(--green);
  font-weight: 900;
  box-shadow: var(--shadow);
}

/* SECTIONS */

.section,
.work-section,
.packages-section,
.brand-section {
  padding: 90px 6%;
}

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title p {
  color: var(--brown);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 48px;
  color: var(--green);
}

/* GRIDS */

.product-grid,
.cards,
.pricing,
.brand-grid,
.work-grid {
  display: grid;
  gap: 30px;
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.cards,
.pricing,
.brand-grid {
  grid-template-columns: repeat(3, 1fr);
}

.work-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* CARDS */

.product-card,
.card,
.price-card,
.work-box,
.brand-grid div {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-radius: 30px;
  padding: 28px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  transition: 0.4s ease;
}

.product-card:hover,
.card:hover,
.price-card:hover,
.work-box:hover,
.brand-grid div:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-hover);
  background: var(--white);
}

.product-image {
  height: 230px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 35%),
    linear-gradient(135deg, var(--green), var(--green-light));
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 54px;
  font-weight: 900;
  margin-bottom: 24px;
  transition: 0.4s ease;
}

.product-card:hover .product-image {
  transform: scale(1.04);
}

.product-card h3,
.card h3,
.price-card h3 {
  color: var(--green);
  font-size: 24px;
  margin-bottom: 12px;
}

.product-card p,
.card p {
  color: #5a5a5a;
  line-height: 1.7;
}

.product-card span,
.price {
  display: block;
  margin-top: 18px;
  color: var(--brown);
  font-weight: 900;
}

/* BULK */

.bulk-section {
  text-align: center;
  padding: 80px 6%;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(182, 139, 45, 0.2), transparent 30%),
    var(--gradient-main);
}

.bulk-section h2 {
  font-size: 44px;
  margin-bottom: 16px;
}

.bulk-section p {
  color: #dce5e8;
  margin-bottom: 28px;
}

.whatsapp {
  background: #25d366;
  color: white;
}

/* SERVICES */

.icon {
  font-size: 38px;
  margin-bottom: 18px;
}

/* PACKAGES */

.packages-section {
  background: var(--soft-bg);
}

.price-card ul {
  margin-top: 18px;
  padding-left: 20px;
  line-height: 2;
  color: #5a5a5a;
}

.featured {
  background: var(--gradient-main);
  color: var(--white);
  transform: scale(1.04);
}

.featured h3,
.featured .price {
  color: var(--accent);
}

.featured li {
  color: #e7f2f4;
}

/* BRANDS */

.brand-section {
  background:
    radial-gradient(circle at bottom left, rgba(182, 139, 45, 0.18), transparent 30%),
    var(--gradient-main);
  color: var(--white);
}

.light-title h2 {
  color: var(--white);
}

.light-title p {
  color: var(--accent);
}

.brand-grid div {
  text-align: center;
  font-weight: 900;
  font-size: 20px;
  color: var(--green);
}

/* WORK */

.work-section {
  background: var(--cream);
}

.work-box {
  text-align: center;
  font-weight: 900;
  font-size: 18px;
}

/* QUOTE SECTION */

.quote-section {
  padding: 90px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(123, 183, 199, 0.22), transparent 32%),
    linear-gradient(135deg, #224E59, #2A5E6C, #143842);
  color: var(--white);
}

.quote-content h2 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 22px;
}

.quote-content p {
  color: #dce5e8;
  line-height: 1.8;
  font-size: 18px;
}

.quote-form {
  background: var(--white);
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 16px;
  border-radius: 15px;
  border: 1px solid #d6dfdf;
  margin-bottom: 18px;
  outline: none;
  font-size: 15px;
  color: var(--text);
}

.quote-form textarea {
  height: 140px;
  resize: none;
}

.quote-form button {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 50px;
  background: var(--gradient-gold);
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(182, 139, 45, 0.22);
}

.quote-form button:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(182, 139, 45, 0.35);
}

/* FOOTER */

.footer {
  width: 100%;
  padding: 80px 6%;
  background: var(--green-dark);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer h2,
.footer h3 {
  margin-bottom: 20px;
}

.footer p {
  color: #dce5e8;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .navbar,
  .nav-actions {
    flex-direction: column;
    gap: 18px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 90px 6%;
  }

  .hero h1 {
    font-size: 42px;
  }

  .trust-bar,
  .cards,
  .pricing,
  .brand-grid,
  .work-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .quote-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 75px 6%;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .work-section,
  .packages-section,
  .brand-section,
  .quote-section {
    padding: 70px 6%;
  }
}

