/* Completely New Layout Design - Asymmetric & Creative */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #d4af37;
  --primary-dark: #b8941f;
  --primary-light: #f4d03f;
  --secondary: #f7dc6f;
  --accent: #daa520;
  --accent-pink: #ffd700;
  --accent-purple: #ffb347;
  --bg-white: #ffffff;
  --bg-light: #fef9e7;
  --bg-gray: #faf8f0;
  --text-dark: #1a1a1a;
  --text-gray: #4a4a4a;
  --text-light: #6a6a6a;
  --border-color: #e8d9b0;
  --shadow-sm: 0 2px 8px rgba(212, 175, 55, 0.15);
  --shadow-md: 0 4px 16px rgba(212, 175, 55, 0.2);
  --shadow-lg: 0 12px 32px rgba(212, 175, 55, 0.25);
  --shadow-xl: 0 20px 48px rgba(212, 175, 55, 0.3);
  --radius: 24px;
  --radius-sm: 16px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

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

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

/* Container with Max Width */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Asymmetric Header Layout */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 60px;
  padding: 24px 40px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.logo-link:hover {
  transform: translateY(-3px);
}

.logo {
  height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: var(--transition);
}

.company-name {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.company-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.company-id {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 400;
}

/* Horizontal Navigation */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.navbar a {
  padding: 12px 24px;
  font-weight: 500;
  color: var(--text-gray);
  border-radius: 12px;
  transition: var(--transition);
  position: relative;
  font-size: 0.95rem;
}

.navbar a:hover,
.navbar a.active {
  color: var(--primary);
  background: rgba(212, 175, 55, 0.15);
}

/* Split-Screen Hero Layout */
.hero {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #daa520 100%);
  color: #1a1a1a;
  padding: 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 40px;
}

.hero-content {
  animation: fadeInLeft 0.8s ease-out;
}

.hero-visual {
  animation: fadeInRight 0.8s ease-out;
  position: relative;
}

.hero h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #1a1a1a;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  opacity: 0.9;
  line-height: 1.7;
  font-weight: 300;
  color: #2a2a2a;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Asymmetric Section Layouts */
.section {
  padding: 120px 0;
  background: var(--bg-white);
  position: relative;
}

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

/* Side-by-Side Content Layout */
.section-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.section-content.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.section-content.reverse .section-text {
  order: 2;
}

.section-content.reverse .section-visual {
  order: 1;
}

.section-text h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 32px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.section-text p {
  margin-bottom: 24px;
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.9;
}

.section-visual {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 208, 63, 0.1) 100%);
  border-radius: var(--radius);
  padding: 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

/* Visual Images */
.visual-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
  filter: brightness(0.95) sepia(0.2) saturate(1.2);
}

.visual-image:hover {
  transform: scale(1.05);
  filter: brightness(1) sepia(0.3) saturate(1.3);
}

/* About Us Visual - Global Trade Theme */
.about-visual {
  position: relative;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 208, 63, 0.15) 100%);
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(244, 208, 63, 0.2) 100%);
  z-index: 1;
  border-radius: var(--radius);
  opacity: 0.4;
  transition: var(--transition);
  pointer-events: none;
}

.about-visual:hover::before {
  opacity: 0.2;
}

@keyframes container-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

/* Additional Visual Elements for About Us */
.visual-element {
  position: absolute;
  z-index: 2;
}

/* Shipping Container 1 */
.about-visual .container-1 {
  width: 100px;
  height: 75px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: 4px solid var(--primary-dark);
  border-radius: 8px;
  top: 15%;
  left: 12%;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  animation: container-float 4s ease-in-out infinite;
}

.about-visual .container-1::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to bottom, transparent 0%, transparent 30%, var(--primary-dark) 30%, var(--primary-dark) 35%, transparent 35%, transparent 65%, var(--primary-dark) 65%, var(--primary-dark) 70%, transparent 70%);
}

/* Shipping Container 2 */
.about-visual .container-2 {
  width: 100px;
  height: 75px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border: 4px solid var(--primary-dark);
  border-radius: 8px;
  bottom: 15%;
  right: 12%;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  animation: container-float 4s ease-in-out infinite 2s;
}

.about-visual .container-2::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to bottom, transparent 0%, transparent 30%, var(--primary-dark) 30%, var(--primary-dark) 35%, transparent 35%, transparent 65%, var(--primary-dark) 65%, var(--primary-dark) 70%, transparent 70%);
}

