/* =============================
    HERO SECTION
============================= */
.hero {
  height: 95vh;
  display: flex;
  align-items: center;
  padding: 0 80px 60px;
  position: relative;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)),
    url("/static/core/images/hero1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
}

/* Tablet */
@media screen and (max-width: 992px) {
  .hero {
    padding: 0 40px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* Mobile */
@media screen and (max-width: 576px) {
  .hero {
    padding: 0 20px;
    height: 80vh;
    text-align: center;
    justify-content: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
}

/* =============================
    INTRO SECTION
============================= */
.intro-section {
  padding: 80px;
  background-color: var(--bg-light);
}

.intro-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1150px;
  margin: 0 auto;
}

.intro-text {
  flex: 1 1 500px;
}

.intro-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--primary);
}

.intro-text p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.intro-image {
  flex: 1 1 400px;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

/* Tablet */
@media screen and (max-width: 992px) {
  .intro-section {
    padding: 60px 40px;
  }
  .intro-text h2 {
    font-size: 2rem;
  }
  .intro-text p {
    font-size: 1rem;
  }
}

/* Mobile */
@media screen and (max-width: 576px) {
  .intro-section {
    padding: 40px 20px;
    text-align: center;
  }
  .intro-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .intro-text {
    order: 1;
    flex: 1 1 100%;
    width: 100%;
  }
  .intro-image {
    order: 2;
    flex: 1 1 100%;
    width: 100%;
    margin-bottom: 0;
  }
  .intro-text h2 {
    font-size: 1.75rem;
  }
  .intro-text p {
    font-size: 0.95rem;
  }
}

/* =============================
    SERVICES SECTION
============================= */
.services-section {
  padding: 40px 20px 60px;
  background-color: var(--bg-light);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-heading {
  text-align: center;
  margin-bottom: 40px;
}

.services-heading h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.services-heading p {
  font-size: 1.1rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(33.333% - 30px);
  min-width: 320px;
  height: auto;
}

.service-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.service-image-wrapper img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-pill);
  display: block;
}

.service-title a {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 12px;
}

.service-title a:hover {
    text-decoration: underline;
}

