/* ======================================================
   PT WIYASA BUMI PERSADA
   Premium Export Website
   Author : ChatGPT
   Version : 1.0
====================================================== */

/* ======================================================
   GOOGLE FONTS
====================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

/* ======================================================
   CSS VARIABLES
====================================================== */

:root {
  /* ===== Brand Colors ===== */

  --primary-color: #c7a86d;
  --primary-dark: #a78650;
  --primary-light: #e2c38d;

  /* ===== Background ===== */

  --bg-color: #071a14;
  --bg-secondary: #047d56;
  --bg-light: #047d56;
  --bg-white: #ffffff;
  --bg-gray: #f8f8f8;

  /* ===== Text ===== */

  --text-white: #ffffff;
  --text-light: #eaeaea;
  --text-gray: #c7c7c7;
  --text-dark: #222222;

  /* ===== Border ===== */

  --border-color: rgba(255, 255, 255, 0.08);
  --border-light: #e5e5e5;

  /* ===== Shadow ===== */

  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.25);

  /* ===== Border Radius ===== */

  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 30px;
  --radius-round: 50px;

  /* ===== Transition ===== */

  --transition: 0.35s ease;

  /* ===== Layout ===== */

  --container: 1200px;
  --header-height: 90px;
}

/* ======================================================
   GLOBAL RESET
====================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;

  background: var(--bg-color);

  color: var(--text-white);

  line-height: 1.7;

  overflow-x: hidden;
}

/* ======================================================
   TYPOGRAPHY
====================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;

  font-weight: 700;

  line-height: 1.2;

  color: var(--text-white);
}
p {
  color: var(-text-light);

  font-size: 16px;
}

a {
  text-decoration: none;

  color: inherit;
}

ul {
  list-style: none;
}

img {
  width: 100%;

  display: block;
}

button {
  border: none;

  outline: none;

  cursor: pointer;

  font-family: inherit;
}

input,
textarea {
  outline: none;

  border: none;

  font-family: inherit;
}

/* ======================================================
   CONTAINER
====================================================== */

.container {
  width: 90%;

  max-width: var(--container);

  margin: auto;
}

/* ======================================================
   SECTION
====================================================== */

section {
  padding: 100px 0;

  position: relative;
}

/* ======================================================
   COMMON TITLE
====================================================== */

.section-subtitle {
  display: inline-block;

  font-family: "Cormorant Garamond", serif;

  font-size: 28px;

  font-weight: 700;

  color: var(--primary-color);

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 15px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;

  font-size: 58px;

  font-weight: 700;

  line-height: 1.2;

  margin-bottom: 25px;
}
.section-description {
  max-width: 700px;

  color: var(--gray);

  margin: 0 auto 60px;

  font-size: 17px;
}

/* ======================================================
   BUTTON
====================================================== */

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  padding: 15px 34px;

  border-radius: 50px;

  font-weight: 600;

  transition: var(--transition);
}

.btn-primary {
  background: var(--primary-color);

  color: #111;
}

.btn-primary:hover {
  background: var(--primary-dark);

  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid var(--primary-color);

  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);

  color: #111;
}
/* ======================================================
   SCROLLBAR
====================================================== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #151515;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);

  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
/* ======================================================
   BODY
====================================================== */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1, 9;

  background: var(--bg-color);
  color: var(--text-white);

  overflow-x: hidden;
  min-height: 100vh;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* ======================================================
   TYPOGRAPHY
====================================================== */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.9;

  color: var(--text-white);
  background: var(--bg-color);

  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 22px;
}

p {
  color: var(--text-light);
  margin-bottom: 18px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  width: 100%;
  display: block;
}

button,
input,
textarea {
  font-family: inherit;
}
/* ======================================================
   BUTTON
====================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 15px 35px;

  border: none;
  border-radius: 50px;

  cursor: pointer;

  font-size: 15px;
  font-weight: 600;

  transition: all 0.35s ease;
}

.btn i {
  font-size: 18px;
}

/* Primary Button */

