:root {
  --royal-purple: #4B0082;
  --deep-purple: #2D1560;
  --dark-purple: #1A0A30;
  --old-gold: #C8A415;
  --bright-gold: #E6C220;
  --light-gold: #F5E6A3;
  --white: #FFFFFF;
  --off-white: #F8F6F0;
  --light-gray: #E8E4DA;
  --dark-text: #1A1A1A;
  --medium-text: #444444;
  --font-heading: "Cinzel", serif;
  --font-body: "Raleway", sans-serif;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--old-gold), var(--bright-gold));
  color: var(--dark-purple);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--bright-gold), var(--old-gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 164, 21, 0.4);
}

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

.btn-secondary:hover {
  background: var(--old-gold);
  color: var(--dark-purple);
  transform: translateY(-2px);
}

.btn-doc {
  background: var(--royal-purple);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-doc:hover {
  background: var(--deep-purple);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 0, 130, 0.3);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--old-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-purple);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--medium-text);
  max-width: 700px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 10, 48, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 2rem;
  color: var(--old-gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--old-gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--old-gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 10, 48, 0.92) 0%, rgba(75, 0, 130, 0.75) 50%, rgba(26, 10, 48, 0.88) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 40px 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--old-gold);
  margin-bottom: 10px;
}

.hero-location {
  font-size: 1rem;
  color: var(--light-gold);
  margin-bottom: 25px;
}

.hero-location i {
  margin-right: 6px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.ticker-strip {
  background: var(--dark-purple);
  padding: 14px 0;
  overflow: hidden;
  border-top: 2px solid var(--old-gold);
  border-bottom: 2px solid var(--old-gold);
}

.ticker-content {
  display: flex;
  gap: 50px;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}

.ticker-content span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--old-gold);
}

.ticker-content span i {
  margin-right: 6px;
  color: var(--bright-gold);
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.about {
  padding: 100px 0;
  background: var(--off-white);
}

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

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(26, 10, 48, 0.2);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--old-gold), var(--bright-gold));
  color: var(--dark-purple);
  padding: 20px 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(200, 164, 21, 0.4);
}

.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content .section-label {
  display: block;
}

.about-text {
  font-size: 1rem;
  color: var(--medium-text);
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 35px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  flex: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border-bottom: 3px solid var(--old-gold);
}

.stat-item i {
  font-size: 1.5rem;
  color: var(--royal-purple);
  margin-bottom: 8px;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-purple);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--medium-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  padding: 40px 30px;
  background: var(--off-white);
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--royal-purple), var(--old-gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(75, 0, 130, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--royal-purple), var(--deep-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--old-gold);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-purple);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--medium-text);
  line-height: 1.7;
}

.cta-banner {
  padding: 20px 0;
  background: var(--dark-purple);
}

.cta-content {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.9), rgba(26, 10, 48, 0.85));
}

.cta-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.documents {
  padding: 100px 0;
  background: var(--off-white);
}

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

.doc-card {
  background: var(--white);
  padding: 35px 28px;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(75, 0, 130, 0.12);
  border-color: var(--old-gold);
}

.doc-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--old-gold), var(--bright-gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.doc-icon i {
  font-size: 1.5rem;
  color: var(--dark-purple);
}

.doc-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-purple);
  margin-bottom: 10px;
  line-height: 1.4;
}

.doc-card p {
  font-size: 0.88rem;
  color: var(--medium-text);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.doc-card .btn-doc {
  align-self: flex-start;
}

.process-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-purple) 0%, var(--royal-purple) 100%);
}

.process-section .section-label {
  color: var(--bright-gold);
}

.process-section .section-title {
  color: var(--white);
}

.process-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 30px 15px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(200, 164, 21, 0.2);
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--old-gold);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--old-gold);
  line-height: 1;
  margin-bottom: 12px;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.process-connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
  color: var(--old-gold);
  font-size: 1.2rem;
}

.why-us {
  padding: 100px 0;
  background: var(--white);
}

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

.why-content .section-label {
  display: block;
}

.why-list {
  list-style: none;
  margin-top: 30px;
}

.why-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.why-list li i {
  font-size: 1.3rem;
  color: var(--old-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.why-list h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-purple);
  margin-bottom: 4px;
}

.why-list p {
  font-size: 0.9rem;
  color: var(--medium-text);
  line-height: 1.6;
}

.why-image img {
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(26, 10, 48, 0.2);
}

.contact {
  padding: 100px 0;
  background: var(--off-white);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--royal-purple), var(--deep-purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.1rem;
  color: var(--old-gold);
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--dark-purple);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--medium-text);
  line-height: 1.6;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.contact-socials a {
  width: 45px;
  height: 45px;
  background: var(--dark-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--old-gold);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-socials a:hover {
  background: var(--old-gold);
  color: var(--dark-purple);
  transform: translateY(-3px);
}

.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--old-gold);
}

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

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark-text);
  background: var(--off-white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--royal-purple);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.footer {
  background: var(--dark-purple);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  font-size: 1.8rem;
}

.footer-about p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--old-gold);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

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

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

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

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.35) !important;
  max-width: 800px;
  margin: 15px auto 0;
  line-height: 1.6;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--royal-purple), var(--deep-purple));
  color: var(--old-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(75, 0, 130, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--old-gold);
  color: var(--dark-purple);
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid,
  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-connector {
    display: none;
  }

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

  .process-step {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 10, 48, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-stats {
    flex-direction: column;
    gap: 15px;
  }

  .services-grid,
  .documents-grid {
    grid-template-columns: 1fr;
  }

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

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

  .why-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

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

  .contact-form-wrap {
    padding: 25px 20px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}