/* Cargo Ship */
.about-visual .ship {
  width: 180px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: 30px 30px 0 0;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  animation: ship-sway 5s ease-in-out infinite;
  z-index: 1;
}

.about-visual .ship::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 40px;
  background: var(--primary-dark);
  top: -40px;
  left: 30px;
  border-radius: 2px;
}

.about-visual .ship::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 35px;
  background: var(--primary-dark);
  top: -35px;
  right: 40px;
  border-radius: 2px;
}

@keyframes ship-sway {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* Globe/World Map */
.about-visual .globe {
  width: 120px;
  height: 120px;
  border: 4px solid var(--primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  z-index: 0;
}

.about-visual .globe::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary);
  top: 50%;
  left: 0;
  opacity: 0.4;
}

.about-visual .globe::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--primary);
  left: 50%;
  top: 0;
  opacity: 0.4;
}

/* Why Choose Us Visual - Benefits & Quality */
.why-choose-visual {
  position: relative;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 208, 63, 0.15) 100%);
}

.why-choose-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(244, 208, 63, 0.2) 100%);
  z-index: 1;
  border-radius: var(--radius);
  opacity: 0.4;
  transition: var(--transition);
}

.why-choose-visual:hover::before {
  opacity: 0.2;
}

.visual-image {
  position: relative;
  z-index: 0;
}

@keyframes star-twinkle {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2) rotate(180deg);
  }
}

/* Additional Visual Elements for Why Choose Us */
/* Star 1 */
.why-choose-visual .star-1 {
  width: 80px;
  height: 80px;
  background: var(--primary);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  top: 20%;
  left: 18%;
  opacity: 0.6;
  animation: star-twinkle 2.5s ease-in-out infinite;
  box-shadow: 
    0 6px 20px rgba(212, 175, 55, 0.4),
    inset 0 0 20px rgba(244, 208, 63, 0.3);
  z-index: 3;
}

/* Star 2 */
.why-choose-visual .star-2 {
  width: 100px;
  height: 100px;
  background: var(--primary-light);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  bottom: 20%;
  right: 18%;
  opacity: 0.5;
  animation: star-twinkle 2.5s ease-in-out infinite 1.2s;
  box-shadow: 
    0 6px 20px rgba(244, 208, 63, 0.4),
    inset 0 0 25px rgba(212, 175, 55, 0.3);
  z-index: 3;
}

/* Checkmark badges */
.why-choose-visual .check-1,
.why-choose-visual .check-2,
.why-choose-visual .check-3 {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  border: 3px solid var(--primary);
  z-index: 4;
}

.why-choose-visual .check-1::before,
.why-choose-visual .check-2::before,
.why-choose-visual .check-3::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-dark);
  font-size: 24px;
  font-weight: bold;
}

.why-choose-visual .check-1 {
  top: 35%;
  left: 35%;
  animation: check-bounce 3s ease-in-out infinite;
}

.why-choose-visual .check-2 {
  top: 50%;
  left: 50%;
  animation: check-bounce-center 3s ease-in-out infinite 1s;
}

.why-choose-visual .check-3 {
  bottom: 35%;
  right: 35%;
  animation: check-bounce 3s ease-in-out infinite 2s;
}

@keyframes check-bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.1);
  }
}

@keyframes check-bounce-center {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -60%) scale(1.1);
  }
}

/* Traditional Section Headers (for sections without side-by-side) */
.section h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 60px;
  color: var(--text-dark);
  font-weight: 800;
  text-align: center;
  letter-spacing: -1px;
  position: relative;
  padding-bottom: 24px;
}

.section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-pink) 100%);
  border-radius: 2px;
}

