@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy: #1a2744;
  --gold: #c9a962;
  --dark-grey: #2d3748;
  --silver: #a0aec0;
  --light-bg: #f8f9fa;
  --white: #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-grey);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }

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

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

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Top Bar */
.top-bar {
  background: var(--navy);
  color: white;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  display: none;
}

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

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

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

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

.top-bar-left .divider { color: var(--silver); }

.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-phone svg { color: var(--gold); }

.btn-quote-sm {
  background: var(--gold);
  color: var(--navy);
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  font-weight: 600;
  font-size: 0.75rem;
  transition: background 0.3s;
}

.btn-quote-sm:hover { background: #b89a52; }

/* Navbar */
.navbar {
  background: white;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img { height: 100px; width: auto; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.18); }

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.625rem;
  color: var(--dark-grey);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* Desktop Nav */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

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

.nav-links a, .nav-links .dropdown-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-grey);
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.nav-links a:hover, .nav-links a.active,
.nav-links .dropdown-btn:hover { color: var(--gold); }

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  border: 1px solid #f3f4f6;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.dropdown-menu a:hover {
  color: var(--gold);
  background: #f9fafb;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--navy);
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid #f3f4f6;
  padding: 1rem;
}

.mobile-menu.open { display: block; }

.mobile-menu a, .mobile-menu .mobile-dropdown-btn {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-grey);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.mobile-menu a.active { color: var(--gold); }

.mobile-submenu {
  padding-left: 1.5rem;
  display: none;
}

.mobile-submenu.open { display: block; }

.mobile-submenu a {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.mobile-contact {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.mobile-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.7) 0%, rgba(26,39,68,0.4) 50%, rgba(26,39,68,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 100px;
}

@media (min-width: 768px) { .hero-content { padding-top: 0; } }

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle .line {
  width: 3rem;
  height: 1px;
  background: var(--gold);
}

.hero-subtitle span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.6rem; } }

.hero h1 .gold-text { color: var(--gold); }

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  max-width: 640px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.btn-primary:hover { background: #b89a52; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.hero-indicators button {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-indicators button.active {
  background: var(--gold);
  width: 2rem;
}

/* Section Styles */
.section { padding: 5rem 0; }

.section-white { background: white; }

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

.section-dark { background: var(--navy); color: white; }

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

.section-header .subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-header .subtitle .line {
  width: 3rem;
  height: 1px;
  background: var(--gold);
}

.section-header .subtitle span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  font-weight: 500;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

@media (min-width: 1024px) { .section-header h2 { font-size: 2.5rem; } }

.section-header p {
  color: var(--dark-grey);
  max-width: 640px;
  margin: 1rem auto 0;
  font-size: 1.0625rem;
}

.section-dark .section-header h2 { color: white; }
.section-dark .section-header p { color: var(--silver); }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

@media (min-width: 1024px) { .stat-number { font-size: 3.5rem; } }

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

/* Grid layouts */
.grid-2 {
  display: grid;
  gap: 3rem;
}

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

.grid-3 {
  display: grid;
  gap: 2rem;
}

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

.grid-4 {
  display: grid;
  gap: 1rem;
}

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

/* Cards */
.card {
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #f3f4f6;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(26,39,68,0.05);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.card:hover .card-icon {
  background: var(--gold);
  color: var(--navy);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.9375rem;
  color: var(--dark-grey);
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

.link-gold:hover { gap: 0.5rem; }

/* Image Card */
.img-card {
  background: var(--light-bg);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.img-card .img-wrap {
  overflow: hidden;
  height: 14rem;
}

.img-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.img-card:hover .img-wrap img { transform: scale(1.05); }

.img-card .img-body { padding: 1.5rem; }

.img-card .img-tag {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.img-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.5rem 0 0.75rem;
}

.img-card p { font-size: 0.9375rem; color: var(--dark-grey); }

/* Project Card */
.project-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 18rem;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-card:hover img { transform: scale(1.05); }

.project-card .overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.9) 0%, rgba(26,39,68,0.3) 100%);
}

.project-card .project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
}

