.center-text {
  text-align: center;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* color palette from logo: deep green (#1D472E) + cream background */
:root, html[data-theme="light"] {
  --bg-primary: #F9F7F0;        /* soft cream */
  --bg-secondary: #ffffff;
  --text-primary: #1D2E24;       /* deep forest */
  --text-secondary: #3A4A3E;
  --accent: #1D472E;             /* logo green */
  --accent-soft: #E3F0E3;
  --accent-gold: #C89F68;         /* warm gold for highlights */
  --border-light: #DDD6C8;
  --card-bg: #ffffff;
  --footer-bg: #173821;
  --footer-text: #EAE7DD;
  --hero-overlay-light: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(245,245,245,0.88) 100%); /* bright white overlay */
  --hero-overlay-dark: linear-gradient(135deg, rgba(23,56,30,0.85) 0%, rgba(38,78,42,0.75) 100%);
  --btn-hover: #28633b;
  --shadow: 0 25px 40px -18px rgba(30,60,30,0.3);
  --stat-bg: #F0F5EA;
}

html[data-theme="dark"] {
  --bg-primary: #182218;
  --bg-secondary: #253A28;
  --text-primary: #f0f5ea;
  --text-secondary: #cfddcf;
  --accent: #68B88D;             /* brighter green */
  --accent-soft: #2D4D33;
  --accent-gold: #E5C28E;
  --border-light: #4C6B4C;
  --card-bg: #253A28;
  --footer-bg: #0C1F0C;
  --footer-text: #dde8da;
  --hero-overlay-light: linear-gradient(135deg, rgba(10,35,15,0.92) 0%, rgba(25,60,25,0.8) 100%); /* dark green in dark mode */
  --hero-overlay-dark: linear-gradient(135deg, rgba(10,35,15,0.92) 0%, rgba(25,60,25,0.8) 100%);
  --btn-hover: #7CCF9F;
  --shadow: 0 25px 40px -10px rgba(0,0,0,0.7);
  --stat-bg: #2A402E;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3, h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
h2:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 70px;
  height: 5px;
  background: var(--accent-gold);
  border-radius: 4px;
}

section {
  padding: 6rem 0;
}

/* === BUTTONS & LINKS === */
.btn {
  background: var(--accent);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 8px 18px rgba(0, 40, 0, 0.15);
  transition: 0.2s;
  border: none;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn i { font-size: 1.3rem; }
.btn:hover {
  background: var(--btn-hover);
  transform: scale(1.02) translateY(-2px);
  border-color: var(--accent-gold);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--accent);
  color: white;
}

/* === HEADER === */
header {
  background-color: var(--bg-secondary);
  box-shadow: 0 6px 20px rgba(0,20,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--accent-gold);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.3rem 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Jost', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo img {
  height: 70px;
  width: auto;
  background: white;
  padding: 5px 12px;
  border-radius: 10px;

}
#contact {
  background-color: #F4F9F6;
  padding: 80px 20px;
}

#contact h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  color: #0B5D3B;
}

#contact .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  color: #555;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Contact Form */
.contact-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #0B5D3B;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px;
  margin-bottom: 18px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1px solid #17A65B;
}

.contact-form textarea {
  height: 130px;
  resize: none;
}

.contact-form button {
  background-color: #0B5D3B;
  color: white;
  padding: 14px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  width: 100%;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: #17A65B;
}

nav ul {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 3px solid transparent;
  transition: 0.2s;
  font-size: 1.1rem;
}
nav a.active, nav a:hover {
  border-bottom-color: var(--accent-gold);
  color: var(--accent);
}
#themeBtn {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 40px;
  padding: 0.5rem 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
#themeBtn:hover { background: var(--btn-hover); }

/* === HERO with theme-aware overlay === */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

/* Light mode hero background: bright white overlay + image */
html[data-theme="light"] .hero {
  background: var(--hero-overlay-light), url('https://images.unsplash.com/photo-1581092160560-4d7e6d0b2f3a?auto=format&fit=crop&w=2000&q=80');
}

/* Dark mode hero background: darker green overlay + same image */
html[data-theme="dark"] .hero {
  background: var(--hero-overlay-dark), url('https://images.unsplash.com/photo-1581092160560-4d7e6d0b2f3a?auto=format&fit=crop&w=2000&q=80');
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  color: var(--text-primary); /* text color adapts to theme */
}

/* Light mode hero text should be dark for readability */
html[data-theme="light"] .hero-content {
  color: #1D2E24; /* deep forest, same as text-primary */
}

html[data-theme="dark"] .hero-content {
  color: white;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

html[data-theme="light"] .hero h1 {
  text-shadow: 0 2px 10px rgba(255,255,255,0.5);
}

.hero h1 span {
  color: var(--accent-gold);
  border-bottom: 4px solid var(--accent-gold);
}
.hero p {
  font-size: 1.5rem;
  margin: 2rem 0 2.8rem;
  opacity: 0.95;
  font-weight: 500;
}

/* floating stats badge */
.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}
.stat-item {
  background: rgba(255,255,240,0.15);
  backdrop-filter: blur(8px);
  padding: 1rem 2rem;
  border-radius: 80px;
  border: 1px solid var(--accent-gold);
  font-weight: 600;
}

