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

:root {
  --color-primary: #1B2A4A;
  --color-accent: #C4963E;
  --color-bg: #FFFFFF;
  --color-surface: #F4F4F5;
  --color-text: #1A1A1A;
  --color-text-light: #6B7280;
  --color-white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--color-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }

.section-title {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-accent);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

p {
  font-size: 1rem;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: text-decoration 0.2s;
}

a:hover {
  text-decoration: underline;
}

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

.section {
  padding: 5rem 0;
}

.section-alt {
  padding: 5rem 0;
  background: var(--color-surface);
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  filter: brightness(0.9);
  color: var(--color-white);
}

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

.btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

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

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

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--color-primary);
  z-index: 1000;
  padding: 1rem 0;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--color-white);
  font-weight: 700;
}

.logo-text span {
  color: var(--color-accent);
}

.logo:hover .logo-text {
  color: var(--color-white);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.nav-links a.active {
  color: var(--color-accent);
}

.nav-links .btn {
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1B2A4A 0%, #2A3F6A 100%);
  padding: 6rem 0 4rem;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  color: var(--color-white);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero .btn {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--color-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

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

.testimonial-card::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--color-accent);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-quote {
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.cta-banner {
  background: var(--color-accent);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-banner .btn {
  background: var(--color-white);
  color: var(--color-accent);
}

.cta-banner .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

footer h3 {
  font-family: 'Playfair Display', serif;
  color: var(--color-white);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

footer a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.footer-links {
  list-style: none;
  font-size: 0.95rem;
  line-height: 2;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.sra-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-top: 1rem;
}

.page-header {
  background: linear-gradient(135deg, #1B2A4A 0%, #2A3F6A 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-header h1 {
  color: var(--color-white);
  font-size: 3rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  font-weight: 300;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--color-surface);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-text-light);
  overflow: hidden;
}

.team-member h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.team-member .role {
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.team-member .qualifications {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.accreditations {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(196, 150, 62, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form button[type="submit"] {
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.detail-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  background: var(--color-surface);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-message {
  display: none;
  padding: 1rem;
  background: #ECFDF5;
  color: #065F46;
  border-radius: 6px;
  margin-top: 1rem;
}

.error-message {
  display: none;
  padding: 1rem;
  background: #FEF2F2;
  color: #991B1B;
  border-radius: 6px;
  margin-top: 1rem;
}

.text-center {
  text-align: center;
}

.img-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.img-split img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  object-fit: cover;
  max-height: 450px;
}

.img-split .img-split-text h2 {
  text-align: left;
  margin-bottom: 1.25rem;
}

.img-split .img-split-text h2::after {
  display: none;
}

.img-split .img-split-text p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero h1 { font-size: 2rem; }

  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-alt {
    padding: 3rem 0;
  }

  .hero {
    min-height: auto;
    text-align: center;
    padding: 7rem 0 3rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: var(--color-primary);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s;
    gap: 1.5rem;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .img-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-header {
    padding: 6rem 0 3rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}