/* KET'C EXPRESS - Styles */

:root {
  --primary-orange: #f7801f;
  --primary-blue: #1a4fa3;
  --black: #000000;
  --white: #ffffff;
}

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

body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--black);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: var(--primary-blue);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.nav-links a:hover {
  color: var(--primary-orange);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
  padding: 0.5rem 0;
  margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background-color: #f9f9f9;
  color: var(--primary-orange);
  padding-left: 2rem;
}

.dropdown > a i {
  font-size: 0.7rem;
  margin-left: 0.3rem;
  transition: transform 0.3s;
}

.dropdown:hover > a i {
  transform: rotate(180deg);
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 79, 163, 0.85) 0%,
    rgba(247, 128, 31, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--white);
  text-align: center;
  padding-top: 10rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}

.hero-prev,
.hero-next {
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--white);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.hero-prev:hover,
.hero-next:hover {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: scale(1.1);
}

.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--white);
  width: 30px;
  border-radius: 6px;
}

.indicator:hover {
  background-color: var(--white);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--primary-orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(247, 128, 31, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 128, 31, 0.4);
  background-color: #ff8c2e;
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-blue);
  box-shadow: 0 4px 15px rgba(26, 79, 163, 0.3);
}

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

/* Page Header */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-orange) 100%
  );
  color: var(--white);
  padding: 5rem 0 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* Service Details */
.service-details {
  padding: 4rem 0;
}

.service-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem auto;
}

.service-intro h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.service-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

.features-list {
  margin: 4rem 0;
}

.features-list h3 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

.feature-box {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.feature-box h4 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.feature-box p {
  color: #666;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  margin: 4rem 0;
  padding: 3rem 0;
  background-color: #f9f9f9;
}

.pricing-section h3 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

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

.pricing-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 3px solid var(--primary-orange);
}

.pricing-card .badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-blue)
  );
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.pricing-card h4 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  text-align: center;
}

.price {
  text-align: center;
  margin-bottom: 2rem;
  color: #666;
  font-size: 0.9rem;
}

.price span {
  display: block;
  font-size: 2rem;
  color: var(--primary-orange);
  font-weight: bold;
  margin-top: 0.5rem;
  word-wrap: break-word;
  line-height: 1.2;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
}

.pricing-card ul li {
  padding: 0.8rem 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card ul li i {
  color: var(--primary-orange);
  margin-right: 0.5rem;
}

.pricing-note {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-top: 2rem;
  font-style: italic;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-orange) 100%
  );
  border-radius: 15px;
  margin: 4rem 0;
  color: var(--white);
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.cta-buttons .btn {
  background-color: var(--white);
  color: var(--primary-blue);
}

.cta-buttons .btn:hover {
  background-color: #f0f0f0;
}

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

.cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Service Types */
.service-types {
  margin: 4rem 0;
}

.service-types h3 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

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

.type-item {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.type-item:hover {
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.type-item i {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.type-item h4 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.type-item p {
  color: #666;
}

/* About Page Styles */
.about-content {
  padding: 4rem 0;
}

.about-story {
  max-width: 900px;
  margin: 0 auto 4rem auto;
}

.about-story h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  text-align: center;
}

.about-story p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin: 4rem 0;
}

.mission-box {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-orange) 100%
  );
  color: var(--white);
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
}

