/*
Theme Name: LAMP International
Theme URI: https://lampintl.com
Author: LAMP International LLC
Author URI: https://lampintl.com
Description: A professional corporate theme for LAMP International LLC — Illuminating the path of Global Commerce. Features sections for Livestock, Agriculture, Metals, and Power with full Customizer admin controls.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lamp-international
Tags: corporate, business, custom-logo, custom-menu, theme-options, translation-ready
*/

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #0066CC;
  --primary-dark: #004C99;
  --primary-light: rgba(0, 102, 204, 0.1);
  --secondary: #F59E0B;
  --secondary-dark: #D97706;
  --secondary-light: rgba(245, 158, 11, 0.1);
  --foreground: #1E293B;
  --muted: #64748B;
  --muted-light: #94A3B8;
  --border: #E2E8F0;
  --bg-light: #F8FAFC;
  --white: #FFFFFF;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

a, button, [role="button"], input[type="submit"],
a *, button *, .btn, .btn *, .btn-glass, .btn-glass *,
.tab-btn, .menu-toggle, .pillar-card a, .pillar-card a *,
.footer-col a, .footer-bottom a, .top-bar a, .main-nav a,
.site-logo, .contact-form button, .nav-link, .hero-buttons a,
.cta-buttons a {
  cursor: pointer !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 9999px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  line-height: 1.5;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-primary:hover {
  background: rgba(245, 158, 11, 0.9);
  border-color: rgba(245, 158, 11, 0.9);
}

.btn-blue {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-blue:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-cta-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-quote {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  padding: 0.5rem 1.5rem;
}

.btn-quote:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

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

.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.75rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.top-bar-left svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.top-bar-right {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.top-bar-right a {
  color: var(--white);
  transition: color 0.3s;
}

.top-bar-right a:hover {
  color: var(--secondary);
}

.top-bar-right svg {
  width: 14px;
  height: 14px;
}

@media (min-width: 768px) {
  .top-bar {
    font-size: 0.875rem;
  }
  .top-bar-right {
    display: flex;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.site-logo img {
  height: 4rem;
  width: auto;
  object-fit: contain;
}

.site-logo-text {
  display: none;
  flex-direction: column;
  justify-content: center;
}

.site-logo-text .logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--primary);
}

.site-logo-text .logo-sub {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-weight: 600;
}

@media (min-width: 768px) {
  .site-logo-text {
    display: flex;
  }
}

.main-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(30, 41, 59, 0.8);
  transition: color 0.3s;
  position: relative;
  padding: 0.5rem 0;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--secondary);
}

.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--foreground);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-nav-panel.open {
  transform: translateX(0);
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: none;
  border: none;
  padding: 0.5rem;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.mobile-nav-close svg {
  width: 24px;
  height: 24px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s;
}

.mobile-nav-links a:hover {
  color: var(--secondary);
}

.mobile-nav-links a.active {
  color: var(--primary);
}

.mobile-nav-links .btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    height: 800px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7), transparent);
}

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

.hero-content {
  max-width: 48rem;
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  background: var(--secondary);
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.hero-content h1 {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 4.5rem;
  }
}

.hero-content h1 .highlight {
  color: var(--secondary);
}

.hero-content > p {
  font-size: 1.25rem;
  color: var(--slate-200);
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 40rem;
}

