/* =============================================
   KLWIN Main CSS Bundle
   Merged: styles.css + page-styles.css + feature-icons.css
           + floating-cta.css + mobile-menu.css + preloader.css
           + contact-faq.css
   ============================================= */

/* --- styles.css (base styles) --- */

/* Global Styles */
:root {
  --primary-color: #f8b700;
  --secondary-color: #b91d22;
  --dark-bg: #1a1a1a;
  --light-bg: #f5f5f5;
  --text-light: #ffffff;
  --text-dark: #333333;
  --accent: #ff4500;
  --border-radius: 8px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
}

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

ul {
  list-style: none;
}

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

h1, h2, h3, h4 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
}

section {
  padding: 4rem 1rem;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: bold;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: #e6a800;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: #a31a1e;
}

.view-all {
  text-align: center;
  margin-top: 2rem;
}

/* Header */
header {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
}

nav li {
  margin-left: 1.5rem;
}

nav a {
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/banner.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  text-align: center;
  padding: 6rem 1rem;
}

.hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
}

/* Promotions */
.promotions {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.promo-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.promo-card:hover {
  transform: translateY(-5px);
}

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

.promo-content {
  padding: 1.5rem;
}

/* Featured Games */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.game-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.game-card:hover {
  transform: translateY(-5px);
}

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

.game-info {
  padding: 1.5rem;
}

.provider {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* Why Choose */
.why-choose {
  background-color: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Responsible */
.responsible {
  background-color: var(--secondary-color);
  color: var(--text-light);
  text-align: center;
}

.responsible p {
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 4rem 1rem 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h4,
.footer-heading {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 1rem;
  display: block;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

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

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Media Queries */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--dark-bg);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  nav li {
    margin: 0;
  }

  nav a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 2rem 1rem;
  }
}


/* --- page-styles.css (shared page styles) --- */

/* Additional page-specific styles */

/* Common page header styles */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/banner.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  text-align: center;
  padding: 4rem 1rem;
}

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

.page-header p {
  max-width: 800px;
  margin: 0 auto;
}

/* Full width images */
.full-width-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

/* Games Page Styles */
.game-categories {
  padding: 4rem 1rem;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.tab-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--text-dark);
  padding: 0.5rem 1.5rem;
  margin: 0.5rem;
  cursor: pointer;
  border-radius: var(--border-radius);
  font-weight: bold;
  transition: var(--transition);
}

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

.game-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.search-filter input, .provider-filter select {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  min-width: 200px;
}

.game-related {
  background-color: var(--light-bg);
  padding: 4rem 1rem;
}

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

.related-link {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.related-link:hover {
  transform: translateY(-5px);
}

.related-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Promotions Page Styles */
.promotions-list {
  padding: 4rem 1rem;
}

.promotion-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .promotion-card {
    flex-direction: row;
  }
}

.promotion-image {
  flex: 1;
  min-width: 300px;
}

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

.promotion-details {
  flex: 2;
  padding: 2rem;
}

.promotion-highlights {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.promotion-highlights li {
  margin-bottom: 0.5rem;
}

.terms-section {
  background-color: var(--light-bg);
  padding: 4rem 1rem;
}

.terms-content {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.terms-content ul {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
}

.terms-content li {
  margin-bottom: 0.5rem;
}

/* VIP Page Styles */
.vip-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/banner4.jpeg');
}

.vip-benefits {
  padding: 4rem 1rem;
}

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

.benefit-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.vip-tiers {
  background-color: var(--light-bg);
  padding: 4rem 1rem;
}

.tiers-table {
  overflow-x: auto;
  margin: 2rem 0;
}

.tiers-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: var(--shadow);
}

.tiers-table th, .tiers-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.tiers-table th {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.tiers-table tr:hover {
  background-color: #f9f9f9;
}

.note {
  font-style: italic;
  margin-top: 1.5rem;
  text-align: center;
}

.vip-faq {
  padding: 4rem 1rem;
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  background-color: white;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 0;
}

.vip-contact {
  background-color: var(--secondary-color);
  color: var(--text-light);
  text-align: center;
  padding: 4rem 1rem;
}

.contact-options {
  margin-top: 2rem;
}

/* Agent Page Styles */
.agent-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/banner5.png');
}

