/* ===================================
   Zyam Trading 168 - Main Stylesheet
   Premium Thai Export Partner
   =================================== */

/* CSS Variables - Premium Thai Color Palette */
:root {
  /* Primary Colors - Deep Forest Green with Thai Royal Gold */
  --primary-green: #1a4d2e;
  --primary-green-light: #2d6a4f;
  --primary-green-dark: #0d261a;
  --accent-gold: #d4a012;
  --accent-gold-light: #e8b923;
  --accent-gold-dark: #b38a0f;

  /* Secondary Accent - Thai Silk Burgundy */
  --accent-burgundy: #8b2635;
  --accent-copper: #b87333;

  /* Text Colors */
  --text-dark: #1a1a2e;
  --text-medium: #4a4a5a;
  --text-light: #6b6b7b;

  /* Background Colors */
  --bg-white: #ffffff;
  --bg-light: #f7f8f9;
  --bg-cream: #fdfbf7;
  --bg-warm: #faf6f0;

  /* Borders & Shadows */
  --border-light: #e5e5e5;
  --border-gold: rgba(212, 160, 18, 0.3);
  --shadow-sm: 0 2px 8px rgba(26, 77, 46, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 77, 46, 0.1);
  --shadow-lg: 0 12px 40px rgba(26, 77, 46, 0.12);
  --shadow-gold: 0 4px 20px rgba(212, 160, 18, 0.15);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

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

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   Navigation - Premium Style
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  z-index: 1000;
  padding: 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 65px;
  width: auto;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-text span {
  color: var(--primary-green);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 0;
  position: relative;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
  transition: var(--transition);
}

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

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

/* Live Feed Navigation Link - Special Styling */
.nav-links a.nav-live-feed {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  color: white !important;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
}

.nav-links a.nav-live-feed::before {
  content: '🔴 ';
  font-size: 0.7rem;
}

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

.nav-links a.nav-live-feed:hover {
  background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 77, 46, 0.3);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===================================
   Hero Section - Premium Thai Aesthetic
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.7), rgba(13, 38, 26, 0.8)),
              url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920') center/cover;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}

/* Decorative Thai Pattern Overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='%23d4a012' fill-opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg-white), transparent);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 160, 18, 0.15);
  border: 1px solid rgba(212, 160, 18, 0.4);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  color: var(--accent-gold-light);
  letter-spacing: 0.5px;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--accent-gold);
  display: block;
}

.hero-tagline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons - Premium Style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--text-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 160, 18, 0.3);
  color: var(--text-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
  transform: translateY(-3px);
}

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

.btn-outline:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.section-header h2 {
  margin-bottom: 18px;
}

.section-header p {
  font-size: 1.15rem;
  line-height: 1.8;
}

.section-label {
  display: inline-block;
  color: var(--accent-gold-dark);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
  position: relative;
  padding: 0 20px;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--accent-gold);
}

.section-label::before {
  left: 0;
}

.section-label::after {
  right: 0;
}

/* Background Variations */
.bg-white {
  background: var(--bg-white);
}

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

.bg-cream {
  background: var(--bg-cream);
}

.bg-warm {
  background: var(--bg-warm);
}

.bg-dark {
  background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
  color: white;
  position: relative;
}

.bg-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20L20 40L0 20L20 0z' fill='%23d4a012' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.bg-dark > .container {
  position: relative;
  z-index: 1;
}

.bg-dark h2, .bg-dark h3, .bg-dark p {
  color: white;
}

.bg-dark .section-label {
  color: var(--accent-gold);
}

.bg-dark .section-label::before,
.bg-dark .section-label::after {
  background: var(--accent-gold);
}

.bg-dark .check-list li {
  color: rgba(255, 255, 255, 0.9);
}

.bg-dark .check-list li::before {
  color: var(--accent-gold);
}

/* ===================================
   Stats Section - Premium
   =================================== */
.stats {
  padding: 70px 0;
  background: var(--bg-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 35px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-medium);
  font-weight: 500;
}

/* ===================================
   Features / Cards - Premium Style
   =================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(26, 77, 46, 0.2);
}

.feature-card h3 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===================================
   Two Column Layout
   =================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.two-col-content h2 {
  margin-bottom: 24px;
}

.two-col-content p {
  margin-bottom: 28px;
}

.two-col-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.two-col-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--accent-gold);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.two-col-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.two-col-image:hover img {
  transform: scale(1.03);
}

/* Check List - Premium Style */
.check-list {
  margin: 28px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--text-medium);
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: rgba(26, 77, 46, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* ===================================
   Commodities Section - Premium Grid
   =================================== */
.commodities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.commodity-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.commodity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.commodity-image {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.commodity-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.commodity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.commodity-card:hover .commodity-image img {
  transform: scale(1.08);
}

.commodity-content {
  padding: 24px;
  text-align: center;
}

.commodity-content h4 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.commodity-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-light);
}