.mission-box i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.mission-box h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.mission-box p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.values-section {
  margin: 4rem 0;
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

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

.value-card {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.value-card h4 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

.stats-section {
  margin: 4rem 0;
  padding: 3rem 0;
  background-color: #f9f9f9;
}

.stats-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

.stat-box {
  text-align: center;
  padding: 2rem;
}

.stat-box i {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.stat-box h3 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-box p {
  color: #666;
}

.team-section {
  margin: 4rem 0;
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.team-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.team-description {
  max-width: 900px;
  margin: 0 auto;
}

.team-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-page {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-info-section h2,
.contact-form-section h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.contact-detail i {
  font-size: 2rem;
  color: var(--primary-orange);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.contact-detail p {
  color: #666;
  margin-bottom: 0.3rem;
}

.contact-detail a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 500;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.social-section {
  margin-top: 2rem;
}

.social-section h4 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background-color: #f9f9f9;
  padding: 2.5rem;
  border-radius: 10px;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-message {
  margin-top: 1.5rem;
  display: none;
}

.form-message .success,
.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 1rem;
  border-radius: 5px;
}

.form-message .error,
.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 1rem;
  border-radius: 5px;
}

.form-message .loading,
.form-message.loading {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
  padding: 1rem;
  border-radius: 5px;
}

.form-message i {
  margin-right: 8px;
}

/* Quick Actions */
.quick-actions {
  margin-top: 4rem;
}

.quick-actions h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

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

.action-card {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.action-card:hover {
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.action-card i {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.action-card h4 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.action-card p {
  color: #666;
}

/* Careers Page */
.careers-content,
.partners-content {
  padding: 4rem 0;
}

.why-join {
  margin: 4rem 0;
}

.why-join h3,
.job-openings h3,
.partner-types h3,
.partner-benefits h3 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

.job-openings {
  margin: 4rem 0;
}

.job-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.job-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e0e0e0;
}

.job-header h4 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-meta {
  color: #666;
  font-size: 0.9rem;
}

.job-badge {
  background-color: var(--primary-orange);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
}

.job-content h5 {
  color: var(--primary-blue);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.job-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.job-content ul li {
  color: #666;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.apply-btn {
  margin-top: 1.5rem;
}

.spontaneous-application {
  background-color: #f9f9f9;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 4rem;
}

.spontaneous-application h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.spontaneous-application p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 3rem;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  position: relative;
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  color: #aaa;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

.modal-content h2 {
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

/* Partners Page */
.testimonials-partners {
  margin: 4rem 0;
}

.testimonials-partners h3 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

/* Stats Section */
.stats {
  background-color: var(--white);
  padding: 3rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item i {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #666;
  font-size: 1rem;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

/* Services Section */
.services {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

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

.service-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-orange);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

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

.service-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  text-align: left;
  padding: 0;
  margin-top: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features i {
  font-size: 0.9rem;
  color: var(--primary-orange);
  margin: 0;
}

/* Why Choose Us Section */
.why-choose {
  padding: 4rem 0;
  background-color: var(--white);
}

.why-choose h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  display: block;
}

.feature-item h3 {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.feature-item p {
  color: #666;
  line-height: 1.8;
}

/* Coverage Section */
.coverage {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-orange) 100%
  );
  color: var(--white);
}

.coverage h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.coverage .section-intro {
  color: var(--white);
}

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

.city-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: background-color 0.3s;
}

.city-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.city-item i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.city-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.city-item p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* How It Works Section */
.how-it-works {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

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

.step-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-orange)
  );
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.step-item i {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin: 1.5rem 0 1rem 0;
}

.step-item h3 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.step-item p {
  color: #666;
  line-height: 1.8;
}

/* About Section */
.about {
  padding: 4rem 0;
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

.about-content-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

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

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.location-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .about-content-home {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    order: -1;
    max-height: 300px;
  }
}

.location-info i {
  font-size: 2rem;
  color: var(--primary-orange);
}

.location-info p {
  margin: 0;
  text-align: left;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-orange) 100%
  );
  color: var(--white);
}

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

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
}

.contact-item i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

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

.testimonial-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-orange);
  transition: transform 0.3s ease;
}

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

.stars {
  color: #ffc107;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.testimonial-card p {
  color: #555;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.testimonial-author strong {
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.testimonial-author span {
  color: #999;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background-color: var(--white);
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

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

.faq-item {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.faq-item:hover {
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-orange);
}

.faq-item h3 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-item h3 i {
  color: var(--primary-orange);
  font-size: 1.3rem;
}

.faq-item p {
  color: #666;
  line-height: 1.8;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0a1628 0%, #1a2842 50%, #0f1b2e 100%);
  color: var(--white);
  padding: 4rem 0 0 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--primary-blue),
    var(--primary-orange)
  );
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid rgba(247, 128, 31, 0.2);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), transparent);
  border-radius: 2px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.footer-col ul li:hover {
  transform: translateX(5px);
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col ul li a::before {
  content: "→";
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--primary-orange);
}

