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

:root {
  --gold: #C6A94E;
  --gold-dark: #A8893A;
  --gold-light: #D4B85C;
  --dark: #1a1a1a;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --bg-light: #f9f9f9;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}

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

ul { list-style: none; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}

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

.logo img {
  height: 55px;
  width: auto;
}

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

.nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 12px;
  transition: color 0.3s;
}

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

.nav .sep {
  color: var(--gold);
  font-size: 10px;
  user-select: none;
}

.nav-cta {
  background: var(--dark);
  color: var(--white) !important;
  padding: 12px 24px !important;
  letter-spacing: 1px !important;
  font-size: 12px !important;
  margin-left: 10px;
  transition: background 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.hero-image {
  background: url('../images/hero.jpg') center/cover no-repeat;
  min-height: 400px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 50px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-content h2 {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--dark);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 25px;
}

.hero-content p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 520px;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}

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

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

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

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}

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

/* ===== WHAT WE DO ===== */
.what-we-do {
  padding: 80px 0;
  background: var(--white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 15px;
  max-width: 700px;
  margin-bottom: 50px;
  line-height: 1.8;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.what-we-do-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.what-we-do-image {
  border-radius: 4px;
  overflow: hidden;
}

.what-we-do-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===== PROCESS STEPS ===== */
.process {
  padding: 80px 0;
  background: var(--bg-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 15px;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark);
}

.process-step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== OUR TEAM ===== */
.team {
  padding: 80px 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: start;
}

.team-heading-col {
  padding-top: 10px;
}

.team-heading-col h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 15px;
}

.team-heading-col .gold-line {
  width: 100px;
  height: 3px;
  background: var(--gold);
}

.team-members {
  display: flex;
  gap: 60px;
  justify-content: center;
}

.team-member {
  text-align: center;
  max-width: 250px;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--gold);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.team-member h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 5px;
}

.team-member .role {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-member p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: start;
}

.testimonials-heading h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--dark);
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 50%;
  padding: 0 20px;
}

.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 10px;
  opacity: 0.7;
}

.testimonial-slide blockquote {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  font-size: 13px;
  color: var(--text-light);
}

.testimonial-author strong {
  display: block;
  color: var(--text);
}

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.carousel-btn {
  width: 45px;
  height: 45px;
  border: none;
  background: var(--gold);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

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

/* ===== ABOUT PAGE ===== */
.page-hero {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-intro {
  padding: 80px 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-grid img {
  border-radius: 4px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-intro-grid h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-intro-grid p {
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Vision section */
.vision {
  padding: 80px 0;
  background: var(--bg-light);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vision h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 20px;
}

.vision p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.vision-image img {
  border-radius: 4px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===== TEAM PAGE ===== */
.team-detail {
  padding: 80px 0;
}

.team-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: center;
}

.team-detail-grid:nth-child(even) {
  direction: rtl;
}

.team-detail-grid:nth-child(even) > * {
  direction: ltr;
}

.team-detail-photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--gold);
  margin: 0 auto;
}

.team-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.team-detail-info h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 5px;
}

.team-detail-info .role {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  display: block;
}

.team-detail-info p {
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 14px;
}

/* ===== CASE STUDIES ===== */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding: 80px 0;
}

.case-study-card {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--white);
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.case-study-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.case-study-card-body {
  padding: 25px;
}

.case-study-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 10px;
}

.case-study-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 15px;
}

.case-study-card .btn {
  padding: 10px 25px;
  font-size: 12px;
}

/* ===== FAQS ===== */
.faqs {
  padding: 80px 0;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 25px 0;
}

.faq-item:first-child {
  border-top: 1px solid #e5e5e5;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--dark);
  font-weight: 600;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: 0.3s;
}

.faq-item.active .faq-toggle {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 15px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px 0;
}

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

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 45px;
  height: 45px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail div strong {
  display: block;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-detail div span {
  color: var(--text-light);
  font-size: 14px;
}

.contact-form {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 4px;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.3s;
  background: var(--white);
}

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

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

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

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-banner p {
  color: #ccc;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: #aaa;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-copyright {
  text-align: center;
  font-size: 13px;
  color: #777;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #aaa;
  font-size: 13px;
  transition: color 0.3s;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 300px;
  }

  .hero-content {
    padding: 40px 30px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .what-we-do-grid,
  .about-intro-grid,
  .vision-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-heading-col .gold-line {
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-slide {
    min-width: 100%;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .team-detail-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-detail-grid:nth-child(even) {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    transition: transform 0.3s;
  }

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

  .nav .sep {
    display: none;
  }

  .nav a {
    padding: 12px 0;
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 10px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content h2 {
    font-size: 24px;
  }

  .section-title {
    font-size: 28px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .team-members {
    flex-direction: column;
    align-items: center;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}