/* ===================================
   Export Categories Grid - 8 Column
   =================================== */
.export-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.export-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.export-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
  transform: scaleX(0);
  transition: var(--transition);
}

.export-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.export-card:hover::before {
  transform: scaleX(1);
}

.export-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: var(--transition);
}

.export-card:hover .export-icon {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  transform: scale(1.1);
}

.export-card:hover .export-icon svg {
  fill: white;
}

.export-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.export-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--text-light);
}

/* ===================================
   CTA Section - Premium
   =================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='%23d4a012' fill-opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-section > .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  margin-bottom: 18px;
  font-size: 2.25rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 620px;
  margin: 0 auto 35px;
}

/* ===================================
   Services Page
   =================================== */
.service-detail {
  padding: 50px 0;
  border-bottom: 1px solid var(--border-light);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail .two-col {
  gap: 60px;
}

.service-detail:nth-child(even) .two-col {
  direction: rtl;
}

.service-detail:nth-child(even) .two-col > * {
  direction: ltr;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-gold-dark));
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

/* ===================================
   Capabilities Page
   =================================== */
.capability-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--primary-green);
  transition: var(--transition);
}

.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent-gold);
}

.capability-card h3 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.3rem;
}

.capability-card h3::before {
  content: '';
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  border-radius: 50%;
  flex-shrink: 0;
}

.capabilities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* ===================================
   Live Camera Feed Section
   =================================== */
.live-feed-section {
  background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.live-feed-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.live-feed-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.live-feed-info {
  color: white;
}

.live-feed-info .section-label {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.live-feed-info h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.live-feed-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.live-feed-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.live-feed-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.live-feed-features li::before {
  content: '📹';
  font-size: 1.2rem;
}

.live-feed-login {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.live-feed-login h3 {
  color: var(--primary-green);
  font-size: 1.75rem;
  margin-bottom: 10px;
  text-align: center;
}

.live-feed-login .login-subtitle {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.form-group input {
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(26, 77, 46, 0.1);
}

.login-btn {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  color: white;
  padding: 18px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 77, 46, 0.3);
}

.login-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #e0e0e0;
}

.login-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.login-footer a {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
}

.login-footer a:hover {
  text-decoration: underline;
}

.facility-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 160, 18, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.facility-badge::before {
  content: '🏆';
}

@media (max-width: 992px) {
  .live-feed-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .live-feed-login {
    padding: 35px;
  }
}

/* ===================================
   About Page / Page Hero
   =================================== */
.page-hero {
  padding: 240px 0 110px;
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.9), rgba(13, 38, 26, 0.95)),
              url('https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?w=1920') center/cover;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20L20 40L0 20L20 0z' fill='%23d4a012' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: white;
  margin-bottom: 24px;
  font-size: 3rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 70px;
}

.mission-card {
  background: white;
  padding: 45px;
  border-radius: 16px;
  border-top: 5px solid var(--primary-green);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--accent-gold);
}

.mission-card h3 {
  margin-bottom: 18px;
  color: var(--primary-green);
  font-size: 1.4rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 35px;
  margin-top: 45px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-green), var(--accent-gold));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-bottom: 35px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212, 160, 18, 0.2);
}

.timeline-item h4 {
  color: var(--primary-green);
  margin-bottom: 10px;
}

/* ===================================
   Contact Page
   =================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 70px;
}

.contact-info h3 {
  margin-bottom: 28px;
  font-size: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
}

.contact-item:hover .contact-icon svg {
  fill: white;
}

.contact-item h4 {
  margin-bottom: 6px;
}

.contact-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-form {
  background: var(--bg-light);
  padding: 45px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
}

.contact-form h3 {
  margin-bottom: 28px;
  font-size: 1.4rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(26, 77, 46, 0.1);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ===================================
   Footer - Premium Style
   =================================== */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 70px 0 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 55px;
}

.footer-brand .logo-img {
  height: 100px;
  background: white;
  padding: 10px;
  border-radius: 10px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 24px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer h4 {
  color: white;
  margin-bottom: 24px;
  font-size: 1.15rem;
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}

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

.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
  .features-grid,
  .commodities-grid,
  .export-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.85rem; }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    display: none;
  }

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

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .mobile-toggle {
    display: flex;
  }

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

  .hero-tagline {
    font-size: 1.1rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .two-col-image::after {
    display: none;
  }

  .service-detail:nth-child(even) .two-col {
    direction: ltr;
  }

  .features-grid,
  .commodities-grid,
  .export-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision,
  .capabilities-list {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  section {
    padding: 70px 0;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 90px;
  }

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

  .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-item {
    padding: 25px 18px;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .page-hero {
    padding: 150px 0 80px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.hidden { display: none; }
.visible { display: block; }

/* Gold Text Accent */
.text-gold {
  color: var(--accent-gold);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
