@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  color: #fff3f5;
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  background: #6d041b;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main {
  width: 100%;
  flex: 1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  background: none;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #6d041b;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(#ff9a3c, #d72652);
}

.container {
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  max-width: 1240px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.8rem;
  gap: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label::before {
  border-radius: 2px;
  width: 24px;
  height: 2px;
  content: "";
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
}

.section-title {
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
}
.section-title span {
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: #d7a6af;
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.8;
}

.btn-primary {
  color: #ffffff;
  position: relative;
  z-index: 1;
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 10px;
  cursor: pointer;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  outline: none;
  overflow: hidden;
}
.btn-primary::after {
  position: absolute;
  z-index: -1;
  border-radius: inherit;
  content: "";
  inset: 0;
  background: linear-gradient(135deg, rgba(210, 166, 174, 0.18) 0%, rgba(109, 8, 29, 0.22) 100%);
  opacity: 0;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(210, 166, 174, 0.35), 0 0 28px rgba(109, 8, 29, 0.28);
}
.btn-primary:hover::after {
  opacity: 1;
}
.btn-primary {
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  box-shadow: 0 4px 24px rgba(210, 166, 174, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(210, 166, 174, 0.45);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.404) !important;
  border-radius: 60px;
  color: #ffffff;
  position: relative;
  z-index: 1;
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 10px;
  cursor: pointer;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  outline: none;
  overflow: hidden;
}
.btn-outline::after {
  position: absolute;
  z-index: -1;
  border-radius: inherit;
  content: "";
  inset: 0;
  background: linear-gradient(135deg, rgba(210, 166, 174, 0.18) 0%, rgba(109, 8, 29, 0.22) 100%);
  opacity: 0;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(210, 166, 174, 0.35), 0 0 28px rgba(109, 8, 29, 0.28);
}
.btn-outline:hover::after {
  opacity: 1;
}
.btn-outline {
  background: transparent;
}
.btn-outline:hover {
  border-color: #ff9a3c !important;
  color: #ff9a3c;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(210, 166, 174, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  filter: blur(6px);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  filter: blur(6px);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  filter: blur(6px);
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.delay-1 {
  transition-delay: 0.1 s;
}

.delay-2 {
  transition-delay: 0.2 s;
}

.delay-3 {
  transition-delay: 0.3 s;
}

.delay-4 {
  transition-delay: 0.4 s;
}

.delay-5 {
  transition-delay: 0.5 s;
}

.delay-6 {
  transition-delay: 0.6 s;
}

.delay-7 {
  transition-delay: 0.7 s;
}

.delay-8 {
  transition-delay: 0.8 s;
}

.navbar {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  padding: 0px 0;
  background: #fffcfd;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .nav-logo {
  z-index: 10;
  display: flex;
  gap: 10px;
}
.navbar .nav-logo img {
  width: auto;
  height: 90px;
}
.navbar .nav-links {
  display: none;
}
@media (min-width: 992px) {
  .navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
  }
}
.navbar .nav-links a {
  position: relative;
  color: #010101;
  font-weight: 500;
  font-size: 1.3rem;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .nav-links a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  border-radius: 2px;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .nav-links a:hover, .navbar .nav-links a.active {
  color: #010101;
}
.navbar .nav-links a:hover::after, .navbar .nav-links a.active::after {
  width: 100%;
}
.navbar .nav-cta {
  display: none;
}
@media (min-width: 992px) {
  .navbar .nav-cta {
    display: flex;
  }
}
.navbar .nav-cta {
  padding: 10px 24px;
  font-size: 0.88rem;
}
.navbar .hamburger {
  position: relative;
  z-index: 1001;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px;
  gap: 5px;
  cursor: pointer;
  background: transparent;
}
@media (min-width: 992px) {
  .navbar .hamburger {
    display: none;
  }
}
.navbar .hamburger span {
  border-radius: 20px;
  width: 26px;
  height: 2px;
  display: block;
  background: #1a050b;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
  transform-origin: center;
}
.navbar .hamburger {
  /* OPEN STATE */
}
.navbar .hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: #fffcfd;
}
.navbar .hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar .hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: #ffffff;
}
.navbar {
  /* ───────────────── MOBILE MENU ───────────────── */
}
.navbar .mobile-menu {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -100%;
  width: min(340px, 100vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  background: linear-gradient(180deg, #421421 0%, #430915 55%, #42111b 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.45);
  gap: 8px;
  /* IMPORTANT FIX */
  transition: right 0.35s ease;
  will-change: right;
}
.navbar .mobile-menu.open {
  right: 0;
}
.navbar .mobile-menu a {
  padding: 14px 0;
  color: #e6c7ce;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.navbar .mobile-menu a:hover {
  padding-left: 10px;
  color: #ffffff;
}
.navbar .mobile-menu .mobile-cta {
  margin-top: 24px;
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  color: #ffffff;
  font-weight: 600;
  background: linear-gradient(135deg, #6d041b 0%, #c2184b 100%);
  box-shadow: 0 10px 30px rgba(109, 4, 27, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.navbar .mobile-menu .mobile-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(109, 4, 27, 0.38);
}
.navbar {
  /* ───────────────── MENU OVERLAY ───────────────── */
}
.navbar .menu-overlay {
  position: fixed;
  z-index: 998;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.navbar .menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.footer {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(90, 4, 8, 0.12), transparent 35%), radial-gradient(circle at bottom right, rgba(77, 23, 6, 0.12), transparent 35%), linear-gradient(180deg, #3d0714 0%, #6d041b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer::before {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}
.footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  gap: 50px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

.footer-col h4 {
  position: relative;
  margin-bottom: 24px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}
.footer-col h4::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 50px;
  width: 50px;
  height: 3px;
  content: "";
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
}
.footer-col p {
  margin-top: 0px;
  color: #d7a6af;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.9;
}
.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 16px;
}
.footer-col ul a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #d7a6af;
  font-weight: 500;
  font-size: 19px;
  text-decoration: none;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-col ul a::before {
  position: absolute;
  left: -12px;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.footer-col ul a:hover {
  color: #ffffff;
  transform: translateX(8px);
}
.footer-col ul a:hover::before {
  width: 8px;
  opacity: 1;
}

.footer-brand .footer-logo {
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.footer-brand .footer-logo .logo-ny,
.footer-brand .footer-logo .logo-24 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: 1px;
}
.footer-brand .footer-logo .logo-ny {
  color: #ffffff;
}
.footer-brand .footer-logo .logo-24 {
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-icons a {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: #ffffff;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}
.social-icons a:hover {
  border-color: transparent;
  transform: translateY(-6px) scale(1.08);
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  box-shadow: 0 0 40px rgba(255, 154, 60, 0.28);
}

.footer-contact-list li {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  color: #d7a6af;
  gap: 16px;
}
.footer-contact-list li i {
  border-radius: 50%;
  width: 20px;
  height: 40px;
  color: #ffffff;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 48px;
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-contact-list li:hover i {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 40px rgba(255, 154, 60, 0.28);
}
.footer-contact-list li span,
.footer-contact-list li a {
  color: #d7a6af;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.7;
  text-decoration: none;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-contact-list li a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 70px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4509803922);
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  color: #d7a6af;
  font-size: 16px;
  line-height: 1.8;
}
.footer-bottom p strong {
  color: #ffffff;
}
.footer-bottom p a {
  text-decoration: none;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-bottom p .tripledots {
  font-weight: 700;
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-bottom p .tripledots:hover {
  opacity: 0.8;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  min-height: 75vh;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(ellipse 75% 65% at -10% -10%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.82) 18%, rgba(0, 0, 0, 0.42) 42%, transparent 78%), radial-gradient(ellipse 75% 65% at 110% -10%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.82) 18%, rgba(0, 0, 0, 0.42) 42%, transparent 78%), radial-gradient(ellipse 85% 65% at 72% 38%, rgba(109, 4, 27, 0.2) 0%, transparent 72%), radial-gradient(ellipse 65% 65% at 18% 75%, rgba(32, 5, 12, 0.32) 0%, transparent 72%), linear-gradient(135deg, #6d041b 0%, #430915 48%, #1a050b 100%);
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: floatBlob 8s ease-in-out infinite;
  pointer-events: none;
}
.hero__blob--1 {
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 154, 60, 0.18) 0%, transparent 70%);
  animation-delay: 0s;
}
.hero__blob--2 {
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(215, 38, 82, 0.15) 0%, transparent 70%);
  animation-delay: -3s;
}
.hero__blob--3 {
  top: 40%;
  left: 40%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 180, 80, 0.18) 0%, transparent 70%);
  animation-delay: -5s;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.hero__content .badge {
  margin-bottom: 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  color: #ff9a3c;
  font-weight: 600;
  font-size: 0.82rem;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: fadeUp 0.8s ease forwards;
}
.hero__content .badge .dot {
  border-radius: 50%;
  width: 7px;
  height: 7px;
  background: #ff9a3c;
  box-shadow: 0 0 10px #ff9a3c;
  animation: pulse 2s ease infinite;
}
.hero__content h1 {
  margin-bottom: 24px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.08;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero__content h1 span {
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__content p {
  margin-bottom: 40px;
  color: #d7a6af;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.9;
  animation: fadeUp 0.8s 0.25s ease both;
}
.hero__content .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeUp 0.8s 0.35s ease both;
}
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero__visual .bottle-wrap {
  position: relative;
  width: 280px;
  height: 400px;
}
@media (min-width: 768px) {
  .hero__visual .bottle-wrap {
    width: 340px;
    height: 480px;
  }
}
.hero__visual .bottle-wrap .bottle-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 60px rgba(255, 154, 60, 0.28));
  animation: floatBottle 5s ease-in-out infinite;
}
.hero__visual .hero-ring {
  position: absolute;
  border: 1px solid rgba(255, 154, 60, 0.2);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.hero__visual .hero-ring--1 {
  width: 360px;
  height: 360px;
}
.hero__visual .hero-ring--2 {
  border-color: rgba(215, 38, 82, 0.16);
  width: 480px;
  height: 480px;
  animation-direction: reverse;
  animation-duration: 30s;
}
.hero__visual .hero-ring .ring-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #ff9a3c;
  transform: translateX(-50%);
  box-shadow: 0 0 12px #ff9a3c;
}
.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 36px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #d7a6af;
  font-size: 0.75rem;
  transform: translateX(-50%);
  gap: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1s 0.8s ease both;
}

.cin-number {
  font-weight: 600;
}

.coal-export-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(255, 154, 60, 0.08), transparent 35%), radial-gradient(circle at bottom right, rgba(215, 38, 82, 0.08), transparent 35%), linear-gradient(180deg, #430915 0%, #1a050b 100%);
}
@media (min-width: 992px) {
  .coal-export-section {
    padding: 120px 0;
  }
}
.coal-export-section .blur-one,
.coal-export-section .blur-two {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.coal-export-section .blur-one {
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 154, 60, 0.12);
}
.coal-export-section .blur-two {
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: rgba(215, 38, 82, 0.12);
}
.coal-export-section .container {
  position: relative;
  z-index: 2;
}
.coal-export-section .section-heading {
  margin-bottom: 70px;
  text-align: center;
}
.coal-export-section .section-heading .section-tag {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  color: #ff9a3c;
  font-weight: 700;
  font-size: 0.82rem;
  gap: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.coal-export-section .section-heading .section-tag i {
  font-size: 0.9rem;
}
.coal-export-section .section-heading h2 {
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
}
.coal-export-section .section-heading h2 span {
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.coal-export-section .section-heading p {
  margin: 0 auto;
  color: #d7a6af;
  font-size: 1.2rem;
  max-width: 760px;
  line-height: 1.9;
}
.coal-export-section .about-wrapper {
  display: grid;
  align-items: center;
  gap: 60px;
}
@media (min-width: 992px) {
  .coal-export-section .about-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.coal-export-section .about-image-box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
.coal-export-section .about-image-box img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.coal-export-section .about-image-box:hover img {
  transform: scale(1.05);
}
.coal-export-section .about-image-box::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
}
.coal-export-section .about-content h3 {
  margin-bottom: 22px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.3;
}
.coal-export-section .about-content p {
  margin-bottom: 24px;
  color: #d7a6af;
  font-size: 1.2rem;
  line-height: 1.9;
}
.coal-export-section .about-features {
  margin-top: 35px;
  display: grid;
  gap: 18px;
}
@media (min-width: 768px) {
  .coal-export-section .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
.coal-export-section .about-features .feature-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  transition: all 0.35s ease;
}
.coal-export-section .about-features .feature-item:hover {
  border-color: rgba(255, 154, 60, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}
.coal-export-section .about-features .feature-item i {
  color: #ff9a3c;
  font-size: 1.05rem;
}
.coal-export-section .about-features .feature-item span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.96rem;
}
.coal-export-section .coal-contact-form {
  margin-top: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
@media (min-width: 768px) {
  .coal-export-section .coal-contact-form {
    padding: 60px;
  }
}
.coal-export-section .coal-contact-form .section-heading {
  margin-bottom: 50px;
}
.coal-export-section .coal-contact-form form {
  display: grid;
  gap: 24px;
}
.coal-export-section .form-group input,
.coal-export-section .form-group textarea,
.coal-export-section .form-group select {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  width: 100%;
  padding: 18px 22px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.coal-export-section .form-group input::placeholder,
.coal-export-section .form-group textarea::placeholder,
.coal-export-section .form-group select::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.coal-export-section .form-group input:focus,
.coal-export-section .form-group textarea:focus,
.coal-export-section .form-group select:focus {
  border-color: rgba(255, 154, 60, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(255, 154, 60, 0.08);
}
.coal-export-section .form-group textarea {
  resize: vertical;
  min-height: 160px;
}
.coal-export-section .form-group select {
  cursor: pointer;
}
.coal-export-section .form-group select option {
  color: #000;
}
.coal-export-section .btn-primary {
  width: fit-content;
  justify-content: center;
}
@media (min-width: 768px) {
  .coal-export-section .btn-primary {
    min-width: 220px;
  }
}

/*# sourceMappingURL=coal_export.css.map */
