/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #1a1a1a;
}

/* Performance optimizations */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lazy loading optimization */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Critical CSS for above-the-fold content */
.hero {
  will-change: transform;
  contain: layout style paint;
}

.hero-content h1 {
  font-display: swap;
}
</old_str>

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

/* Header */
header {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(218, 165, 32, 0.3);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 4px 16px rgba(218, 165, 32, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 15px 0;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.6),
    0 6px 20px rgba(218, 165, 32, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #DAA520;
  box-shadow: 
    0 4px 15px rgba(218, 165, 32, 0.3),
    0 0 20px rgba(218, 165, 32, 0.2);
  transition: all 0.3s ease;
}

.logo-image:hover {
  box-shadow: 
    0 6px 20px rgba(218, 165, 32, 0.5),
    0 0 30px rgba(218, 165, 32, 0.4);
}

.logo-subtitle {
  font-size: 14px;
  line-height: 1.3;
  color: #DAA520;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Arial', sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

nav li {
  position: relative;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Arial', sans-serif;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #DAA520, #FFD700);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover {
  color: #DAA520;
  background: rgba(218, 165, 32, 0.1);
  transform: translateY(-2px);
  text-shadow: 0 2px 8px rgba(218, 165, 32, 0.4);
}

nav a:hover::before {
  width: 100%;
}

nav a.active {
  color: #DAA520;
  background: rgba(218, 165, 32, 0.15);
}

nav a.active::before {
  width: 100%;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  gap: 4px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #DAA520;
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(51, 51, 51, 0.9) 100%),
    url('geometric-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(218, 165, 32, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(218, 165, 32, 0.1) 50%, transparent 70%);
  animation: backgroundShift 8s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% { 
    background: 
      radial-gradient(circle at 20% 80%, rgba(218, 165, 32, 0.3) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
      linear-gradient(45deg, transparent 30%, rgba(218, 165, 32, 0.1) 50%, transparent 70%);
  }
  50% { 
    background: 
      radial-gradient(circle at 80% 20%, rgba(218, 165, 32, 0.3) 0%, transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
      linear-gradient(-45deg, transparent 30%, rgba(218, 165, 32, 0.1) 50%, transparent 70%);
  }
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23DAA520" opacity="0.5"><animate attributeName="r" values="1;3;1" dur="3s" repeatCount="indefinite"/></circle></svg>') repeat;
  background-size: 50px 50px;
  animation: sparkle 4s linear infinite;
  pointer-events: none;
}

@keyframes sparkle {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.hero-content {
  flex: 1;
  z-index: 2;
  position: relative;
  max-width: 600px;
  margin-left: 5%;
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #DAA520, #FFD700, #DAA520);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 3s ease-in-out infinite, textGlow 2s ease-in-out infinite alternate;
  text-shadow: 0 0 30px rgba(218, 165, 32, 0.5);
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes textGlow {
  0% { filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.3)); }
  100% { filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.8)); }
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-block;
  background: linear-gradient(45deg, #DAA520, #FFD700, #DAA520);
  background-size: 300% auto;
  color: #000;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.4),
    0 4px 15px rgba(218, 165, 32, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: buttonPulse 2s infinite, fadeInUp 1s ease-out 1s both;
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 
      0 8px 25px rgba(0, 0, 0, 0.4),
      0 4px 15px rgba(218, 165, 32, 0.3),
      0 0 0 0 rgba(218, 165, 32, 0.7);
  }
  50% {
    box-shadow: 
      0 8px 25px rgba(0, 0, 0, 0.4),
      0 4px 15px rgba(218, 165, 32, 0.3),
      0 0 0 10px rgba(218, 165, 32, 0);
  }
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover {
  transform: translateY(-2px) scale(1.05);
  background-position: 100% 0;
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.5),
    0 8px 25px rgba(218, 165, 32, 0.4),
    0 0 30px rgba(218, 165, 32, 0.6);
}

.btn:hover::before {
  left: 100%;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
  animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.consultant-photo {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 5px solid #DAA520;
  object-fit: cover;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.6),
    0 8px 25px rgba(218, 165, 32, 0.4),
    inset 0 0 0 1px rgba(218, 165, 32, 0.2);
  animation: photoFloat 6s ease-in-out infinite, photoGlow 3s ease-in-out infinite alternate;
  position: relative;
}

@keyframes photoFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

@keyframes photoGlow {
  0% {
    box-shadow: 
      0 15px 40px rgba(0, 0, 0, 0.6),
      0 8px 25px rgba(218, 165, 32, 0.4),
      0 0 20px rgba(218, 165, 32, 0.3);
  }
  100% {
    box-shadow: 
      0 20px 50px rgba(0, 0, 0, 0.7),
      0 12px 35px rgba(218, 165, 32, 0.6),
      0 0 40px rgba(218, 165, 32, 0.8);
  }
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #DAA520, #FFD700, #DAA520, #FFD700, #DAA520);
  animation: rotate 10s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: #111;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: #DAA520;
  margin-bottom: 30px;
}

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

.rcic-logo {
  max-width: 400px;
  height: auto;
  margin: 20px 0;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ccc;
  line-height: 1.8;
}

/* Expert Section */
.expert-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  position: relative;
}

.expert-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(218, 165, 32, 0.05) 2px, rgba(218, 165, 32, 0.05) 4px);
}