.section h4 {
  font-size: 1.7rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* 3-Column Grid Layout */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

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

.grid-2 ul,
.grid-3 ul {
  list-style: none;
  background: var(--bg-white);
  padding: 48px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.grid-2 ul::before,
.grid-3 ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  transform: scaleX(0);
  transition: var(--transition);
}

.grid-2 ul:hover,
.grid-3 ul:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.grid-2 ul:hover::before,
.grid-3 ul:hover::before {
  transform: scaleX(1);
}

.grid-2 li,
.grid-3 li {
  margin-bottom: 18px;
  padding-left: 12px;
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.9;
  position: relative;
}

.grid-2 li::before,
.grid-3 li::before {
  content: '→';
  position: absolute;
  left: -20px;
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.3rem;
}

/* Masonry-Style Industry Grid */
.industries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.industry-box {
  background: var(--bg-white);
  padding: 48px 36px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-box:nth-child(odd) {
  transform: translateY(20px);
}

.industry-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
  opacity: 0;
  transition: var(--transition);
}

.industry-box:hover {
  transform: translateY(-12px) !important;
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
  color: white;
}

.industry-box:hover::before {
  opacity: 1;
}

.industry-box {
  position: relative;
  z-index: 1;
}

/* Modern Blockquote with Side Layout */
blockquote {
  border-left: 5px solid var(--primary);
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(244, 208, 63, 0.08) 100%);
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin: 48px 0;
  line-height: 1.9;
  box-shadow: var(--shadow-sm);
  position: relative;
  font-style: italic;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

blockquote::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

blockquote p {
  margin-bottom: 20px;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

blockquote p:last-child {
  margin-bottom: 0;
}

/* Split Contact Layout */
.contact {
  background: var(--bg-light);
}

.contact h4 {
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-dark);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.contact p {
  margin-bottom: 0;
  font-size: 1.1rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  border-left: 5px solid var(--primary);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact p:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--secondary);
}

.contact p strong {
  color: var(--primary);
  min-width: 120px;
  font-weight: 600;
  font-size: 1rem;
}

.contact a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact a:hover {
  color: var(--primary-dark);
}

/* Modern Footer */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 60px 0;
  font-size: 1rem;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Blog Layout - Card Grid */
#blog h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 60px;
  text-align: center;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
  padding-bottom: 24px;
}

#blog h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-pink) 100%);
  border-radius: 2px;
}

.blog-post {
  background: var(--bg-white);
  padding: 56px 48px;
  margin-bottom: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.blog-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  transform: scaleX(0);
  transition: var(--transition);
}

.blog-post:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: var(--primary);
}

.blog-post:hover::before {
  transform: scaleX(1);
}

.blog-post h3 {
  font-size: 2rem;
  margin-bottom: 28px;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.blog-post h4 {
  color: var(--primary);
  margin-top: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.3px;
}

.blog-post h5 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--primary-light);
  font-weight: 600;
  font-size: 1.3rem;
}

.blog-post ul,
.blog-post ol {
  margin-left: 32px;
  margin-bottom: 24px;
  color: var(--text-gray);
}

.blog-post ul li,
.blog-post ol li {
  margin-bottom: 14px;
  line-height: 1.9;
  font-size: 1.1rem;
}

.blog-post p {
  margin-bottom: 24px;
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.9;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  z-index: 999;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), var(--shadow-lg);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), var(--shadow-lg);
  }
}

/* Go to Top Button */
.go-top-btn {
  position: fixed;
  bottom: 112px;
  right: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  z-index: 999;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: white;
}

.go-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.go-top-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.go-top-btn span {
  line-height: 1;
  font-size: 0.7rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
  text-align: center;
  }

  .section-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .section-content.reverse {
    grid-template-columns: 1fr;
  }

  .section-content.reverse .section-text,
  .section-content.reverse .section-visual {
    order: 0;
  }

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

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

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

.header-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 24px;
    text-align: center;
}

.logo-section {
  flex-direction: column;
  justify-content: center;
}

  .navbar {
  justify-content: center;
    gap: 8px;
  }

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

  .hero .container {
    padding: 60px 24px;
  }

  .section {
    padding: 80px 0;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .industries {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .industry-box:nth-child(odd) {
    transform: none;
  }
}

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

  .header-container {
    padding: 16px 20px;
  }

  .logo {
    height: 150px;
}

.company-title {
    font-size: 1.2rem;
}

.company-id {
    font-size: 0.8rem;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .navbar a {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .hero {
    padding: 60px 0;
  }

  .section {
    padding: 60px 0;
  }

  .section h3 {
    margin-bottom: 40px;
  }

  .grid-2 ul,
  .grid-3 ul {
    padding: 32px 24px;
  }

  .blog-post {
    padding: 32px 24px;
  }

  .industry-box {
    padding: 36px 24px;
    font-size: 1.1rem;
  }

  .whatsapp-btn {
    width: 56px;
    height: 56px;
    bottom: 24px;
    right: 24px;
  }

  .go-top-btn {
    bottom: 96px;
    right: 24px;
    padding: 12px 16px;
  }

  .contact p {
    flex-direction: column;
    gap: 8px;
  }

  .contact p strong {
    min-width: auto;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background-color: var(--primary);
  color: white;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent-purple) 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