.footer-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-col ul li a:hover {
  color: var(--primary-orange);
}

.contact-list li {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.contact-list li:hover {
  color: var(--white);
}

.contact-list i {
  color: var(--primary-orange);
  width: 25px;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    rgba(247, 128, 31, 0.2),
    rgba(26, 79, 163, 0.2)
  );
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-blue)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-links a i {
  position: relative;
  z-index: 1;
}

.social-links a:hover::before {
  opacity: 1;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: var(--primary-orange);
  box-shadow: 0 5px 20px rgba(247, 128, 31, 0.4);
}

.footer-bottom {
  text-align: center;
  padding: 2.5rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.evee-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.evee-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--primary-blue)
  );
  transition: width 0.3s ease;
}

.evee-link:hover {
  color: var(--white);
}

.evee-link:hover::after {
  width: 100%;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-orange)
  );
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

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

  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  header {
    padding: 1rem 0;
  }

  .logo img {
    height: 65px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transition: left 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

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

  .nav-links a {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: #f9f9f9;
    margin-top: 0.5rem;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 0.8rem 1.5rem 0.8rem 2.5rem;
    font-size: 0.95rem;
  }

  .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    height: 500px;
  }

  .hero-content {
    padding-top: 8rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .hero-controls {
    padding: 0 1rem;
  }

  .hero-prev,
  .hero-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .btn {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }

  h2 {
    font-size: 1.8rem !important;
  }

  .section-intro {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .services-grid,
  .features-grid,
  .steps-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .city-item {
    padding: 1.5rem;
  }

  .location-info {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }

  .location-info p {
    text-align: center;
  }

  footer {
    padding: 3rem 0 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
  }

  .footer-col h4 {
    font-size: 1.2rem;
  }

  .social-links {
    justify-content: center;
  }

  .social-links a {
    width: 42px;
    height: 42px;
  }

  .footer-bottom {
    padding: 2rem 0;
  }

  .service-card,
  .feature-item,
  .step-item,
  .testimonial-card,
  .faq-item {
    padding: 1.5rem;
  }

  .service-card i,
  .feature-item i {
    font-size: 2.5rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 2rem;
  }

  /* Contact Page Responsive */
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem !important;
  }

  .contact-info-section,
  .contact-form-section {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-detail {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .quick-actions {
    margin-top: 3rem;
  }

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

  .action-card {
    padding: 1.5rem;
  }

  .back-to-top {
    right: 20px;
    bottom: 100px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    height: 450px;
  }

  .hero-content {
    padding-top: 7rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-controls {
    padding: 0 0.5rem;
  }

  .hero-prev,
  .hero-next {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .hero-indicators {
    bottom: 20px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 25px;
  }

  h2 {
    font-size: 1.5rem !important;
  }

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

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

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

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

  .testimonial-card,
  .faq-item {
    padding: 1.2rem;
  }

  .back-to-top {
    bottom: 20px;
    width: 40px;
    height: 40px;
    right: 15px;
  }

  /* Contact Page Responsive pour petits écrans */
  .contact-page {
    padding: 2rem 0;
  }

  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .contact-info-section,
  .contact-form-section {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .contact-info-section h2,
  .contact-form-section h2 {
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 1.2rem;
  }

  .contact-detail {
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .contact-detail i {
    font-size: 1.5rem;
  }

  .contact-detail h4 {
    font-size: 1rem;
  }

  .quick-actions h2 {
    font-size: 1.5rem;
  }

  .actions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .action-card {
    padding: 1rem;
  }

  .action-card i {
    font-size: 1.8rem;
  }

  .action-card h4 {
    font-size: 0.95rem;
  }

  .action-card p {
    font-size: 0.85rem;
  }
}

/* Media Queries pour .page-header h1 - Mobile First */
@media screen and (min-width: 481px) {
  .page-header h1 {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 769px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
}
