/* ================================
   1. GLOBAL RESET & TYPOGRAPHY
================================ */
body, h1, h2, h3, h4, p, ul, li {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

ul { list-style: none; }

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

.ses-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================
   2. HEADER & NAVIGATION
================================ */
.ses-header {
  width: 100%;
  background: #fff;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.ses-header.ses-fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.ses-header .ses-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.ses-nav ul {
  display: flex;
  gap: 20px;
}

.ses-nav ul li a {
  padding: 5px 10px;
  font-weight: bold;
  color: #333;
}

.ses-nav ul li.active a {
  color: #0073e6;
}

.ses-contact-info a {
  margin-left: 10px;
  color: #0073e6;
  font-weight: bold;
}

/* ================================
   3. HERO SECTION
================================ */
.ses-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 80px 0;
  background: #f9f9f9;
}

.ses-hero-text {
  flex: 1 1 500px;
}

.ses-hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.ses-hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.ses-hero-cta .ses-btn {
  padding: 12px 25px;
  margin-right: 10px;
  background: #0073e6;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.ses-hero-image {
  flex: 1 1 500px;
  text-align: center;
}

.ses-hero-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* ================================
   4. SERVICE INTRO & GRIDS
================================ */
.ses-service-intro {
  padding: 40px 0;
  font-size: 1rem;
  color: #555;
}

.ses-subservices h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.ses-subservices .ses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.ses-subservices .ses-grid-item {
  flex: 1 1 300px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ses-subservices .ses-grid-item img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.ses-subservices .ses-grid-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* ================================
   5. TESTIMONIALS
================================ */
.ses-testimonials {
  padding: 60px 0;
  background: #f2f6fb;
  text-align: center;
}

.ses-testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.ses-testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.ses-testimonial {
  flex: 1 1 250px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.ses-testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.ses-testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.ses-rating {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #ffcc00;
}

/* ================================
   6. BOOKING / CONTACT FORM
================================ */
.ses-contact {
  padding: 60px 0;
  background: #fff;
}

.ses-contact h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.ses-contact form input,
.ses-contact form select,
.ses-contact form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.ses-contact form button.ses-btn,
.ses-contact form a.ses-btn {
  background: #0073e6;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
}

/* ================================
   7. FAQ
================================ */
.ses-faq {
  padding: 60px 0;
  background: #f9f9f9;
}

.ses-faq h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.ses-faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.ses-faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.ses-faq-question {
  cursor: pointer;
  padding: 15px;
  font-weight: bold;
  position: relative;
}

.ses-faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
}

.ses-faq-question.open::after {
  content: '-';
}

.ses-faq-answer {
  display: none;
  padding: 0 15px 15px;
  color: #555;
}

/* ================================
   8. MODAL BOOKING FORM
================================ */
.ses-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.ses-modal-content {
  background: #fff;
  margin: 100px auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.ses-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

.ses-modal form input,
.ses-modal form select,
.ses-modal form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.ses-modal form button.ses-btn {
  width: 100%;
  background: #0073e6;
  color: #fff;
  padding: 12px;
  border-radius: 4px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

/* ================================
   9. FOOTER
================================ */
.ses-footer {
  background: #333;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.ses-footer a { color: #fff; }

.ses-footer-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.ses-footer-social a {
  margin: 0 10px;
}