.agent-commissions {
  padding: 4rem 1rem;
}

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

.commission-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.commission-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.commission-value {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 1rem 0;
}

.agent-benefits {
  background-color: var(--light-bg);
  padding: 4rem 1rem;
}

.benefits-list {
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.benefit-icon {
  font-size: 1.5rem;
  margin-right: 1.5rem;
  color: var(--primary-color);
}

.agent-how-it-works {
  padding: 4rem 1rem;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2rem;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--primary-color);
  color: var(--text-dark);
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 1rem;
}

.agent-cta {
  background-color: var(--secondary-color);
  color: var(--text-light);
  text-align: center;
  padding: 4rem 1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.agent-terms {
  background-color: var(--light-bg);
  padding: 4rem 1rem;
}

.agent-terms ul {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
}

.agent-terms li {
  margin-bottom: 0.5rem;
}

/* Responsible Entertainment Page Styles */
.responsible-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/banner.jpeg');
}

.responsible-intro {
  padding: 4rem 1rem;
}

.age-warning {
  display: flex;
  align-items: center;
  background-color: #fff3cd;
  border-left: 5px solid #ffc107;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: var(--border-radius);
}

.warning-icon {
  font-size: 2.5rem;
  margin-right: 1.5rem;
}

.responsible-tools {
  background-color: var(--light-bg);
  padding: 4rem 1rem;
}

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

.tool-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.tool-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.responsible-signs {
  padding: 4rem 1rem;
}

.signs-list {
  margin-top: 2rem;
}

.sign-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.sign-icon {
  font-size: 1.5rem;
  margin-right: 1.5rem;
  color: var(--secondary-color);
}

.responsible-tips {
  background-color: var(--light-bg);
  padding: 4rem 1rem;
}

.tips-list {
  margin-top: 2rem;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.tip-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: var(--primary-color);
  color: var(--text-dark);
  border-radius: 50%;
  font-weight: bold;
  text-align: center;
  margin-right: 1.5rem;
}

.responsible-support {
  padding: 4rem 1rem;
}

.support-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.resource-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

/* Contact Page Styles */
.contact-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/banner.jpeg');
}

.contact-options {
  padding: 4rem 1rem;
}

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

.contact-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.availability {
  font-style: italic;
  margin: 1rem 0;
  color: var(--secondary-color);
}

.contact-form {
  background-color: var(--light-bg);
  padding: 4rem 1rem;
}

form {
  max-width: 600px;
  margin: 2rem auto 0;
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

/* About Page Styles */
.about-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/banner.jpeg');
}

.about-intro {
  padding: 4rem 1rem;
}

.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    flex-direction: row;
    align-items: flex-start;
  }
}

.about-content {
  flex: 2;
}

.about-image {
  flex: 1;
  text-align: center;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .about-image {
    margin-top: 0;
    margin-left: 2rem;
  }
}

.about-logo {
  max-width: 300px;
}

.about-values {
  background-color: var(--light-bg);
  padding: 4rem 1rem;
}

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

.value-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-security, .about-fairness {
  padding: 4rem 1rem;
}

.about-security {
  background-color: white;
}

.about-fairness {
  background-color: var(--light-bg);
}

.security-content, .fairness-content {
  max-width: 800px;
  margin: 0 auto;
}

.security-content ul, .fairness-content ul {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
}

.security-content li, .fairness-content li {
  margin-bottom: 0.5rem;
}

.about-partners {
  padding: 4rem 1rem;
}

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

.partner-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-commitment {
  background-color: var(--light-bg);
  padding: 4rem 1rem;
}

.commitment-content {
  max-width: 800px;
  margin: 0 auto;
}

