/* --- CSS VARIABLES & RESET --- */
:root {
  --primary-blue: #ff6b6b;
  /* bright coral */
  --secondary-blue: #f7c59f;
  /* soft peach */
  --accent-gold: #ff6b6b;
  /* sunny gold */
  --text-light: #fff8f0;
  /* off-white */
  --text-dark: #4b3f2f;
  /* deep brown */
  --text-gray: #a89f91;
  /* warm gray */
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  --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(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-blue);
}

.btn-primary:hover {
  background-color: #b8962e;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
}

.btn-secondary:hover {
  background-color: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* --- HEADER --- */
header {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.logo span {
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--accent-gold);
}

.header-cta {
  display: flex;
  gap: 10px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url('../images/hero.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  margin-bottom: 40px;
}

.hero-btns .btn {
  margin: 0 10px;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
}

.highlight-item i {
  color: var(--accent-gold);
}

/* --- SECTIONS GENERAL --- */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--text-gray);
}

/* --- ABOUT SECTION --- */
.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.1rem;
  color: var(--text-gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--accent-gold);
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.stat-card p {
  color: var(--text-gray);
}

/* --- WHY CHOOSE US --- */
.why-choose {
  background-color: #f9f9f9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
  min-width: 40px;
}

.feature-item h4 {
  margin-bottom: 5px;
  color: var(--primary-blue);
}

/* --- SERVICES SECTION --- */
.services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid #ddd;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-gray);
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--white);
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 8px;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-top: 3px solid var(--accent-gold);
}

.service-card h4 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 15px;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background-color: var(--primary-blue);
  color: var(--white);
}

.testimonials .section-title h2 {
  color: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  position: relative;
}

.stars {
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.client-img {
  width: 50px;
  height: 50px;
  background-color: #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-weight: bold;
}

/* --- FAQ --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.accordion-header {
  padding: 20px;
  background: #f4f4f4;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary-blue);
}

.accordion-header:hover {
  background: #e9e9e9;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--white);
  padding: 0 20px;
}

.accordion-content p {
  padding: 20px 0;
  color: var(--text-gray);
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-item.active .accordion-header {
  background: var(--accent-gold);
  color: var(--white);
}

/* --- CONTACT FORM --- */
.contact-section {
  background-color: #f9f9f9;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--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;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  height: 120px;
}

.form-message {
  margin-top: 15px;
  padding: 10px;
  background: #d4edda;
  color: #155724;
  display: none;
  border-radius: 4px;
  text-align: center;
}

/* --- FOOTER & MODULES --- */
footer {
  background: #000;
  color: var(--text-light);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col p,
.footer-col li {
  margin-bottom: 10px;
  color: #a8b2d1;
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
}

.social-icons a {
  margin-right: 15px;
  font-size: 1.2rem;
}

/* Modules */
.module-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.module-box h5 {
  color: var(--white);
  margin-bottom: 10px;
}

.module-box a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.newsletter-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
}

.newsletter-form label {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.newsletter-msg {
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-top: 5px;
  display: none;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #888;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: var(--primary-blue);
    width: 100%;
    height: calc(100vh - 70px);
    padding-top: 40px;
    transition: 0.3s;
    align-items: center;
  }

  .nav-menu.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  /* Hide buttons on mobile menu for simplicity */
  .hero h1 {
    font-size: 2rem;
  }

  .hero-btns .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}


/* Modal Background */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Modal Content Box */
.modal-content {
  background-color: #fff;
  margin: 60px auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.close {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

h2 {
  color: #1a73e8;
  margin-top: 0;
}

.modal-body {
  max-height: 60vh;
  overflow-y: auto;
  text-align: left;
  line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .modal-content {
    padding: 20px;
  }

  button {
    width: 80%;
  }
}