.btn-primary {
  background: var(--primary-color);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--primary-dark);

  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Outline Button */

.btn-outline {
  border: 2px solid var(--primary-color);

  color: var(--text-white);

  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-color);

  color: #ffffff;
}
/* ======================================================
   HEADER
====================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100px;

  padding: 20px 0;

  z-index: 100;

  background: white;

  transition: all 0.35s ease;
}

.header.scrolled {
  background: white;

  backdrop-filter: blur(10px);

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Container */

.header .container {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

/* ================= LOGO ================= */

.logo {
  display: flex;

  align-items: center;
}

.logo img {
  width: 80px;
  height: auto;

  height: auto;
}

/* ================= NAVIGATION ================= */

.navbar {
  display: flex;
  font-family: "Cormorant Garamond", serif;
  align-items: center;
  z-index: 1000;
}

.nav-list {
  display: flex;

  align-items: center;

  gap: 40px;
}

.nav-list li {
  list-style: none;
}

.nav-list li a {
  color: #047d56;

  font-size: 20px;

  font-weight: 500;

  letter-spacing: 0.5px;

  transition: all 0.3s ease;

  position: relative;
}

/* Hover Effect */

.nav-list li a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0;

  height: 2px;

  background: var(--primary-color);

  transition: 0.3s;
}

.nav-list li a:hover {
  color: var(--primary-color);
}

.nav-list li a:hover::after {
  width: 100%;
}
/* ==========================================
   ACTIVE NAVIGATION
========================================== */

.nav-list a.active {
  color: var(--primary-color);
}

/* ==========================================
   HAMBURGER ANIMATION
========================================== */

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 6px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ================= HAMBURGER ================= */

.menu-btn {
  width: 35px;

  display: none;

  flex-direction: column;

  justify-content: center;

  gap: 6px;

  cursor: pointer;
}

.menu-btn span {
  width: 100%;

  height: 3px;

  background: #047d56;

  border-radius: 20px;

  transition: 0.35s ease;
}
/* ======================================================
   HERO
====================================================== */

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;

  background: #103f31;

  padding-top: 120px;

  overflow: hidden;

  position: relative;
}

/* Overlay */

.hero .overlay {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.2);

  z-index: 1;
}

/* Container */

.hero-container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 80px;

  position: relative;

  z-index: 2;
}

/* ================= LEFT CONTENT ================= */

.hero-content {
  flex: 1;

  max-width: 620px;
}

.hero-content .subtitle {
  font-family: "Cormorant Garamond", serif;

  font-size: 24px;

  font-weight: 700;

  color: var(--primary-color);

  letter-spacing: 3px;

  text-transform: uppercase;
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;

  font-size: 82px;

  font-weight: 700;

  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--primary-color);
}

.hero-content h3 {
  font-size: 24px;

  font-weight: 500;

  margin-bottom: 20px;

  color: var(--text-light);
}

.hero-content p {
  max-width: 560px;

  margin-bottom: 40px;

  color: var(--text-light);
}

/* ================= BUTTON ================= */

.hero-buttons {
  display: flex;

  align-items: center;

  gap: 20px;

  flex-wrap: wrap;
}

/* ================= IMAGE ================= */

.hero-image {
  flex: 1;

  display: flex;

  justify-content: flex-end;
}

.hero-image img {
  width: 100%;

  max-width: 500px;

  object-fit: contain;
}
/* ======================================================
   FEATURE BAR
====================================================== */

.feature-bar {
  background: #ffffff;

  padding: 50px 0;
}

.feature-grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 25px;
}