.commitment-content ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.commitment-content li {
  margin-bottom: 0.5rem;
}

/* FAQ Page Styles */
.faq-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/banner.jpeg');
}

.faq-categories {
  padding: 4rem 1rem;
}

.search-faq {
  margin: 2rem 0;
  text-align: center;
}

.search-faq input {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 500px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background-color: #f9f9f9;
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: bold;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.contact-cta {
  background-color: var(--secondary-color);
  color: var(--text-light);
  text-align: center;
  padding: 4rem 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .category-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 300px;
  }

  .promotion-card {
    flex-direction: column;
  }

  .steps {
    flex-direction: column;
  }

  .step {
    margin-bottom: 2rem;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: #999;
}
.breadcrumbs .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.breadcrumbs a {
  color: #f8b700;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .separator {
  margin: 0 0.5rem;
  color: #666;
}

@media (max-width: 480px) {
  .contact-grid, .tools-grid, .benefits-grid, .commission-grid, .values-grid, .partners-grid {
    grid-template-columns: 1fr;
  }
}

/* Social Sharing */
.social-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.social-share-label {
  font-weight: bold;
  font-size: 0.9rem;
  color: #555;
}
.social-share a,
.social-share button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  text-decoration: none;
}
.social-share a:hover,
.social-share button:hover {
  transform: scale(1.1);
  opacity: 0.85;
}
.share-whatsapp {
  background: #25D366;
  color: white;
  font-size: 1.2rem;
}
.share-facebook {
  background: #1877F2;
  color: white;
  font-size: 1.2rem;
}
.share-copy {
  background: #666;
  color: white;
  font-size: 1rem;
}
.share-copy.copied {
  background: #25D366;
}


/* --- feature-icons.css --- */

/* Enhanced Feature Icons for Why Choose KLWIN Section */

/* Enhanced section heading */
.why-choose h2 {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 3.5rem;
  font-style: italic;
}

.why-choose h2::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.why-choose h2::after {
  content: '\2726';
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: var(--primary-color);
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(248, 183, 0, 0.1) 0%, rgba(255, 140, 0, 0.2) 100%);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(248, 183, 0, 0.2);
}

.feature:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(248, 183, 0, 0.2) 0%, rgba(255, 140, 0, 0.3) 100%);
}

.feature-icon svg {
  width: 45px;
  height: 45px;
  fill: var(--primary-color);
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.feature:hover .feature-icon svg {
  transform: scale(1.1);
  fill: #ff8c00;
}

/* Animated circle around icons */
.feature-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  opacity: 0;
  transition: all 0.5s ease;
  animation: spin 8s linear infinite;
}

.feature:hover .feature-icon::after {
  opacity: 1;
}

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

/* Pulse effect */
@keyframes featureIconPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(248, 183, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(248, 183, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(248, 183, 0, 0);
  }
}

.feature:hover .feature-icon {
  animation: featureIconPulse 2s infinite;
}

/* Enhanced feature cards */
.feature {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
  padding: 2.5rem 1.8rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature:hover {
  border-top-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 183, 0, 0.05) 0%, rgba(255, 140, 0, 0.1) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature:hover::before {
  opacity: 1;
}

.feature h3 {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: var(--text-dark);
}

.feature h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-gradient);
  transition: width 0.4s ease;
}

.feature:hover h3::after {
  width: 50px;
}

.feature p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}


/* --- floating-cta.css --- */

/* Floating CTA Button Styles */
.floating-cta {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
}

/* PC Version Specific Styles */
@media (min-width: 769px) {
  .floating-cta-btn {
    min-width: 220px;
    padding: 18px 36px !important;
    font-size: 1.2rem !important;
    border-width: 3px !important;
  }

  .floating-cta-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 1.5rem !important;
    margin-right: 15px !important;
  }

  /* Enhanced 3D effect for PC */
  .floating-cta-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 5%;
    width: 90%;
    height: 15px;
    background: rgba(0, 0, 0, 0.2);
    filter: blur(10px);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
  }

  .floating-cta-btn:hover::after {
    bottom: -8px;
    filter: blur(15px);
    width: 85%;
    left: 7.5%;
  }
}