@media (min-width: 768px) {
  .hero-content > p {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.section-pillars {
  padding: 6rem 0;
  background: rgba(248, 250, 252, 0.3);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title .divider {
  height: 4px;
  width: 5rem;
  background: var(--secondary);
  margin: 0 auto 1.5rem;
  border-radius: 9999px;
}

.section-title p {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.pillar-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pillar-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pillar-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.pillar-card:hover .pillar-card-bg img {
  transform: scale(1.1);
}

.pillar-card-overlay {
  position: absolute;
  inset: 0;
  transition: background-color 0.3s ease;
}

.pillar-card.blue .pillar-card-overlay {
  background: rgba(0, 102, 204, 0.8);
}

.pillar-card.blue:hover .pillar-card-overlay {
  background: rgba(0, 102, 204, 0.7);
}

.pillar-card.orange .pillar-card-overlay {
  background: rgba(245, 158, 11, 0.8);
}

.pillar-card.orange:hover .pillar-card-overlay {
  background: rgba(245, 158, 11, 0.7);
}

.pillar-card-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
  min-height: 350px;
}

.pillar-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.pillar-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
  stroke: currentColor;
}

.pillar-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.pillar-card-content p {
  color: var(--slate-100);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 0.9375rem;
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  font-size: 0.875rem;
  text-decoration: none;
}

.btn-glass svg {
  width: 16px;
  height: 16px;
}

.pillar-card.blue .btn-glass:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.pillar-card.orange .btn-glass:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.section-about-brief {
  padding: 6rem 0;
  background: var(--white);
}

.about-brief-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-brief-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap .corner-tl {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  background: rgba(245, 158, 11, 0.2);
  border-top-left-radius: 1.5rem;
}

.about-image-wrap .corner-br {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background: rgba(0, 102, 204, 0.2);
  border-bottom-right-radius: 1.5rem;
}

.about-image-wrap img {
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10;
  width: 100%;
}

.about-subtitle {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.about-brief-content h2 {
  font-size: 2.25rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.about-brief-content > p {
  color: var(--muted);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  background: var(--primary-light);
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-item h5 {
  font-weight: 700;
  color: var(--foreground);
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
}

.feature-item p {
  font-size: 0.8125rem;
  color: var(--muted);
}

.section-cta {
  padding: 5rem 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.section-cta h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-cta h2 {
    font-size: 3rem;
  }
}

.section-cta > .container > p {
  font-size: 1.25rem;
  opacity: 0.8;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.page-header {
  padding: 5rem 0;
  text-align: center;
}

.page-header.bg-light {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.page-header.bg-dark {
  background: var(--slate-900);
  color: var(--white);
}

.page-header.bg-dark p {
  color: var(--slate-300);
}

.page-header.bg-primary {
  background: var(--primary);
  color: var(--white);
}

.page-header.bg-primary p {
  color: rgba(255, 255, 255, 0.8);
}

.page-header h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.page-header.bg-light h1 {
  color: var(--primary);
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 3rem;
  }
}

.page-header p {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

.section-mission-vision {
  padding: 5rem 0;
  background: var(--white);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .mv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mv-card {
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid;
}

.mv-card.mission {
  background: rgba(0, 102, 204, 0.05);
  border-color: rgba(0, 102, 204, 0.1);
}

.mv-card.vision {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.1);
}

.mv-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mv-icon.blue {
  background: var(--primary);
  color: var(--white);
}

.mv-icon.orange {
  background: var(--secondary);
  color: var(--white);
}

.mv-icon svg {
  width: 28px;
  height: 28px;
}

.mv-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.mv-card p {
  color: var(--muted);
  line-height: 1.75;
}

.section-story {
  padding: 5rem 0;
  background: rgba(248, 250, 252, 0.3);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.story-text h2 {
  font-size: 1.875rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.story-text .story-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-text .story-paragraphs p {
  color: var(--muted);
  line-height: 1.75;
}

.story-stats {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.story-stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
  font-family: 'Montserrat', sans-serif;
}

.story-stat-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.story-image-wrap {
  position: relative;
}

.story-image-wrap img {
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  width: 100%;
}

.story-quote {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 18rem;
  display: none;
}

@media (min-width: 768px) {
  .story-quote {
    display: block;
  }
}

.story-quote p {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  color: var(--primary);
  font-size: 1.125rem;
}

.section-values {
  padding: 5rem 0;
  background: var(--white);
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-header h2 {
  font-size: 1.875rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.values-header p {
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: var(--bg-light);
  border-color: var(--slate-100);
}

.value-item svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.value-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.value-item p {
  font-size: 0.875rem;
  color: var(--muted);
}

.section-products {
  padding: 5rem 0;
  background: var(--bg-light);
}

.tabs-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.tabs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 40rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .tabs-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tab-btn {
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  background: transparent;
  color: var(--foreground);
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.tab-btn:not(.active):hover {
  background: var(--primary);
  color: var(--white);
}

.tab-btn.active {
  background: var(--secondary);
  color: var(--white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .tab-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.tab-category-card {
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: fit-content;
}

.tab-category-image {
  height: 12rem;
  overflow: hidden;
}

.tab-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tab-category-card:hover .tab-category-image img {
  transform: scale(1.05);
}

.tab-category-info {
  padding: 1.5rem;
}

.tab-category-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-light);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.tab-category-icon svg {
  width: 24px;
  height: 24px;
}

.tab-category-info h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.tab-category-info p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.tab-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .tab-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tab-item-card {
  background: var(--white);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.tab-item-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tab-item-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.tab-item-card p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.tab-item-card .inquire-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s;
}

.tab-item-card .inquire-link:hover {
  text-decoration: underline;
}

.tab-item-card .inquire-link svg {
  width: 12px;
  height: 12px;
}

.section-process {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  text-align: center;
}

.section-process h2 {
  font-size: 1.875rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-line {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--slate-200);
  transform: translateY(-50%);
  z-index: 0;
}

@media (min-width: 768px) {
  .process-line {
    display: block;
  }
}

.process-step {
  background: var(--white);
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 3rem;
  height: 3rem;
  background: var(--secondary);
  color: var(--white);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  position: relative;
  z-index: 10;
  font-family: 'Montserrat', sans-serif;
}

.process-step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--muted);
}

.section-contact {
  padding: 5rem 0;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info h2 {
  font-size: 1.875rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-info > p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-card-icon {
  background: var(--secondary-light);
  padding: 0.75rem;
  border-radius: 9999px;
  color: var(--secondary);
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.contact-card p {
  color: var(--muted);
  font-size: 0.9375rem;
}

.contact-card .small-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.contact-form-wrap {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--foreground);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-light);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  font-family: 'Open Sans', sans-serif;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: rgba(0, 102, 204, 0.9);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
}

.form-message {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  display: block;
}

.form-message.error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
  display: block;
}

.section-map {
  height: 20rem;
  background: var(--slate-200);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-map p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--slate-400);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-map svg {
  width: 32px;
  height: 32px;
}

.site-footer {
  background: var(--slate-900);
  color: var(--slate-100);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 3rem;
  width: auto;
}

.footer-logo span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
}

.footer-col p {
  color: var(--slate-400);
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  color: var(--slate-400);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--white);
  transform: translateX(0.25rem);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--slate-400);
  font-size: 0.875rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(30, 41, 59, 0.8);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--muted);
  transition: color 0.3s;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