.service-desc {
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 25px;
  max-width: 95%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Tablet */
@media screen and (max-width: 992px) {
  .services-section {
    padding: 30px 20px 50px;
  }
  .service-card {
    width: calc(50% - 20px);
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .services-section {
    padding: 25px 20px 40px;
  }
  .services-heading {
    margin-bottom: 25px;
  }
  .service-card {
    width: 100%;
  }
}

/* =============================
    WHY CHOOSE US SECTION
============================= */
.why-choose-section {
  padding: 100px 20px;
  background-color: #fff;
}

.why-choose-container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-choose-header {
  margin-bottom: 50px;
}

.why-choose-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.why-choose-content {
  flex: 1.5;
}

.why-choose-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.why-choose-image img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-pill);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.why-choose-image img:hover {
  transform: scale(1.03);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-subtitle {
  margin-bottom: 40px;
  color: var(--light-text);
  font-size: 1.1rem;
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-icon {
  background: var(--accent);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 5px;
}

.feature-text h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.feature-text p {
  line-height: 1.6;
}

/* Tablet Fix */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .why-choose-container {
    gap: 40px;
  }
  .section-title {
    font-size: 2rem;
  }
  .why-choose-image img {
    max-width: 320px;
  }
}

/* Mobile Fix */
@media screen and (max-width: 767px) {
  .why-choose-section {
    padding: 60px 20px;
  }
  .why-choose-grid {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .why-choose-image img {
    max-width: 90%;
  }
  .feature-item {
    text-align: left;
  }
  .why-choose-header {
    text-align: center;
  }
  .section-title {
    text-align: center;
  }
  .section-subtitle {
    text-align: center;
  }
}

/* =============================
    TESTIMONIALS
============================= */
.testimonials-section {
  padding: 35px 20px;
  margin-top: 0;
  background: linear-gradient(135deg, #1a3a63 0%, #2c5aa0 100%);
  color: #fff;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 25px;
  padding-top: 0;
}

.testimonials-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.testimonials-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.slider-outer-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.slider-window {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  background: #fff;
  padding: 18px 20px;
  border-radius: var(--radius-card);
  min-width: 0;
  flex: 0 0 calc(33.333% - 14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
  cursor: default;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-card);
}

.stars {
  color: #ffb400;
  margin-bottom: 10px;
  font-size: 1rem;
}

.testimonial-text {
  color: var(--text);
  font-style: italic;
  font-size: 0.92rem;
  margin-bottom: 14px;
  line-height: 1.55;
}

.testimonial-author {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary);
  margin-top: auto;
}

.client-tag {
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--accent);
}

/* SLIDER ARROW BUTTONS */
.slider-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  z-index: 10;
}

.slider-arrow:hover {
  background: #fff;
  color: var(--primary);
}

/* CTA wrapper */
.testimonials-cta {
  text-align: center;
  margin-top: 25px;
}

/* Responsive Adjustments */
@media screen and (max-width: 1100px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media screen and (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 0px);
    min-width: 0;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

/* =============================
    SERVICE AREA SECTION
============================= */
.service-area-section {
    padding: 80px 20px 40px;
    background-color: var(--bg-light);
}

.area-container {
    max-width: 1200px;
    margin: 0 auto;
}

.area-heading {
    text-align: center;
    margin-bottom: 50px;
}

.area-heading h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.area-heading p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.area-content-grid {
    display: flex;
    align-items: stretch;
    gap: 40px;
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.map-box {
    flex: 1.65;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: contain;
}

.city-slider-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-left: 20px;
    border-left: 1px solid #f0f0f0;
}

.city-slider-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 10px;
}

.slider-label {
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.city-slider-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.city-arrow {
    background: var(--bg-light);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-arrow:hover {
    background: var(--primary);
    color: #fff;
}

.city-slider-window {
    overflow: hidden;
    width: 100%;
}

.city-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-slide {
    min-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-bubble {
    background: var(--bg-light);
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid rgba(44, 90, 160, 0.08);
    transition: all 0.2s ease;
}

.city-bubble:hover {
    background: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.city-cta-wrapper {
    margin-top: 40px;
    text-align: center;
}

/* Mobile Responsive */
@media screen and (max-width: 992px) {
    .area-content-grid {
        flex-direction: column;
        padding: 25px;
    }
    .map-box, .city-slider-box {
        width: 100%;
        flex: none;
    }
    .city-slider-box {
        border-left: none;
        padding-left: 0;
        padding-top: 25px;
        border-top: 1px solid #f0f0f0;
    }
}

/* =============================
   FAQ SECTION
============================= */
.faq-section {
  padding: 40px 20px 80px;
  background-color: var(--bg-light);
}

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

.faq-main-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 30px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background-color: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #efefef;
}

.faq-item:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.faq-question {
  width: 100%;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  gap: 15px;
}

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 2px;
  background-color: #b0b0b0;
  border-radius: 2px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-icon::before {
  transform: rotate(45deg) translateX(-3px);
}

.faq-icon::after {
  transform: rotate(-45deg) translateX(3px);
}

.faq-item.active {
  border-left: 4px solid var(--accent);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-item.active .faq-icon::before {
  transform: rotate(-45deg) translateX(-3px);
  background-color: var(--accent);
}

.faq-item.active .faq-icon::after {
  transform: rotate(45deg) translateX(3px);
  background-color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 25px 20px 25px;
  line-height: 1.7;
  color: var(--light-text);
  font-size: 0.98rem;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Tablet */
@media (max-width: 992px) {
  .faq-container {
    max-width: 92%;
  }
  .faq-main-heading {
    font-size: 2rem;
  }
  .faq-section {
    padding: 35px 20px 60px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .faq-section {
    padding: 25px 15px 50px;
  }
  .faq-main-heading {
    font-size: 1.75rem;
    margin-bottom: 25px;
  }
  .faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
  }
  .faq-answer p {
    padding: 0 18px 20px 18px;
    font-size: 0.93rem;
  }
}

/* =============================
FINAL CTA SECTION
========================================== */
.final-cta {
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    font-family: var(--font);
}

.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    height: 400px;
}

.cta-image-side {
    flex: 1.2;
    min-width: 400px;
    height: 100%;
}

.cta-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    display: block;
}

.cta-action-side {
    flex: 1;
    min-width: 400px;
    height: 100%;
    background-color: #0a192f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 5%;
    text-align: center;
}

.action-content {
    max-width: 420px;
}

.cta-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.cta-phone-block {
    margin-bottom: 25px;
}

.phone-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.phone-number:hover {
    opacity: 0.8;
}



.service-area-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 850px) {
    .cta-wrapper { height: auto; }
    .cta-image-side { height: 300px; min-width: 100%; }
    .cta-action-side { padding: 50px 20px; min-width: 100%; }
}