.expert-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.expert-text h2 {
  font-size: 3rem;
  color: #DAA520;
  margin-bottom: 10px;
  font-weight: bold;
}

.expert-text h3:first-of-type {
  color: #DAA520;
  font-size: 2.2rem;
  margin: 30px 0 5px;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
}

.expert-text h3:not(:first-of-type) {
  color: #DAA520;
  font-size: 1.6rem;
  margin: 5px 0 25px;
  font-weight: bold;
  text-align: left;
  line-height: 1.3;
}

.expert-text p {
  margin-bottom: 20px;
  color: #ccc;
  line-height: 1.8;
}

.quote {
  margin-top: 30px;
  padding: 20px;
  border-left: 4px solid #DAA520;
  background-color: rgba(218, 165, 32, 0.1);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 4px 15px rgba(218, 165, 32, 0.2);
  border-radius: 5px;
}

.quote p {
  margin-bottom: 10px;
}

.expert-photo {
  width: 100%;
  max-width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 8px solid #DAA520;
  object-fit: cover;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.7),
    0 10px 30px rgba(218, 165, 32, 0.5),
    inset 0 0 0 2px rgba(218, 165, 32, 0.3);
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background-color: #111;
}

.services-section h2 {
  font-size: 3rem;
  color: #DAA520;
  text-align: center;
  margin-bottom: 20px;
}