.feature-item {
  background: #ffffff;

  border: 1px solid #eeeeee;

  border-radius: 15px;

  padding: 25px 20px;

  display: flex;

  align-items: center;

  gap: 15px;

  transition: all 0.35s ease;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-8px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-item i {
  width: 55px;

  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(199, 168, 109, 0.15);

  color: var(--primary-color);

  font-size: 22px;

  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 18px;

  color: var(--text-dark);

  margin-bottom: 4px;
}

.feature-item p {
  margin: 0;

  font-size: 14px;

  color: #777777;
}
/* ======================================================
   ABOUT
====================================================== */

.about {
  background: black;
}

.about-container {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  align-items: center;

  gap: 80px;
}

.about-content {
  width: 100%;
}

.about-content .section-subtitle {
  color: var(--primary-color);
}

.about-content .section-title {
  color: white;

  margin-bottom: 25px;
}

.about-description {
  color: white;

  margin-bottom: 35px;

  line-height: 1.8;
}

.about-list {
  display: flex;

  flex-direction: column;

  gap: 18px;

  margin-bottom: 40px;
}

.about-item {
  display: flex;

  align-items: center;

  gap: 15px;
}

.about-item i {
  width: 35px;

  height: 35px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(199, 168, 109, 0.15);

  color: var(--primary-color);

  font-size: 16px;

  flex-shrink: 0;
}

.about-item span {
  color: white;

  font-size: 16px;

  font-weight: 500;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;

  border-radius: 20px;

  object-fit: cover;

  box-shadow: var(--shadow-lg);

  transition: 0.35s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}
/* ======================================================
   PRODUCTS CCONUTS
====================================================== */

.products {
  background: White;
}
.products_1 {
  background: #071a14;
}
.products .section-subtitle,
.products .section-title {
  text-align: center;
}

.products .section-title {
  color: #006400;
}

.products .section-description {
  text-align: center;

  color: #006400;
}

/* Product Grid */

.product-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;

  margin-top: 60px;
}

/* Product Card */

.product-card {
  background: rgb(133, 213, 133);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 20px;

  overflow: hidden;

  transition: 0.35s ease;
}
.product-cards {
  background: white;

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 20px;

  overflow: hidden;

  transition: 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px);

  box-shadow: var(--shadow-lg);
}

/* Product Image */

.product-image {
  overflow: hidden;
}

.product-image img {
  width: 100%;

  height: 260px;

  object-fit: cover;

  transition: 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

/* Product Content */

.product-content {
  padding: 30px;
}

.product-content h3 {
  color: black;
}

.product-content p {
  color: #006400;
}

/* Product Button */

.product-btn {
  display: inline-block;

  color: var(--primary-color);

  font-weight: 600;

  position: relative;

  transition: 0.3s ease;
}

.product-btn::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -4px;

  width: 0;

  height: 2px;

  background: var(--primary-color);

  transition: 0.3s ease;
}

.product-btn:hover {
  color: var(--primary-dark);
}

.product-btn:hover::after {
  width: 100%;
}
/* ======================================================
   WHY CHOOSE US
====================================================== */

.why {
  background: rgb(201, 216, 201);
}

.why .section-subtitle {
  text-align: center;

  display: block;
}

.why .section-title {
  text-align: center;

  color: rgb(3, 37, 3);
}

.why .section-description {
  text-align: center;

  color: rgb(3, 37, 3);

  max-width: 700px;

  margin: 0 auto 70px;
}

/* Grid */

.why-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

/* Card */

.why-card {
  background: rgb(98, 156, 98);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 20px;

  padding: 40px 30px;

  text-align: center;

  transition: 0.35s ease;
  margin-bottom: 30px;
}

.why-card:hover {
  transform: translateY(-10px);

  border-color: goldenrod;

  box-shadow: goldenrod;
}

/* Icon */

.why-icon {
  width: 80px;

  height: 80px;

  margin: 0 auto 25px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(199, 168, 109, 0.15);

  color: rgb(3, 37, 3);

  font-size: 34px;

  transition: 0.35s ease;
}

.why-card:hover .why-icon {
  background: var(--primary-color);

  color: rgb(3, 37, 3);
}

/* Title */

.why-card h3 {
  font-size: 30px;

  margin-bottom: 15px;

  color: rgb(3, 37, 3);
}

/* Text */

.why-card p {
  color: rgb(3, 37, 3);

  font-size: 15px;

  line-height: 1.8;
}
/* ======================================================
   GALLERY
====================================================== */

