/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== BASE ===== */
body {
  background: #0C0C0E;
  color: #DDDDE0;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
  font-weight: 400;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(12,12,14,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 70px;
}
.navbar-brand {
  display: flex; align-items: center; gap: 12px;
}
.navbar-brand img { height: 44px; }
.navbar-brand span {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.1rem;
  color: #fff; letter-spacing: 0.5px;
}
.navbar-links { display: flex; gap: 2rem; align-items: center; }
.navbar-links a {
  color: #aaa; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.2s; position: relative;
}
.navbar-links a:hover, .navbar-links a.active { color: #fff; }
.navbar-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: #c8a96e;
}
.navbar-cta {
  background: #101014; border: 1px solid rgba(255,255,255,0.2);
  color: #fff !important; padding: 8px 20px; border-radius: 2px;
  font-size: 0.78rem !important; letter-spacing: 1.5px !important;
  transition: background 0.2s !important;
}
.navbar-cta:hover { background: #1e1e22 !important; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://cdn.gamma.app/rqrn0ohe3uiqn0j/generated-images/ECZ4ROr6GskDwjeC_VbBX.png');
  background-size: cover; background-position: center;
  filter: grayscale(100%) brightness(0.35);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12,12,14,0.85) 40%, rgba(12,12,14,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 120px 3rem 80px;
  display: grid; grid-template-columns: auto 1fr; gap: 4rem;
  align-items: center;
}
.hero-logo-box {
  width: 280px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(16,16,20,0.7);
  padding: 8px; border-radius: 2px;
}
.hero-logo-box img { width: 100%; border-radius: 1px; }
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; color: #fff;
  line-height: 1.15; margin-bottom: 1.2rem;
}
.hero-text p {
  font-size: 1.05rem; color: #bbb;
  max-width: 560px; margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: #101014; border: 1px solid rgba(255,255,255,0.3);
  color: #fff; padding: 14px 32px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; display: inline-block;
  border-radius: 2px;
}
.btn-primary:hover { background: #1e1e22; border-color: #c8a96e; }
.btn-outline {
  background: transparent; border: 1px solid rgba(255,255,255,0.25);
  color: #ddd; padding: 14px 32px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; display: inline-block;
  border-radius: 2px;
}
.btn-outline:hover { border-color: #fff; color: #fff; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative; padding: 160px 3rem 80px;
  text-align: center; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(100%) brightness(0.25);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,12,14,0.6) 0%, rgba(12,12,14,0.95) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: #fff;
  margin-bottom: 0.8rem;
}
.page-hero p { color: #999; font-size: 1rem; max-width: 600px; margin: 0 auto; }
.page-hero .breadcrumb { color: #c8a96e; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }

/* ===== DIVIDER ===== */
.divider { width: 60px; height: 2px; background: #c8a96e; margin: 1.5rem auto; }
.divider-left { margin-left: 0; }

/* ===== SECTION ===== */
.section { padding: 6rem 0; }
.section-light { background: #F3F3F7; color: #101014; }
.section-dark { background: #0C0C0E; }
.section-mid { background: #111115; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }

/* ===== SECTION HEADING ===== */
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: #c8a96e; margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: #fff;
  margin-bottom: 1rem; line-height: 1.25;
}
.section-title.dark { color: #101014; }
.section-body { color: #aaa; max-width: 680px; line-height: 1.9; font-size: 0.97rem; }
.section-body.dark { color: #555; }

/* ===== VISION PILLARS ===== */
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; margin-top: 3rem; }
.pillar {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.pillar:hover { background: rgba(255,255,255,0.03); }
.pillar-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: rgba(200,169,110,0.3); font-weight: 700; margin-bottom: 0.5rem; }
.pillar h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; font-weight: 700; margin-bottom: 0.6rem; }
.pillar p { color: #888; font-size: 0.87rem; line-height: 1.7; }
.pillar.light { border-color: rgba(0,0,0,0.08); }
.pillar.light h4 { color: #101014; }
.pillar.light p { color: #666; }
.pillar.light:hover { background: rgba(0,0,0,0.03); }

/* ===== SERVICE CARDS ===== */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5px; margin-top: 3rem; background: rgba(255,255,255,0.04); }
.service-card {
  background: #0C0C0E; padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.service-card:hover { background: #111115; }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; font-weight: 700; margin-bottom: 0.8rem; }
.service-card p { color: #888; font-size: 0.88rem; line-height: 1.8; }

.service-grid-light { background: rgba(0,0,0,0.06); }
.service-card-light { background: #F3F3F7; }
.service-card-light:hover { background: #eaeaee; }
.service-card-light h3 { color: #101014; }
.service-card-light p { color: #666; }

/* ===== STATS ===== */
.stats-section {
  position: relative; overflow: hidden;
  padding: 7rem 0;
}
.stats-bg {
  position: absolute; inset: 0;
  background-image: url('https://cdn.gamma.app/rqrn0ohe3uiqn0j/generated-images/Lit8ttLUHbDMAp823m10X.png');
  background-size: cover; background-position: center;
  filter: grayscale(100%) brightness(0.15);
}
.stats-overlay { position: absolute; inset: 0; background: rgba(12,12,14,0.88); }
.stats-content { position: relative; z-index: 2; }
.stats-header { text-align: center; margin-bottom: 4rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; }
.stat-item {
  padding: 2.5rem 2rem; text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900; color: #fff;
  margin-bottom: 0.3rem;
}
.stat-label { color: #c8a96e; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.5rem; }
.stat-desc { color: #777; font-size: 0.82rem; line-height: 1.6; }

/* ===== FEATURED PROJECT ===== */
.featured-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 3rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.featured-img { position: relative; overflow: hidden; min-height: 400px; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); transition: transform 0.4s; }
.featured-img:hover img { transform: scale(1.03); }
.featured-body { padding: 3rem 2.5rem; background: #111115; display: flex; flex-direction: column; justify-content: center; }
.featured-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #c8a96e; margin-bottom: 0.6rem; }
.featured-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.featured-sub { color: #777; font-size: 0.85rem; margin-bottom: 1.5rem; }
.featured-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.spec-item { padding: 1rem; border: 1px solid rgba(255,255,255,0.06); }
.spec-label { color: #c8a96e; font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.spec-value { color: #fff; font-weight: 700; font-size: 0.9rem; }
.spec-desc { color: #777; font-size: 0.78rem; margin-top: 2px; }

/* ===== TESTIMONIALS ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5px; margin-top: 3rem; background: rgba(255,255,255,0.04); }
.testimonial-card { background: #111115; padding: 2.5rem 2rem; }
.testimonial-quote { font-size: 2.5rem; color: #c8a96e; line-height: 1; margin-bottom: 1rem; font-family: serif; }
.testimonial-text { color: #bbb; font-size: 0.92rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { color: #c8a96e; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; }

/* ===== INNOVATION ===== */
.innovation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 3rem; background: rgba(0,0,0,0.12); }
.innovation-col { background: #0C0C0E; padding: 2.5rem 2rem; }
.innovation-col-light { background: #F3F3F7; }
.innovation-col h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.innovation-col-light h3 { color: #101014; }
.tech-item { display: flex; align-items: center; gap: 12px; padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.tech-item:last-child { border-bottom: none; }
.tech-item-light { border-bottom-color: rgba(0,0,0,0.06); }
.tech-dot { width: 6px; height: 6px; background: #c8a96e; border-radius: 50%; flex-shrink: 0; }
.tech-text { color: #bbb; font-size: 0.88rem; }
.tech-text-dark { color: #555; }

/* ===== PARTNER SECTION ===== */
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.partner-list { list-style: none; }
.partner-list li { display: flex; gap: 12px; align-items: flex-start; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.partner-list li:last-child { border-bottom: none; }
.partner-check { color: #c8a96e; flex-shrink: 0; margin-top: 2px; }
.partner-list span { color: #bbb; font-size: 0.9rem; }
.partner-cta-box { background: #111115; border: 1px solid rgba(255,255,255,0.06); padding: 2.5rem; }
.partner-cta-box p { color: #888; font-size: 0.92rem; line-height: 1.8; margin-bottom: 1.5rem; }
.partner-cta-btns { display: flex; flex-direction: column; gap: 0.8rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.contact-info-block { margin-bottom: 1.5rem; }
.contact-info-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #c8a96e; margin-bottom: 4px; }
.contact-info-value { color: #ddd; font-size: 0.95rem; }
.contact-hours { background: #111115; border-left: 2px solid #c8a96e; padding: 1.2rem 1.5rem; margin-top: 1.5rem; }
.contact-hours p { color: #888; font-size: 0.87rem; line-height: 1.8; margin: 0; }
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #888; margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: #111115;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 13px 16px; color: #ddd;
  font-family: 'Open Sans', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
  border-radius: 1px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #c8a96e; }
.form-input::placeholder, .form-textarea::placeholder { color: #555; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select option { background: #111115; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; background: #101014; border: 1px solid rgba(255,255,255,0.25);
  color: #fff; padding: 15px; cursor: pointer;
  font-family: 'Open Sans', sans-serif; font-size: 0.82rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.2s; border-radius: 1px;
}
.form-submit:hover { background: #1e1e22; border-color: #c8a96e; }
.success-box { display: none; background: #111115; border: 1px solid rgba(200,169,110,0.3); padding: 2.5rem; text-align: center; }
.success-box h3 { font-family: 'Playfair Display', serif; color: #c8a96e; font-size: 1.4rem; margin-bottom: 0.8rem; }
.success-box p { color: #888; font-size: 0.9rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: #080809; border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 36px; }
.footer-brand span { font-family: 'Playfair Display', serif; color: #fff; font-size: 0.95rem; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { color: #666; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: #c8a96e; }
.footer-copy { color: #444; font-size: 0.78rem; }
.footer-gold { color: #c8a96e; }

/* ===== GOLD ACCENT LINE ===== */
.gold-line { width: 40px; height: 2px; background: #c8a96e; margin-bottom: 1.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-logo-box { width: 220px; }
  .featured-grid, .innovation-grid, .partner-grid, .contact-grid { grid-template-columns: 1fr; }
  .navbar { padding: 0 1.5rem; }
  .navbar-links { gap: 1.2rem; }
  .container { padding: 0 1.5rem; }
  .page-hero { padding: 130px 1.5rem 60px; }
  .hero-content { padding: 110px 1.5rem 60px; }
  .section { padding: 4rem 0; }
}
@media (max-width: 600px) {
  .navbar-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
