/* Base Reset & Variables */
:root {
  --primary-color: #0b1d3a;
  --secondary-color: #d4af37; /* Premium Gold */
  --accent-color: #e63946;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-dark: #121212;
  --border-color: #e5e7eb;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: var(--font-secondary);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Reusable Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 span {
  color: var(--secondary-color);
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

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

.btn-primary:hover {
  background-color: #08152b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
  background-color: #c09c2a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

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

/* Header & Navigation */
header {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #000000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

header.sticky {
  position: fixed;
  top: 0;
  background-color: #000000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.sticky .nav-link {
  color: var(--bg-white);
}

header.sticky .logo h1 {
  color: var(--bg-white);
}

.top-bar {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 10px 0;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.top-bar-info, .top-bar-social {
  display: flex;
  gap: 25px;
}

.top-bar-info i, .top-bar-social i {
  color: var(--secondary-color);
  margin-right: 5px;
}

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

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  transition: padding 0.4s ease;
}

header.sticky .main-nav {
  padding: 14px 0;
}

.logo {
  flex: 1;
}

.logo h1 {
  font-size: 1.6rem;
  color: var(--bg-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin: 0;
}

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

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex: 2;
}

.nav-link {
  color: var(--bg-white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  color: white;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  background: none;
  border: none;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 29, 58, 0.7); /* primary-color with opacity */
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--bg-white);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-subtitle {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 15px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background-color: var(--secondary-color);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  padding-bottom: 30px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: -35px auto 20px;
  position: relative;
  border: 4px solid var(--bg-white);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-card p {
  padding: 0 20px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-features {
  text-align: left;
  padding: 0 30px;
  margin-bottom: 25px;
}

.service-features li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  color: var(--text-dark);
}

.service-features li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--secondary-color);
}

.service-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  color: var(--primary-color);
  box-shadow: var(--shadow);
}

.about-experience h3 {
  font-size: 2.5rem;
  line-height: 1;
}

.about-content h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-list {
  margin-bottom: 30px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.about-list i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Process Section */
.process-section {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.process-section .section-title h2,
.process-section .section-title p {
  color: var(--bg-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255,255,255,0.1);
  border: 2px dashed var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--secondary-color);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.process-step:hover .process-icon {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.95rem;
  color: #ccc;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.pexels.com/photos/120049/pexels-photo-120049.jpeg?auto=compress&cs=tinysrgb&w=2000') center/cover fixed;
  color: var(--bg-white);
}

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

.stat-item i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.stat-number {
  font-size: 3rem;
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
  background-color: var(--bg-white);
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 30px;
  padding-bottom: 20px;
  scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
  display: none; /* Chrome */
}

.testimonial-card {
  flex: 0 0 100%;
  max-width: 600px;
  scroll-snap-align: center;
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  margin: 0 auto;
}

@media(min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.2);
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.stars {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-question {
  color: var(--secondary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--bg-white);
}

.faq-answer p {
  padding: 0 20px 20px;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  background-color: var(--secondary-color);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 600;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: #ccc;
  padding-top: 80px;
}

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

.footer-logo h2 {
  color: var(--bg-white);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--secondary-color);
}

.footer-about {
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bg-white);
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.footer-title {
  color: var(--bg-white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

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

.footer-links a {
  color: #ccc;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--secondary-color);
  margin-top: 5px;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  outline: none;
  border-radius: 4px 0 0 4px;
}

.newsletter-form button {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: bold;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Inner Page Header */
.page-header {
  height: 350px;
  background: linear-gradient(rgba(11, 29, 58, 0.8), rgba(11, 29, 58, 0.8)), url('https://images.pexels.com/photos/1170412/pexels-photo-1170412.jpeg?auto=compress&cs=tinysrgb&w=2000') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
  padding-top: 80px; /* offset for nav */
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
}

.breadcrumb a:hover {
  color: var(--secondary-color);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.contact-form {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

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

/* Gallery Section */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 58, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--bg-white);
  padding: 20px;
  text-align: center;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  background: var(--bg-white);
  border-radius: 8px;
  width: 90%;
  max-width: 900px;
  display: flex;
  overflow: hidden;
  position: relative;
}

@media(max-width: 768px) {
  .lightbox-content {
    flex-direction: column;
  }
}

.lightbox-img {
  flex: 1;
  max-height: 80vh;
}

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

.lightbox-info {
  flex: 1;
  padding: 40px;
  overflow-y: auto;
  max-height: 80vh;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  background: var(--bg-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Back to Top */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
  border: none;
}

#backToTop.show {
  opacity: 1;
  pointer-events: all;
}

#backToTop:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* Loader */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--border-color);
  border-top-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: var(--bg-white);
  transition: background-color 0.3s ease;
}

.faq-question h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--primary-color);
}

.faq-icon {
  font-size: 1rem;
  color: var(--secondary-color);
  animation: faqRotateOut 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.faq-item.active .faq-icon {
  animation: faqRotateIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes faqRotateIn {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(190deg) scale(1.2); color: var(--primary-color); }
  100% { transform: rotate(180deg) scale(1); color: var(--primary-color); }
}

@keyframes faqRotateOut {
  0% { transform: rotate(180deg) scale(1); color: var(--primary-color); }
  50% { transform: rotate(-10deg) scale(1.2); }
  100% { transform: rotate(0deg) scale(1); }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  background-color: #fafafa;
}

.faq-answer p {
  padding: 0 25px 20px 25px;
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 991px) {
  .top-bar {
    display: none;
  }
  
  header {
    top: 0;
  }

  .main-nav {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
  }

  header.sticky .main-nav {
    padding: 15px 0;
  }
  
  .nav-links {
    position: fixed;
    top: 70px; /* header height approx */
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--primary-color);
    flex-direction: column;
    justify-content: center;
    transition: 0.5s;
  }

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

  .mobile-menu-btn {
    display: block;
    color: var(--bg-white);
  }

  header.sticky .mobile-menu-btn {
    color: var(--primary-color);
  }

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

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

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

@media(max-width: 768px) {
  .process-grid, .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 480px) {
  .process-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
}
