/* ============================================================
   MIRO ESTABLISHMENT FOR TRADING
   Classic Professional Design — Navy Blue & Gold
   ============================================================ */

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Palette - Classic Professional */
  --navy-900: #0a2540;
  --navy-800: #102a4c;
  --navy-700: #1a3a6b;
  --navy-600: #234b80;
  --navy-500: #2c5d96;
  --navy-100: #e8eef5;
  --navy-50: #f4f7fb;

  --gold-600: #b08d3e;
  --gold-500: #c9a961;
  --gold-400: #d8bd7e;
  --gold-100: #f5edd6;

  --gray-900: #1a1f2e;
  --gray-700: #3d4658;
  --gray-600: #5a6478;
  --gray-500: #7a8497;
  --gray-400: #a5adb9;
  --gray-300: #d1d6de;
  --gray-200: #e5e8ed;
  --gray-100: #f1f3f6;
  --gray-50: #f8f9fb;
  --white: #ffffff;

  --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 4px 12px rgba(10, 37, 64, 0.1);
  --shadow-lg: 0 12px 32px rgba(10, 37, 64, 0.15);
  --shadow-xl: 0 24px 48px rgba(10, 37, 64, 0.2);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --container: 1200px;
  --header-h: 80px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--navy-900);
  line-height: 1.2;
  font-weight: 700;
}

p { color: var(--gray-700); }

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

a:hover { color: var(--gold-600); }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}

.btn-block { width: 100%; }

.btn-cta {
  background: var(--gold-500);
  color: var(--navy-900) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta:hover {
  background: var(--gold-600);
  color: var(--white) !important;
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--navy-900);
  color: var(--gray-300);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-left, .topbar-right {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-300);
  transition: color var(--transition);
}

.topbar-item:hover { color: var(--gold-400); }

.topbar-item svg { color: var(--gold-500); }

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-h);
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  background: var(--navy-900);
  color: var(--gold-500);
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold-500);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: 2px;
}

.brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-800);
  position: relative;
  transition: color var(--transition);
}

.main-nav a:not(.btn-cta)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.main-nav a:not(.btn-cta):hover::after,
.main-nav a:not(.btn-cta).active::after {
  width: 60%;
}

.main-nav a:not(.btn-cta):hover,
.main-nav a:not(.btn-cta).active {
  color: var(--gold-600);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy-900);
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
  color: var(--white);
  padding: 80px 0 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(44, 93, 150, 0.4) 0%, transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-400) 50%, var(--gold-500) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 80px, rgba(255, 255, 255, 0.02) 80px, rgba(255, 255, 255, 0.02) 81px),
    repeating-linear-gradient(-45deg, transparent 0, transparent 80px, rgba(255, 255, 255, 0.02) 80px, rgba(255, 255, 255, 0.02) 81px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 24px;
  max-width: 1000px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
  padding: 6px 18px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 100px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--gold-400);
  margin-bottom: 36px;
  max-width: 700px;
}

.hero-sectors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 14px;
  margin-bottom: 44px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  max-width: 900px;
}

.hero-sectors span:nth-child(odd) {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.hero-sectors span:nth-child(even) { color: var(--gold-500); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(10, 37, 64, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 32px 0;
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ============ SECTIONS ============ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--gray-50);
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 16px;
  padding: 4px 0;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold-500);
  vertical-align: middle;
  margin: 0 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--navy-900);
}

.section-lead {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-700);
}

.about-text strong {
  color: var(--navy-800);
  font-weight: 600;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold-500);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--navy-700);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--navy-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  margin-bottom: 16px;
}

.about-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--navy-900);
}

.about-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ============ SECTORS ============ */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.sector-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-700), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

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

.sector-num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.sector-card h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--navy-900);
}

.sector-card > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.sector-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--gray-200);
  padding-top: 18px;
}

.sector-list li {
  font-size: 13px;
  color: var(--gray-700);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.5;
}

.sector-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
}