html[data-theme="light"] .stat-item {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--accent-gold);
  color: var(--text-primary);
}

.stat-item i { color: var(--accent-gold); margin-right: 10px; }

/* === about with floating image & cards === */
/* About Us - Elegant Styling */
#about {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(var(--border-light) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Elegant Header */
.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.header-decoration .line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.header-decoration i {
  font-size: 2.5rem;
  color: var(--accent-gold);
  animation: gentle-rotate 10s infinite ease-in-out;
}

@keyframes gentle-rotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(5deg); }
}

.about-header h2 {
  font-size: 3.2rem;
  font-family: 'Jost', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.about-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 3px;
}

.sub-line {
  font-size: 1.3rem;
  color: var(--accent-gold);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 1.5rem;
}

/* Elegant Typography */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.lead {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 2rem;
  padding: 0 1rem;
  border-left: 4px solid var(--accent-gold);
  padding-left: 2rem;
  font-family: 'Jost', sans-serif;
}

.regular {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.highlight-text {
  color: var(--accent-gold);
  font-weight: 600;
  background: linear-gradient(120deg, transparent 0%, transparent 40%, rgba(201, 162, 39, 0.1) 100%);
  padding: 0.2rem 0.5rem;
}

.with-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.with-icon i {
  color: var(--accent-gold);
  font-size: 1.3rem;
  animation: slide-right 2s infinite ease-in-out;
}

@keyframes slide-right {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Pull Quote Style */
.pull-quote {
  display: flex;
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-secondary), transparent);
  border-radius: 30px;
  position: relative;
}

.quote-mark {
  font-size: 6rem;
  font-family: 'Georgia', serif;
  color: var(--accent-gold);
  line-height: 1;
  opacity: 0.5;
  margin-top: -1rem;
}

.quote-content p {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 500;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h3 {
  font-size: 2.5rem;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin: 0 auto;
  position: relative;
}

.title-underline::before,
.title-underline::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 3px;
  background: var(--accent-gold);
  top: 0;
}

.title-underline::before {
  left: -15px;
}

.title-underline::after {
  right: -15px;
}

/* Work Grid - Beautiful Cards */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.work-card {
  background: var(--card-bg);
  padding: 2.5rem 1.8rem;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.2);
}

.work-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px -15px var(--accent-gold);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-gold), #e6b422);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: all 0.3s;
}

.work-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-icon i {
  font-size: 2.2rem;
  color: white;
}

.work-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.work-card p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.work-card:hover .card-shine {
  left: 100%;
}

