/* Global Resets */
:root {
  --primary-color: #ffb703;
  --primary-hover: #fb8500;
  --dark-color: #023047;
  --darker-color: #011E2E;
  --light-color: #f8f9fa;
  --text-main: #333333;
  --text-muted: #666666;
  --white: #ffffff;
  --border-color: #e9ecef;
  --transition: all 0.3s ease;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
  --radius: 8px;
}

.html-base, .body-base {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: 'Inter', sans-serif;
  background-color: var(--light-color);
  color: var(--text-main);
  box-sizing: border-box;
  overflow-x: hidden;
}

.any-element {
  box-sizing: border-box;
}

/* Loader */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-color);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.loader-hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-brand {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spinner-animation 1s linear infinite;
}

@keyframes spinner-animation {
  100% {
    transform: rotate(360deg);
  }
}

/* Advertisement Top Bar */
.ad-top-bar {
  background-color: var(--darker-color);
  color: #adb5bd;
  text-align: center;
  padding: 5px 15px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Header & Nav */
.header-container {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.nav-logo-link {
  text-decoration: none;
}

.nav-brand-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-color);
  margin: 0;
}

.nav-brand-dot {
  color: var(--primary-color);
}

.nav-menu-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item-list {
  display: inline-block;
}

.nav-link-item {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.nav-link-item:hover {
  color: var(--primary-color);
}

.cta-button {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
  text-align: center;
}

.cta-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hamburger */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-container {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100%;
  background-color: var(--white);
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
}

.mobile-menu-active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.close-menu-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-main);
  cursor: pointer;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin: 0;
  list-style: none;
  gap: 20px;
}

.mobile-nav-link {
  text-decoration: none;
  color: var(--dark-color);
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}

.mobile-cta-btn {
  margin: 20px;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-color), #045279);
  padding: 80px 20px;
  color: var(--white);
  min-height: 80vh;
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-badge {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  border: 1px solid rgba(255, 183, 3, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 0;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Stats Row */
.stats-section {
  background-color: var(--white);
  padding: 40px 20px;
  border-bottom: 1px solid var(--border-color);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
}

/* Sections Global */
.section-wrapper {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.section-subtitle {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-color);
  margin: 0;
}

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

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
}

.feature-icon-box {
  background-color: rgba(255, 183, 3, 0.1);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

/* Why Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--border-color);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 183, 3, 0.5);
}

.why-icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  display: inline-block;
  background-color: var(--light-color);
}

.why-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0 0 15px 0;
}

.why-card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testi-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid var(--border-color);
}

.testi-stars {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  gap: 5px;
}

.testi-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 20px 0;
}

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

.testi-author-info {
  display: flex;
  flex-direction: column;
}

.testi-author-name {
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
}

.testi-author-role {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* FAQs */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item-container {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-color);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-icon-active {
  transform: rotate(45deg);
}

.faq-answer-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: #fafbfc;
}

.faq-answer-active {
  max-height: 1000px;
  padding: 0 20px 20px 20px;
}

.faq-answer-text {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */
.footer-section {
  background-color: var(--darker-color);
  color: #adb5bd;
  padding: 80px 20px 40px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-title {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.footer-text {
  margin: 0;
  line-height: 1.6;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #adb5bd;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-link:hover {
  color: var(--primary-color);
}

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

.footer-ad-note {
  font-size: 0.85rem;
  margin-bottom: 15px;
  color: #8892b0;
}

.footer-copyright {
  margin: 0;
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent-container {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 3000;
  transition: bottom 0.5s ease;
}

.cookie-consent-active {
  bottom: 0;
}

.cookie-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  margin: 0;
  font-size: 1rem;
  color: var(--text-main);
  flex: 1;
}

.cookie-btns {
  display: flex;
  gap: 15px;
}

.cookie-agree-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
}

.cookie-reject-btn {
  background-color: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
}

/* Modals */
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 4000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  padding: 20px;
}

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

.modal-content-box {
  background-color: var(--white);
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  transform: translateY(30px);
  transition: var(--transition);
}

.modal-active .modal-content-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-title {
  margin: 0 0 20px 0;
  color: var(--dark-color);
  font-size: 1.8rem;
}

.modal-text {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Media Queries */
@media screen and (max-width: 992px) {
  .hero-wrapper, .about-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    order: 2;
    text-align: center;
    align-items: center;
  }
  
  .hero-image-wrapper {
    order: 1;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media screen and (max-width: 768px) {
  .nav-menu-desktop, .nav-cta {
    display: none;
  }
  
  .hamburger-btn {
    display: block;
  }

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

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

  .cookie-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cookie-btns {
    width: 100%;
    justify-content: center;
  }
}