.gallery {
  background: #ffffff;
}

.gallery .section-subtitle {
  display: block;

  text-align: center;
}

.gallery .section-title {
  text-align: center;

  color: var(--text-dark);
}

.gallery .section-description {
  max-width: 700px;

  margin: 0 auto 70px;

  text-align: center;

  color: #666666;
}

/* Gallery Grid */

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

/* Gallery Item */

.gallery-item {
  overflow: hidden;

  border-radius: 18px;

  position: relative;

  cursor: pointer;

  box-shadow: var(--shadow-md);
}

/* Image */

.gallery-item img {
  width: 100%;

  height: 300px;

  object-fit: cover;

  transition: 0.5s ease;
}

/* Hover */

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Overlay */

.gallery-item::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);

  opacity: 0;

  transition: 0.35s ease;

  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}
/* ======================================================
   EXPORT MARKET
====================================================== */

.market {
  background: black;
}

.market .section-subtitle {
  display: block;

  text-align: center;
}

.market .section-title {
  text-align: center;

  color: var(--text-white);
}

.market .section-description {
  max-width: 750px;

  margin: 0 auto 60px;

  text-align: center;

  color: var(--text-light);
}

/* ================= MAP ================= */

.market-map {
  margin-bottom: 60px;
}

.market-map img {
  width: 100%;

  max-width: 900px;

  margin: auto;

  opacity: 0.9;
}

/* ================= COUNTRY GRID ================= */

.country-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

/* Country Card */

.country {
  display: flex;

  align-items: center;

  justify-content: center;

  padding: 18px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 12px;

  color: var(--text-white);

  font-size: 16px;

  font-weight: 500;

  transition: 0.35s ease;
}

/* Hover */

.country:hover {
  background: var(--primary-color);

  color: #ffffff;

  transform: translateY(-5px);

  border-color: var(--primary-color);

  box-shadow: var(--shadow-md);
}
.country {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 18px;

  color: var(--text-white);

  font-family:
    "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;

  font-size: 17px;
  font-weight: 500;
}
/* ======================================================
   CTA
====================================================== */

.cta {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-color));

  text-align: center;

  padding: 100px 0;
}

.cta-content {
  max-width: 800px;

  margin: 0 auto;
}

.cta .section-subtitle {
  display: block;

  color: var(--primary-color);

  margin-bottom: 20px;
}

.cta .section-title {
  color: var(--text-white);

  margin-bottom: 25px;
}

.cta p {
  color: var(--text-light);

  font-size: 18px;

  max-width: 650px;

  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 20px;

  flex-wrap: wrap;
}

/* WhatsApp Button */

.cta-buttons .btn-primary {
  min-width: 220px;
}

/* Email Button */

.cta-buttons .btn-outline {
  min-width: 220px;
}
/* ======================================================
   FOOTER
====================================================== */

.footer {
  background: #071a14;

  padding: 80px 0 30px;
}

.footer-container {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1.5fr;

  gap: 50px;

  margin-bottom: 50px;
}

/* Logo */

.footer-logo img {
  width: 70px;
  height: 50px;
  margin-bottom: 20px;
}
.footer-column img {
  height: auto;
  width: 100px;

  position: flexible;
}

.footer-about {
  color: var(--text-light);

  line-height: 1.8;

  margin-bottom: 25px;
}

/* Heading */

.footer h3 {
  font-size: 24px;

  color: var(--text-white);

  margin-bottom: 25px;
}

/* List */

.footer ul {
  display: flex;

  flex-direction: column;

  gap: 15px;
}

.footer ul li {
  list-style: none;
}

.footer ul li a {
  color: var(--text-light);

  transition: 0.3s ease;
}

.footer ul li a:hover {
  color: var(--primary-color);

  padding-left: 6px;
}

/* Contact */

.footer-contact p {
  display: flex;

  align-items: center;

  gap: 12px;

  color: var(--text-light);

  margin-bottom: 18px;
}

.footer-contact i {
  color: var(--primary-color);

  font-size: 18px;
}