/* Commitment Section - Elegant Gradient */
.commitment {
  margin: 5rem 0;
  background: linear-gradient(145deg, var(--accent-deep), #0a2a3a);
  border-radius: 60px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.commitment::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.commitment-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.commitment-icon {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.commitment-icon i {
  font-size: 3rem;
  color: var(--accent-gold);
}

.commitment-text {
  flex: 1;
}

.commitment-text h3 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 1rem;
  font-family: 'Jost', sans-serif;
}

.commitment-lead {
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.commitment-body {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

/* Footer */
.about-footer {
  margin-top: 4rem;
  text-align: center;
}

.footer-decoration {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-decoration .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.5;
  animation: bounce 2s infinite;
}

.footer-decoration .dot:nth-child(2) {
  animation-delay: 0.3s;
}

.footer-decoration .dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.footer-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 1rem;
}

.footer-info i {
  color: var(--accent-gold);
  margin-right: 0.5rem;
}

.separator {
  color: var(--accent-gold);
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1000px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commitment-content {
    flex-direction: column;
    text-align: center;
  }

  .about-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .pull-quote {
    flex-direction: column;
    gap: 0.5rem;
  }

  .quote-mark {
    font-size: 4rem;
  }

  .footer-info {
    flex-direction: column;
    gap: 0.8rem;
  }

  .separator {
    display: none;
  }

  .header-decoration .line {
    width: 30px;
  }
}
/* === SERVICES (interactive hover + icons) === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--card-bg);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.25s;
  border: 1px solid var(--border-light);
  position: relative;
}
.service-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 30px 50px -20px #1D472E80;
  border-color: var(--accent-gold);
}
.service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.service-card:hover .service-image img { transform: scale(1.08); }
.service-content {
  padding: 2rem 1.5rem 2rem;
  position: relative;
}
.service-content i.service-icon {
  position: absolute;
  top: -25px;
  right: 25px;
  background: var(--accent-gold);
  color: #1D472E;
  font-size: 2rem;
  padding: 0.8rem;
  border-radius: 30px;
  box-shadow: 0 8px 14px rgba(0,0,0,0.15);
}
.service-content h3 { font-size: 1.9rem; margin-bottom: 1rem; color: var(--accent); }
.service-content p { color: var(--text-secondary); }

/* === CLIENTS / PARTNERS (social proof) === */
#clients {
  background: var(--bg-primary);
  text-align: center;
}
.marquee {
  display: flex;
  gap: 4rem;
  overflow-x: auto;
  padding: 2rem 0;
  scrollbar-width: none;
  white-space: nowrap;
  animation: scroll 22s linear infinite;
}
.marquee span {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.marquee i { color: var(--accent-gold); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === CONTACT elevated === */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--card-bg);
  border-radius: 3rem;
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  margin-top: 2rem;
}
.contact-info .info-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  background: var(--stat-bg);
  padding: 1.2rem 2rem;
  border-radius: 50px;
}
.info-box i { font-size: 2rem; color: var(--accent-gold); width: 40px; }

/* === FOOTER with extra links === */
/* Footer Styles - Enhanced */
footer {
  background: linear-gradient(145deg, var(--footer-bg), #0a1a2b);
  color: var(--footer-text);
  padding: 4rem 2rem 2rem;
  margin-top: 3rem;
  position: relative;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

/* Decorative top border */
.footer-top-decoration {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  justify-content: center;
}

.footer-top-decoration span {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  border-radius: 3px;
  animation: footerGlow 3s infinite;
}

.footer-top-decoration span:nth-child(2) { animation-delay: 0.2s; width: 70px; }
.footer-top-decoration span:nth-child(3) { animation-delay: 0.4s; width: 90px; }
.footer-top-decoration span:nth-child(4) { animation-delay: 0.6s; width: 70px; }
.footer-top-decoration span:nth-child(5) { animation-delay: 0.8s; width: 50px; }

@keyframes footerGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Footer Grid */
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
}

/* Brand Section */
.footer-brand .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-brand .logo-wrapper i {
  font-size: 2rem;
  color: var(--accent-gold);
  background: rgba(201, 162, 39, 0.1);
  padding: 0.8rem;
  border-radius: 15px;
}

.footer-brand .logo-wrapper h3 {
  font-size: 1.8rem;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.footer-brand .logo-wrapper h3 span {
  display: block;
  font-size: 1rem;
  color: var(--accent-gold);
  letter-spacing: 2px;
}

.reg {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reg::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent-gold);
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold), #e6b422);
  color: #0a1a2b;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  border-left: 2px solid var(--accent-gold);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

/* Section Headers */
.footer-links h3,
.footer-legal h3,
.footer-social h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-links h3::after,
.footer-legal h3::after,
.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links h3 i,
.footer-legal h3 i,
.footer-social h3 i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

/* Links Lists */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s;
  opacity: 0.8;
}

.footer-links a i {
  font-size: 0.8rem;
  color: var(--accent-gold);
  transition: transform 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(5px);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Legal Section */
.footer-legal p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-legal p i {
  color: var(--accent-gold);
  width: 20px;
}

.footer-legal p:hover {
  opacity: 1;
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--footer-text);
  text-decoration: none;
  transition: all 0.3s;
  opacity: 0.8;
}

.social-link i {
  width: 30px;
  height: 30px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  transition: all 0.3s;
}

.social-link:hover {
  opacity: 1;
  transform: translateX(5px);
}

.social-link:hover i {
  background: var(--accent-gold);
  color: #0a1a2b;
  transform: rotate(360deg);
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--accent-gold);

  display: flex;
  flex-direction: column;      /* Stack items vertically */
  justify-content: center;     /* Center vertically */
  align-items: center;         /* Center horizontally */

  text-align: center;          /* Ensures text is centered */
  gap: 1rem;
}

.footer-note {
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
}

.footer-note p {
  font-size: 1rem;
  text-align: center;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-meta i {
  color: var(--accent-gold);
  margin-right: 0.3rem;
}

.footer-meta .separator {
  color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 850px) {
  .hero h1 { font-size: 3rem; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  h2 { font-size: 2.4rem; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-meta {
    justify-content: center;
  }

  .footer-top-decoration span {
    width: 30px;
  }

  .footer-top-decoration span:nth-child(2) { width: 40px; }
  .footer-top-decoration span:nth-child(3) { width: 50px; }
  .footer-top-decoration span:nth-child(4) { width: 40px; }
  .footer-top-decoration span:nth-child(5) { width: 30px; }
}

@media (max-width: 600px) {
  .footer-grid {
    gap: 2rem;
  }

  .footer-meta {
    flex-direction: column;
    gap: 0.3rem;
  }

  .footer-meta .separator {
    display: none;
  }

  .footer-brand .logo-wrapper h3 {
    font-size: 1.5rem;
  }
}

/* Add these to your existing CSS */
:root {
  --footer-bg: #0a1a2b;
  --footer-text: #d3e3f0;
  --accent-gold: #c9a227;
}