.project-card .project-tag {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.project-card h3 {
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

/* Activity Card */
.activity-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 0.5rem;
  border: 1px solid #f3f4f6;
  transition: all 0.3s;
}

.activity-card:hover {
  border-color: rgba(201,169,98,0.3);
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.activity-icon {
  width: 4rem;
  height: 4rem;
  background: var(--navy);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s;
}

.activity-card:hover .activity-icon {
  background: var(--gold);
  color: var(--navy);
}

.activity-content { flex: 1; min-width: 0; }

.activity-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.activity-num {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.activity-badge {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
}

.badge-commercial { background: #dbeafe; color: #1d4ed8; }
.badge-services { background: #dcfce7; color: #15803d; }

.activity-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.activity-card:hover h3 { color: var(--gold); }

.activity-card p {
  font-size: 0.875rem;
  color: var(--dark-grey);
  line-height: 1.6;
}

/* Industry item */
.industry-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
}

.industry-item:hover {
  border-color: rgba(201,169,98,0.5);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.industry-item svg { color: var(--gold); flex-shrink: 0; }

.industry-item span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
}

/* Process Steps */
.process-step {
  text-align: center;
}

.process-step .step-num {
  width: 4rem;
  height: 4rem;
  background: rgba(201,169,98,0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 0 auto 1rem;
}

.process-step h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-dark .process-step h4 { color: white; }

.process-step p {
  font-size: 0.9375rem;
  color: var(--dark-grey);
}

.section-dark .process-step p { color: var(--silver); }

/* Why Choose Us */
.reason-item {
  display: flex;
  gap: 1rem;
}

.reason-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(201,169,98,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.reason-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.section-dark .reason-item h4 { color: white; }

.reason-item p {
  font-size: 0.875rem;
  color: var(--dark-grey);
}

.section-dark .reason-item p { color: var(--silver); }

/* Quote CTA Card */
.cta-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  padding: 2rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-row .icon-box {
  width: 3rem;
  height: 3rem;
  background: rgba(201,169,98,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-row p { font-size: 0.875rem; color: var(--silver); }
.contact-row a, .contact-row span { color: white; font-weight: 500; }
.contact-row a:hover { color: var(--gold); }

/* Blog */
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--light-bg);
  border-radius: 0.5rem;
  overflow: hidden;
}

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

.blog-card .blog-img {
  width: 100%;
  height: 12rem;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 640px) { .blog-card .blog-img { width: 16rem; height: auto; } }

.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-img img { transform: scale(1.05); }

.blog-card .blog-body { padding: 1rem; }

@media (min-width: 640px) { .blog-card .blog-body { padding: 1rem 1.5rem 1rem 0; } }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.blog-meta .category {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-meta .date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--silver);
  font-size: 0.75rem;
}

/* Sidebar */
.sidebar-card {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.sidebar-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.category-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.category-list li:last-child { border-bottom: none; }

.category-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--dark-grey);
}

.category-list a:hover { color: var(--gold); }

.category-list .count {
  background: rgba(26,39,68,0.05);
  color: var(--navy);
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-weight: 500;
}

/* Contact */
.contact-info-card {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-row .icon-circle {
  width: 3rem;
  height: 3rem;
  background: rgba(201,169,98,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-row h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-info-row p,
.contact-info-row a {
  font-size: 0.9375rem;
  color: var(--dark-grey);
}

.contact-info-row a:hover { color: var(--gold); }

/* Form */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark-grey);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--dark-grey);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,98,0.1);
}

textarea.form-control { resize: vertical; }

select.form-control { cursor: pointer; }

.form-grid {
  display: grid;
  gap: 1.25rem;
}

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

/* Checkbox / Radio */
.form-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: border-color 0.3s;
}

.form-check:hover { border-color: var(--gold); }

.form-check input { accent-color: var(--gold); }

.form-check span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--dark-grey);
}

/* Map placeholder */
.map-placeholder {
  background: #e5e7eb;
  border-radius: 0.5rem;
  height: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--silver);
}

/* Tab Buttons */
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  background: #f3f4f6;
  color: var(--dark-grey);
}

.tab-btn:hover { background: #e5e7eb; }

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

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.5s ease-in-out; }

/* Trading alternating */
.trading-row {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .trading-row { flex-direction: row; }
  .trading-row.reverse { flex-direction: row-reverse; }
}

.trading-row > div { flex: 1; }

.trading-row img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
  background: var(--navy);
  color: white;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@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-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo img { height: 90px; width: auto; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.25); }

.footer-logo h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-logo span {
  font-size: 0.625rem;
  color: var(--silver);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  font-family: 'Inter', sans-serif;
}

.footer p {
  color: var(--silver);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
  color: var(--silver);
  font-size: 0.9375rem;
  transition: color 0.3s;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 0.25rem; }

.footer-contact a {
  color: var(--silver);
  font-size: 0.9375rem;
  transition: color 0.3s;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding: 1.25rem 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.footer-bottom p {
  color: var(--silver);
  font-size: 0.875rem;
  margin: 0;
}

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

.footer-bottom-links a {
  color: var(--silver);
  font-size: 0.875rem;
  transition: color 0.3s;
}

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

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background 0.3s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover { background: #128c7e; }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Fade In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 0.8s ease-in-out; }

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

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

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

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

.page-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 1rem auto 0;
  font-size: 1.0625rem;
}

/* Dark card */
.dark-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.dark-card svg {
  color: var(--gold);
  margin: 0 auto 1rem;
}

.dark-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

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

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
@media (min-width: 640px) { .sm-flex-row { flex-direction: row; } }
@media (min-width: 1024px) { .lg-grid-2 { grid-template-columns: repeat(2, 1fr); } }
.hidden { display: none; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 640px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-8 { padding: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.rounded-lg { border-radius: 0.5rem; }
.bg-white { background: white; }
.shadow-lg { box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); }
.font-bold { font-weight: 700; }
.text-white { color: white; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.leading-relaxed { line-height: 1.7; }
.object-cover { object-fit: cover; }
.rounded { border-radius: 0.375rem; }
