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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  color: #1a1a2e;
  background: #1a1a2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea {
  font-family: 'Raleway', sans-serif;
}

/* ===== VARIABLES ===== */
:root {
  --dark: #1a1a2e;
  --gold: #c8a951;
  --gold-hover: #b8993f;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --gray: #6b7280;
  --border: #e5e5e5;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', sans-serif;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 48px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.3s;
}

.btn-gold:hover {
  background: var(--gold-hover);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  background: transparent;
}

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

/* ===== TOP BAR ===== */
.top-bar {
  background: #121221;
  color: var(--white);
  padding: 8px 0;
  font-size: 0.875rem;
}

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

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-social a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.top-bar-social a:hover {
  color: var(--gold);
}

.top-bar-social svg, .top-bar-contact svg {
  width: 16px;
  height: 16px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.top-bar-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* ===== NAVBAR ===== */
.navbar {
  background: var(--dark);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  position: relative;
  z-index: 100;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.76rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.3s;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--dark);
  padding: 16px;
}

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

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s;
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 16px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 8px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 560px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== FEATURE CARDS ===== */
.feature-cards {
  position: relative;
  z-index: 20;
  margin-top: -64px;
  padding: 0 16px;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  color: var(--white);
}

.feature-card:nth-child(odd) {
  background: #121221;
}

.feature-card:nth-child(even) {
  background: var(--gold);
}

.feature-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 1;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--dark);
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  overflow: hidden;
}

.why-card-image {
  position: relative;
  height: 256px;
  overflow: hidden;
}

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

.why-card:hover .why-card-image img {
  transform: scale(1.1);
}

.why-card-content {
  padding-top: 24px;
}

.why-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 16px;
}

.why-card-content a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: color 0.3s;
}

.why-card-content a:hover {
  color: var(--gold-hover);
}

/* ===== PROJECTS ===== */
.projects-section {
  background: #121221;
  padding: 80px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.project-item {
  position: relative;
  height: 288px;
  overflow: hidden;
}

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

.project-item:hover img {
  transform: scale(1.1);
}

.project-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}

.project-item:hover::after {
  background: rgba(0,0,0,0.3);
}

.projects-cta {
  margin-top: 40px;
  text-align: center;
}

/* ===== STATS ===== */
.stats-section {
  background: var(--dark);
  padding: 64px 0;
}

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

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

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}

/* ===== SERVICES GRID ===== */
.services-section {
  background: #121221;
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-card svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.26rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--gray);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--dark);
  padding: 80px 0;
}

.testimonial-content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  color: var(--gold);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonial-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  color: var(--white);
  transition: all 0.3s;
}

.testimonial-nav button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.testimonial-nav svg {
  width: 20px;
  height: 20px;
}

/* ===== PARTNERS ===== */
.partners-section {
  background: #121221;
  padding: 80px 0;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.partner-item {
  width: 128px;
  height: 64px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.partner-item:hover {
  filter: grayscale(0%);
}

.partner-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
font-weight: 500
}

.footer-links a {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  font-weight: 500
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500
}

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

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  display: flex;
}

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

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 64px;
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.67);
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 16px;
  text-align: center;
  width: 100%;
}

.page-hero-content .section-label {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 2.65rem;
  font-weight: 700;
  color: var(--white);
}

/* ===== ABOUT CONTENT ===== */
.about-section {
  background: var(--dark);
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.about-image {
  position: relative;
  height: 384px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .section-label {
  text-align: left;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 24px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--white);
}

.values-list li svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact-section {
  background: #121221;
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.contact-info .section-label {
  text-align: left;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-info > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 32px;
  font-weight: 500;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 53px;
  background: var(--gold);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 25px;
  height: 25px;
  color: var(--white);
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
}

/* Contact form */
.contact-form-wrapper {
  background: var(--dark);
  padding: 32px;
  border-radius: 12px;
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--border);
  background: #121221;
  padding: 12px 16px;
  font-size: 1rem;
  color: white;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form textarea {
  resize: none;
  min-height: 120px;
}

.form-success {
  border: 1px solid #86efac;
  background: #f0fdf4;
  padding: 16px;
  font-size: 1rem;
  color: #166534;
  margin-bottom: 16px;
  display: none;
}

.form-success.show {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .page-hero-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .feature-cards-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