/* ============ WHY US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.why-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

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

.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy-50), var(--navy-100));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  transition: all var(--transition);
}

.why-item:hover .why-icon {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold-400);
  transform: rotateY(360deg);
}

.why-item h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--navy-900);
}

.why-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
}

/* ============ PARTNERS ============ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.partner-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}

.partner-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition);
}

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

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: var(--navy-900);
  color: var(--gold-500);
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 24px;
  border: 3px solid var(--gold-500);
  box-shadow: var(--shadow-md);
}

.partner-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 16px;
}

.partner-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--navy-900);
}

.partner-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
}

/* ============ PROJECTS ============ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-500);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.project-card:hover::before { transform: scaleY(1); }

.project-sector {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-600);
  background: var(--gold-100);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.project-card h3 {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--navy-900);
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--navy-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--navy-700);
}

.project-meta span {
  font-size: 13px;
  color: var(--gray-700);
}

.project-meta strong {
  color: var(--navy-800);
  font-weight: 600;
}

.project-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
}

/* ============ QUALITY ============ */
.quality-cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.cert-badge {
  background: var(--white);
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid var(--navy-100);
  transition: all var(--transition);
}

.cert-badge:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cert-mark {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-700);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.cert-badge h4 {
  font-size: 18px;
  color: var(--navy-900);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cert-badge p {
  font-size: 12px;
  color: var(--gray-600);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 16px 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.q-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.q-item:hover {
  border-color: var(--gold-400);
  transform: translateX(4px);
}

.q-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.q-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.contact-item:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-sm);
}

.ci-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--navy-900);
  color: var(--gold-500);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-body h4 {
  font-size: 14px;
  color: var(--navy-900);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ci-body p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

.ci-body a {
  color: var(--gray-700);
}

.ci-body a:hover { color: var(--gold-600); }

.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 26px;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.form-intro {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--gray-900);
  transition: all var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(35, 75, 128, 0.1);
}

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

.form-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  min-height: 20px;
}

.form-status.success { color: #2e7d32; }
.form-status.error { color: #c62828; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-900);
  color: var(--gray-300);
  padding: 70px 0 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-400) 50%, var(--gold-500) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .brand-mark { background: var(--navy-700); }

.brand-footer { margin-bottom: 18px; }

.brand-footer .brand-name { color: var(--white); }
.brand-footer .brand-sub { color: var(--gold-400); }

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-400);
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-400);
  margin: 0;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-500);
  display: inline-block;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--gray-400);
  font-size: 14px;
  transition: all var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--gold-400);
  transform: translateX(4px);
}

.footer-contact li {
  color: var(--gray-400);
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-contact li a { color: var(--gray-400); }
.footer-contact li a:hover { color: var(--gold-400); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-400);
  margin: 0;
}

.footer-tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-500);
}

/* ============ SCROLL TOP ============ */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--navy-900);
  color: var(--gold-500);
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

#scrollTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTop:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-4px);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 80px 0; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  .topbar { display: none; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-150%);
    transition: transform var(--transition);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .main-nav.open { transform: translateY(0); }

  .main-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 15px;
  }

  .main-nav a::after { display: none; }

  .btn-cta {
    margin-top: 12px;
    text-align: center;
    padding: 14px !important;
  }

  .nav-toggle { display: flex; }

  .hero { min-height: 80vh; padding-top: 40px; }
  .hero-actions .btn { width: 100%; max-width: 280px; }

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

  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }

  .sectors-grid,
  .projects-grid,
  .why-grid,
  .partners-grid { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .quality-list { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 28px 24px; }

  #scrollTop { bottom: 20px; right: 20px; width: 42px; height: 42px; }

  .brand-mark { width: 44px; height: 44px; font-size: 26px; }
  .brand-name { font-size: 20px; }
  .brand-sub { font-size: 10px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-sectors { font-size: 11px; }
  .stat-num { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .sector-card, .project-card, .why-item, .partner-card { padding: 24px; }
  .cert-badge { padding: 24px 16px; }
}

/* ============ PRINT ============ */
@media print {
  .topbar, .nav-toggle, #scrollTop, .hero-actions, .contact-form-wrap { display: none; }
  .site-header { position: static; }
  .section { page-break-inside: avoid; }
}