.floating-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff3a3a 0%, #b91d22 100%);
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(255, 58, 58, 0.3), 0 0 30px rgba(255, 58, 58, 0.5);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid white;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}

.floating-cta-btn:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 0 5px rgba(255, 58, 58, 0.4), 0 0 50px rgba(255, 58, 58, 0.6);
  background: linear-gradient(135deg, #ff5252 0%, #d42026 100%);
  letter-spacing: 2.5px;
}

.floating-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.75s ease;
}

.floating-cta-btn:hover::before {
  left: 100%;
}

.floating-cta-icon {
  margin-right: 12px;
  font-size: 1.3rem;
  background: white;
  color: #b91d22;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.floating-cta-btn:hover .floating-cta-icon {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* Pulse Animation */
@keyframes ctaPulse {
  0% {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(255, 58, 58, 0.3), 0 0 30px rgba(255, 58, 58, 0.5);
  }
  70% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(255, 58, 58, 0.2), 0 0 40px rgba(255, 58, 58, 0.3);
  }
  100% {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(255, 58, 58, 0.3), 0 0 30px rgba(255, 58, 58, 0.5);
  }
}

/* Floating animation */
@keyframes ctaFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating-cta-btn {
  animation: ctaPulse 2s infinite, ctaFloat 4s ease-in-out infinite;
}

/* Container background to ensure contrast */
.floating-cta::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 60px;
  z-index: -1;
  filter: blur(15px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
  }

  .floating-cta-btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
    left: 20px;
    display: flex;
    justify-content: center;
  }

  .floating-cta-btn {
    width: 100%;
    max-width: 300px;
  }
}


/* --- mobile-menu.css --- */

/* Mobile Menu Styles */

/* Hide the mobile menu toggle by default (for desktop) */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger {
  width: 30px;
  height: 24px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary-color);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  top: 10px;
}

.hamburger span:nth-child(4) {
  top: 20px;
}

/* When menu is open */
.hamburger.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.hamburger.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-menu-content {
  padding: 80px 20px 40px;
  text-align: center;
}

.mobile-menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-content li {
  margin-bottom: 20px;
}

.mobile-menu-content a {
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  display: block;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.mobile-menu-content a:hover,
.mobile-menu-content a.active {
  background: var(--primary-gradient);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(248, 183, 0, 0.3);
}

.mobile-menu-logo {
  margin-bottom: 40px;
}

.mobile-menu-logo img {
  max-width: 180px;
  height: auto;
}

/* Media queries for mobile menu */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  header nav {
    display: none;
  }

  /* Adjust header layout */
  .header-container {
    justify-content: space-between;
  }
}


/* --- preloader.css --- */

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 80px;
  height: 80px;
  position: relative;
}

.loader:before, .loader:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.6;
  animation: loaderPulse 2s ease-in-out infinite;
}

.loader:after {
  animation-delay: 1s;
}

.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-dark);
  background: var(--primary-gradient);
  border-radius: 50%;
  animation: loaderBounce 1s ease infinite alternate;
}

@keyframes loaderPulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes loaderBounce {
  from {
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    transform: translate(-50%, -50%) scale(1.1);
  }
}


/* --- contact-faq.css --- */

/* Contact FAQ Styles */
.faq-section {
  background-color: #f8f9fa;
  padding: 4rem 1rem;
}

.contact-faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.contact-faq-item {
  background-color: white;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-color);
}

.contact-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background-color: white;
  transition: background-color 0.3s ease;
}

.contact-faq-question:hover {
  background-color: #f8f8f8;
}

.contact-faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-dark);
}

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

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

.contact-faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.contact-faq-answer.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px; /* Adjust as needed */
}

.contact-faq-answer p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-faq-question h3 {
    font-size: 1.1rem;
  }
}