.services-intro {
  text-align: center;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.service-card {
  background: linear-gradient(135deg, #DAA520, #FFD700);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5),
    0 8px 25px rgba(218, 165, 32, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 12px 35px rgba(218, 165, 32, 0.4),
    0 0 0 1px rgba(255, 215, 0, 0.3);
}

.learn-more {
  text-align: center;
  font-weight: bold;
  color: #000;
  padding: 10px;
  margin-top: auto;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.service-card:hover .learn-more {
  background: rgba(0, 0, 0, 0.2);
  transform: translateX(5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
  color: #000;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.service-content p {
  margin-bottom: 15px;
  flex-shrink: 0;
}

.service-content ul {
  list-style: none;
  flex: 1;
  margin-bottom: 15px;
}

.service-content li {
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.service-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #000;
  font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(218, 165, 32, 0.05) 2px, rgba(218, 165, 32, 0.05) 4px);
}

.testimonials-section h2 {
  font-size: 3rem;
  color: #DAA520;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.testimonials-subtitle {
  text-align: center;
  color: #ccc;
  font-style: italic;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: linear-gradient(135deg, #DAA520, #FFD700);
  padding: 30px;
  border-radius: 10px;
  color: #000;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5),
    0 8px 25px rgba(218, 165, 32, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.2);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(218, 165, 32, 0.2) 0%, transparent 50%),
    linear-gradient(45deg, rgba(255, 215, 0, 0.1) 0%, rgba(218, 165, 32, 0.1) 50%, transparent 100%);
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotate(0deg) translate(0px, 0px); }
  33% { transform: rotate(120deg) translate(10px, -10px); }
  66% { transform: rotate(240deg) translate(-10px, 10px); }
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-card cite {
  font-weight: bold;
  font-style: normal;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: #111;
}

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

.contact-info h2 {
  font-size: 3rem;
  color: #DAA520;
  margin-bottom: 40px;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h3 {
  color: #DAA520;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-item p {
  color: #ccc;
  font-size: 1.1rem;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #DAA520;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #FFD700;
}

.contact-form-container {
  border-radius: 10px;
  padding: 40px;
}

.contact-form-container h3 {
  color: #DAA520;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  margin-bottom: 40px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #333;
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #DAA520;
  box-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}

.form-group select {
  cursor: pointer;
}

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

.captcha-group {
  border: 2px solid #DAA520;
  padding: 15px;
  border-radius: 5px;
  background-color: #0a0a0a;
}

.captcha-group label {
  color: #DAA520;
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}

.robot-captcha {
  background: #0a0a0a;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #333;
}

.captcha-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.captcha-image {
  width: 100px;
  height: 100px;
  border: 2px solid #333;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.captcha-image:hover {
  border-color: #DAA520;
  transform: scale(1.05);
}

.captcha-image.selected {
  border-color: #DAA520;
  background: rgba(218, 165, 32, 0.2);
  box-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
}

.captcha-image.correct {
  border-color: #4CAF50;
  background: rgba(76, 175, 80, 0.2);
}

.captcha-image.incorrect {
  border-color: #f44336;
  background: rgba(244, 67, 54, 0.2);
}

.captcha-instruction {
  text-align: center;
  margin-bottom: 15px;
}

.captcha-instruction p {
  color: #DAA520;
  font-weight: bold;
  margin: 0;
}

.verify-btn {
  width: 100%;
  padding: 12px;
  background: #DAA520;
  color: #000;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.verify-btn:disabled {
  background: #666;
  cursor: not-allowed;
}

.verify-btn:not(:disabled):hover {
  background: #FFD700;
  transform: translateY(-2px);
}

.captcha-status {
  text-align: center;
  font-weight: bold;
  min-height: 20px;
}

.captcha-status.success {
  color: #4CAF50;
}

.captcha-status.error {
  color: #f44336;
}

.form-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Office Visit Section */
.office-visit-section {
  padding: 100px 0;
  background-color: #222;
}

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

.office-info h3 {
  color: #DAA520;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.office-details {
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #DAA520;
}

.office-address {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.office-rating {
  color: #DAA520;
  font-size: 1.1rem;
  font-weight: bold;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Service Detail Pages */
.page-hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(51, 51, 51, 0.9) 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(218, 165, 32, 0.3) 0%, transparent 50%);
  animation: backgroundShift 8s ease-in-out infinite;
}

.page-hero h1 {
  font-size: 3.5rem;
  background: linear-gradient(45deg, #DAA520, #FFD700, #DAA520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 1.3rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-details {
  padding: 100px 0;
  background: #111;
}

.service-overview {
  text-align: center;
  margin-bottom: 60px;
}

.service-overview h2 {
  font-size: 2.5rem;
  color: #DAA520;
  margin-bottom: 20px;
}

.service-overview p {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.program-card {
  background: linear-gradient(135deg, #DAA520, #FFD700);
  padding: 40px;
  border-radius: 15px;
  color: #000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.program-card:hover::before {
  transform: rotate(45deg) translate(20px, 20px);
}

.program-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #000;
}

.program-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.program-card > p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.program-details h4 {
  color: #000;
  font-size: 1.2rem;
  margin: 20px 0 10px 0;
  font-weight: bold;
}

.program-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.program-details li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.program-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000;
  font-weight: bold;
}

.processing-info {
  margin-top: 20px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border-left: 4px solid #000;
}

.processing-info p {
  margin: 0;
  font-weight: bold;
}

.process-section {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  padding: 100px 0;
  margin-top: 60px;
}

.process-section h2 {
  text-align: center;
  color: #DAA520;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: rgba(218, 165, 32, 0.1);
  border: 2px solid #DAA520;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(218, 165, 32, 0.2);
  transform: scale(1.05);
}

.step-number {
  width: 60px;
  height: 60px;
  background: #DAA520;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.process-step h4 {
  color: #DAA520;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.process-step p {
  color: #ccc;
  line-height: 1.6;
}

.super-visa-section {
  margin: 60px 0;
  padding: 40px;
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 15px;
  border: 2px solid rgba(218, 165, 32, 0.3);
}

.super-visa-section h2 {
  color: #DAA520;
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
}

.super-visa-details h3 {
  color: #DAA520;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.super-visa-details h4 {
  color: #DAA520;
  font-size: 1.2rem;
  margin: 20px 0 10px 0;
}

.super-visa-details p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.super-visa-details ul {
  color: #ccc;
  margin-bottom: 20px;
}

.super-visa-details li {
  margin-bottom: 5px;
  line-height: 1.4;
}

.sponsorship-process {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  padding: 60px 40px;
  border-radius: 15px;
  margin-top: 60px;
}

.sponsorship-process h2 {
  text-align: center;
  color: #DAA520;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.cta-section {
  background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
  padding: 60px 0;
  text-align: center;
  color: #000;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

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

.btn-outline {
  background: transparent;
  border: 2px solid #000;
  color: #000;
}

.btn-outline:hover {
  background: #000;
  color: #DAA520;
}

/* Footer */
footer {
  background-color: #000;
  padding: 30px 0;
  text-align: center;
  color: #ccc;
  border-top: 2px solid #DAA520;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }

  .logo-image {
    width: 50px;
    height: 50px;
  }

  .logo-subtitle {
    font-size: 12px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    border-top: 2px solid rgba(218, 165, 32, 0.3);
  }

  nav ul.active {
    display: flex;
  }

  nav li {
    margin: 0;
  }

  nav a {
    display: block;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 0;
    border-bottom: 1px solid rgba(218, 165, 32, 0.1);
  }

  nav a::before {
    display: none;
  }

  nav a:hover {
    background: rgba(218, 165, 32, 0.2);
    transform: none;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 0 50px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    margin-left: 0;
    margin-bottom: 40px;
  }

  .consultant-photo {
    width: 350px;
    height: 350px;
  }

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

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

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

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

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

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

  .section-header h2,
  .expert-text h2,
  .services-section h2,
  .testimonials-section h2,
  .contact-info h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 20px;
  }
}