/* Social */

.footer-social {
  display: flex;

  gap: 15px;

  margin-top: 25px;
}

.footer-social a {
  width: 45px;

  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  color: var(--text-white);

  transition: 0.35s ease;
}

.footer-social a:hover {
  background: var(--primary-color);

  transform: translateY(-5px);
}

/* Bottom */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding-top: 25px;

  text-align: center;
}

.footer-bottom p {
  color: var(--text-gray);

  font-size: 14px;
}
/* ======================================================
   ANIMATION
====================================================== */

/* Transition */

a,
button,
.btn,
img,
.product-card,
.why-card,
.feature-item,
.gallery-item,
.country {
  transition: all 0.35s ease;
}

/* Fade Up */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Zoom In */

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Floating */

@keyframes floating {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Hero Image */

.hero-image img {
  animation: floating 5s ease-in-out infinite;
}

/* Hero Text */

.hero-content {
  animation: fadeUp 1s ease;
}

/* Hero Image */

.hero-image {
  animation: zoomIn 1.2s ease;
}

/* Product Hover */

.product-card:hover {
  transform: translateY(-10px);
}

/* Gallery Hover */

.gallery-item img:hover {
  transform: scale(1.08);
}

/* Feature Hover */

.feature-item:hover {
  transform: translateY(-8px);
}

/* Why Choose Hover */

.why-card:hover {
  transform: translateY(-10px);
}

/* Country Hover */

.country:hover {
  transform: translateY(-5px);
}
/* ======================================================
   UTILITY
====================================================== */

/* Text Alignment */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Margin */

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

/* Padding */

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

/* Flex */

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

/* Grid */

.grid {
  display: grid;
}

/* Width */

.w-100 {
  width: 100%;
}

/* Border Radius */

.rounded {
  border-radius: 15px;
}

/* Shadow */

.shadow {
  box-shadow: var(--shadow-md);
}

/* Hide */

.hidden {
  display: none;
}

/* Overflow */

.overflow-hidden {
  overflow: hidden;
}
/* ==========================================
   RESPONSIVE JAVASCRIPT SUPPORT
========================================== */

body.menu-open {
  overflow: hidden;
}

.hidden-item {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;
}

.hidden-item.show {
  opacity: 1;
  transform: translateY(0);
}

.back-top {
  position: fixed;

  right: 25px;

  bottom: 25px;

  width: 50px;

  height: 50px;

  border: none;

  border-radius: 50%;

  background: #c7a86d;

  color: #fff;

  cursor: pointer;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;

  z-index: 999;
}

.back-top.show {
  opacity: 1;

  visibility: visible;
}
/* ======================================================
   RESPONSIVE
====================================================== */

/* ===== Laptop ===== */

@media (max-width: 1200px) {
  .hero-container,
  .about-container {
    gap: 50px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Tablet ===== */

@media (max-width: 991px) {
  section {
    padding: 80px 0;
  }

  .menu-btn {
    display: flex;
  }

  .navbar {
    position: fixed;

    top: 80px;

    right: -100%;

    width: 280px;

    height: calc(100vh - 90px);

    background: white;

    transition: 0.4s;

    justify-content: flex-start;

    padding: 10px 25px;

    z-index: 999;
  }

  .navbar.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;

    align-items: flex-start;

    gap: 25px;

    width: 100%;
  }

  .hero-container {
    flex-direction: column;

    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content p {
    margin: auto auto 35px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    justify-content: center;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== Mobile ===== */

@media (max-width: 768px) {
  h1 {
    font-size: 52px;
  }

  .hero-content h1 {
    font-size: 58px;
  }

  .section-title {
    font-size: 38px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .country-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ===== Small Mobile ===== */

@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .logo img {
    width: 75px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content h3 {
    font-size: 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    justify-content: center;

    text-align: center;

    flex-direction: column;
  }

  .product-content {
    padding: 20px;
  }

  .why-card {
    padding: 30px 20px;
  }

  .country {
    font-size: 15px;
  }
}
