/* ============== GLOBAL STYLES & VARIABLES ============== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #D93025;
    --secondary-color: #4A4A4A;
    --light-text-color: #FFFFFF;
    --accent-color: #F9A825;
    --background-light: #FEFBFB;
    --background-alt: #FDF0EE;
    --text-color: #333333;
    --heading-font: "Roboto", sans-serif;
    --body-font: "Roboto", sans-serif;
    --border-radius: 15px;
    --section-padding: 60px 0;
}

/* Info note under form */
.support-hiring-note {
  margin-top: 16px;
  padding: 12px 14px;
  background: #fff5f5;           /* lembut, masih sesuai tema merah */
  border: 1px solid #ffd6d6;
  border-radius: 8px;
  font-size: 14px;
  color: #711010;                 /* merah tua agar terbaca */
}

.support-hiring-note .support-hiring-link {
  color: #d10000;                 /* PSU red */
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(209,0,0,0.5);
}

.support-hiring-note .support-hiring-link:hover {
  text-decoration: none;
  border-bottom-color: transparent;
}


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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    /* Adjust based on header height */
}

body {
    font-family: var(--body-font);
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: var(--section-padding);
    overflow: hidden;
    /* For elements that might slightly overflow */
}

.section-alt-bg {
    background-color: var(--background-alt);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 2.8em;
    line-height: 1.2;
}

h2.section-title {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1.3;
}

h2.section-title.text-light {
    color: var(--light-text-color);
}

h2.section-title .highlight,
h1 .highlight {
    color: var(--primary-color);
}

h2.section-title .highlight-light {
    color: #FFD15C;
    /* A light yellow for dark backgrounds */
}


p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
    color: #2E2E30;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: #a7241c;
    /* Darker red */
}

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

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1em;
}

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

.btn-primary:hover {
    background-color: #a7241c;
    border-color: #a7241c;
    color: var(--light-text-color);
}

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

.btn-secondary:hover {
    background-color: #333;
    border-color: #333;
    color: var(--light-text-color);
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1em;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9em;
}

.btn .arrow,
.btn .arrow-sm {
    margin-left: 8px;
}

.btn-custom {
    border-radius: 0px 15px 15px 15px;
    text-align: center;
}

.btn-flex {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.overlay-red {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(173, 28, 28, 0.7);
    z-index: 1;
}


.overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    /* Light overlay for dark images */
    z-index: 1;
}

/* ============== HEADER ============== */
#header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: none;
    height: auto;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Styles for header when it's scrolled */
#header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

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

.header-contact {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact-link {
    color: var(--light-text-color);
    margin-left: 20px;
    font-size: 0.9em;
    font-weight: 400;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: color 0.4s ease;
}

.contact-link svg {
    margin-right: 5px;
    /* color: var(--primary-color); */
    /* This will be overridden by parent's color if fill="currentColor" is used correctly in SVG, but let's be explicit */
    fill: var(--light-text-color);
    /* ADD: Initial light color for SVG */
    transition: fill 0.4s ease;
    /* ADD: Smooth transition for SVG fill */
}

.contact-link:hover {
    color: var(--primary-color);
}

/* Styles for links and SVGs when header is scrolled */
#header.scrolled .contact-link {
    color: var(--secondary-color);
    /* Dark color on white background */
}

#header.scrolled .contact-link svg {
    fill: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
}

/* ============== HERO SECTION ============== */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center center;
    color: var(--light-text-color);
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: left;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 70%;
    text-align: center;
}

.hero-section h1 {
    color: var(--light-text-color);
    font-size: 3.2em;
    /* Larger for hero */
    margin-bottom: 15px;
}

.hero-section h1 .highlight {
    color: #FFD15C;
    /* Yellowish highlight on dark bg */
    /* Or keep it red if preferred for branding consistency */
    /* color: var(--primary-color); */
}

.hero-section .sub-headline {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.cta-group .discount-note {
    font-size: 1em;
    color: #fff;
    margin: 10px 0 0;
    font-style: italic;
}

/* ============== VALUE PROPOSITION 1 / BENEFITS ============== */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.benefit-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-list h3 {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.benefit-item {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 12px 20px;
    border-radius: 25px;
    /* Pill shape */
    margin-bottom: 12px;
    font-weight: 500;
    text-align: center;
    font-size: 1.05em;
    box-shadow: 0 2px 5px rgba(217, 48, 37, 0.3);
}

/* ============== GALLERY / USE CASES ("Alat Berat Siap Pakai") ============== */
.gallery-container {
    padding: 0 40px;
}

.gallery-swiper {
    padding: 0 20px 40px;
    position: relative;
    overflow: hidden;
}

.gallery-swiper .swiper-slide img {
    border-radius: var(--border-radius);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: rgba(255, 255, 255, 1);
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
}

.gallery-swiper .swiper-button-next {
    right: 0;
}

.gallery-swiper .swiper-button-prev {
    left: 0;
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.gallery-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* ============== TESTIMONIALS ============== */
.testimonials-swiper {
    padding-bottom: 50px;
    position: relative;
}

/* The swiper-slide itself can act as the outer boundary for the card */
.testimonials-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    /* Center the testimonial-item if it's narrower */
    align-items: flex-start;
    /* Align items to the top */
    padding: 10px;
    /* Add some padding around card if needed */
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* max-width: 340px; */
}

.testimonial-item img {
    width: 400px;
    height: 300px;
    /* aspect-ratio: 16/10; */
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

.testimonial-content {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 40px 20px;
    /* height: 120px; */
    /* padding-top: 25px; */
    border-radius: 12px;
    /* width: 70%; */
    margin-top: -90px;
    margin-left: 80px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    text-align: left;
    z-index: 2;
}

.testimonial-info {
    /* Wrapper for Name and Stars */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.testimonial-content h4 {
    /* Name */
    color: var(--light-text-color);
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
}

.testimonial-content .stars {
    font-size: 1em;
    /* Adjust star icon size */
    display: flex;
    /* Helps align stars if needed */
}

.testimonial-content .stars i.fas.fa-star {
    /* Be specific for Font Awesome stars */
    color: var(--light-text-color);
    /* White stars */
    margin-left: 3px;
}

.testimonial-content .stars i.fas.fa-star:first-child {
    margin-left: 0;
}

.testimonial-content p {
    /* Quote */
    font-size: 0.9em;
    color: #f0f0f0;
    /* Slightly off-white for quote */
    margin-bottom: 0;
    font-style: italic;
    line-height: 1.5;
}

/* Swiper Pagination Dots - to match the grey dots in the image */
.testimonials-swiper .swiper-pagination-bullet {
    width: 9px;
    /* Slightly larger dots */
    height: 9px;
    background-color: #D1D1D1;
    /* Light grey for inactive dots */
    opacity: 0.8;
    /* Make them slightly transparent */
    margin: 0 4px !important;
    /* Spacing between dots, !important might be needed for Swiper */
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background-color: #555555;
    /* Darker grey for active dot */
    opacity: 1;
    /* Full opacity for active */
}

/* ============== PROCESS SECTION ("Cuma 4 Langkah") ============== */
.process-section {
    padding: 0;
    /* Full bleed section */
}

.process-container {
    display: grid;
    grid-template-columns: 49% 51%;
    /* Adjust ratio as needed */
    max-width: none;
    /* Override container max-width for full bleed effect */
    width: 100%;
    padding: 0;
}

.process-image-side {
    background-size: cover;
    background-position: center;
    color: var(--light-text-color);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    position: relative;
}

.process-image-side h3 {
    font-size: 2.5em;
    color: var(--light-text-color);
    line-height: 1.3;
    font-weight: bold;
    z-index: 2;
}

.process-steps-side {
    padding: 80px 190px;
    background-color: var(--background-alt);
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    font-size: 1.1em;
    font-weight: 500;
    color: var(--light-text-color);
    background-color: var(--primary-color);
    border-radius: 0 12px 12px 12px;
    min-width: 50px;
    height: 50px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3em;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.step-content p a {
    font-weight: bold;
}

.step-content p {
    font-size: 1em;
    color: #555;
    margin-bottom: 0;
    line-height: 1.5;
}

.process-steps-side .btn {
    margin-top: 20px;
    width: 100%;
}

/* ============== PRICING / PRODUCT SHOWCASE ============== */
.pricing-swiper {
    padding: 20px 20px 40px;
    position: relative;
    overflow: hidden;
    /* For nav buttons if they are outside */
}

.pricing-swiper .swiper-button-next,
.pricing-swiper .swiper-button-prev {
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
}

.pricing-swiper .swiper-button-next {
    right: 0;
}

.pricing-swiper .swiper-button-prev {
    left: 0;
}

.pricing-card {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    align-items: stretch;
    margin: 0 40px;
}

.pricing-image {
    display: flex;
    justify-content: center;
}

.pricing-image img {
    width: 500px;
    height: 500px;
    object-fit: cover;
}

.pricing-details {
    padding: 0 25px 25px;
}

.pricing-details-card {
    background-color: var(--background-alt);
    padding: 0 20px 20px;
    border-radius: 12px;
}

.pricing-title-card {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 10px 15px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 12px 12px 0 0;
    margin: 0 -20px 20px;
    text-align: center;
}

.pricing-content {
    width: 75%;
}

.pricing-details .price {
    font-size: 1.2em;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.price-terms {
    font-size: 1.1em;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.price-terms.small {
    font-size: 0.9em;
}

.spec-accordion-item {
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.spec-accordion-header {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    font-weight: bold;
    padding: 12px 20px;
    width: 100%;
    height: 60px;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05em;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease, border-radius 0.1s ease-out;
}

.spec-accordion-header.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


.spec-accordion-header .accordion-arrow {
    font-size: 0.9em;
    transition: transform 0.3s ease-in-out;
}

.spec-accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
}

.spec-accordion-content {
    background-color: var(--background-alt);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
}

.spec-content-inner {
    padding: 20px;
    color: var(--secondary-color);
    font-size: 0.9em;
    line-height: 1.6;
}

.spec-content-inner p {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.spec-content-inner p strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.spec-content-inner ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    padding-left: 5px;
}

.spec-content-inner ul li {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.features-list {
    list-style: none;
    padding: 0;
    font-size: 0.9em;
}

.features-list li {
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.features-list li i {
    font-size: 20px;
    margin-right: 5px;
}

.compare-link {
    display: block;
    text-align: center;
    margin: 10px 0;
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: underline;
}

.pricing-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: auto;
}

.pricing-cta .btn {
    display: flex;
    padding-right: 50px;
    justify-content: space-between;
    align-items: center;
    font-size: 1em;
}

.spec-button .arrow-sm {
    font-size: 1.2em;
}

.estimation-note {
    font-size: 0.8em;
    color: #1F171F;
    line-height: 1.2;
    font-style: italic;
    text-align: center;
    margin-bottom: 0;
}

.pricing-swiper .swiper-button-next::after,
.pricing-swiper .swiper-button-prev::after {
    font-size: 20px;
}


/* ====== GET OFFER FORM SECTION ====== */
.get-offer-section {
  background: #f8f8f8;
  padding: 80px 0;
}

.get-offer-section .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
  text-align: center;
}

.get-offer-section form {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
}

.get-offer-section .form-group {
  margin-bottom: 20px;
}

.get-offer-section label {
  display: block;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.get-offer-section .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
}

.get-offer-section .form-control:focus {
  outline: none;
  border-color: #d10000; /* PSU red */
  box-shadow: 0 0 0 3px rgba(209, 0, 0, 0.15);
}

/* Button styling (inherits btn-custom) */
.get-offer-section .btn {
  display: inline-block;
  width: 100%;
  padding: 14px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  background: #d10000;
  color: #fff;
  text-transform: uppercase;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.get-offer-section .btn:hover {
  background: #b30000;
  transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .get-offer-section form {
    padding: 25px 20px;
  }
}


/* ============== URGENCY/OFFER SECTION ============== */
.urgency-section {
    padding: 0;
    background-color: var(--primary-color);
    overflow: hidden;
    margin-top: 80px;
}

.urgency-container {
    display: grid;
    grid-template-columns: 51% 49%;
    min-height: 190px;
    width: 100%;
    max-width: none;
}

.urgency-image-side {
    background-size: cover;
    background-position: center 38%;
}

.urgency-content-side {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.urgency-content-side h2 {
    font-size: 1.4em;
    color: var(--light-text-color);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* ============== VALUE PROPOSITION 2 / SERVICE AREA ============== */
.service-area-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.service-content-box {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 60px 40px 80px;
    max-width: 650px;
    margin: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    float: right;
}

.service-content-list {
    padding-left: 40px;
    border-left: 4px solid var(--primary-color);
    margin: 0 0 50px;
}

.service-content-cta {
    padding-left: 40px;
}

.service-content-box h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.service-content-box h3 .highlight {
    color: var(--secondary-color);
    /* Or keep primary */
}

.service-content-box p {
    margin-bottom: 20px;
    color: #444;
}

.service-content-box .divider {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 30px 0;
}

.service-content-box .btn {
    margin-top: 10px;
}

/* ============== REASONS TO CHOOSE SECTION ============== */
.reasons-section {
    margin: 60px auto;
    padding: 0;
    width: 90%;
    max-width: 950px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}

.reasons-overlay-container {
    background-color: rgba(187, 43, 34, 0.85);
    padding: 50px 40px;
    /* This padding creates space around the content */
    text-align: center;
    /* Center the title */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center children (title, list) horizontally */
    justify-content: center;
    min-height: 500px;
    box-sizing: border-box;
    /* Ensure padding is included in width/height calculations */
}

.reasons-overlay-container .section-title.text-light {
    /* Target title directly */
    color: var(--light-text-color);
    margin-bottom: 30px;
    font-size: 2em;
    width: 100%;
    /* Allow title to span the padded width */
    max-width: 650px;
    /* Optional: if title needs to be narrower than list */
}

.reasons-overlay-container .reasons-list {
    /* Target list directly */
    list-style: none;
    padding: 0;
    margin: 0;
    /* Margin is handled by parent's align-items or specific margins */
    width: 100%;
    /* List items will take full available width within padding */
    max-width: 600px;
    /* Max width for the list items block */
}

.reasons-list li {
    background-color: #6A1B14;
    color: var(--light-text-color);
    font-size: 1.1em;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
}

.reasons-list li:last-child {
    margin-bottom: 0;
}

.reasons-list li:hover {
    background-color: #83211A;
}

.reasons-list .icon-reason-check {
    font-size: 1.2em;
    margin-right: 15px;
    color: var(--light-text-color);
    flex-shrink: 0;
}

/* ============== MODAL STYLES ============== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0s;
}

.modal-content {
    background-color: #fff;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s ease-in-out 0.05s;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

/* Comparison Table Styles */
.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 8px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 30px;
    text-align: center;
}

.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
    text-align: left;
}

.comparison-table thead tr {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    font-weight: bold;
    border-radius: 8px 8px 0 0;
}

.comparison-table thead th:first-child {
    border-top-left-radius: 7px;
}

/* Match wrapper */
.comparison-table thead th:last-child {
    border-top-right-radius: 7px;
}


.comparison-table tbody tr {
    background-color: #FBE9E9;
    color: var(--primary-color);
}

.comparison-table tbody tr.table-row-dark {
    background-color: rgba(123, 12, 12, 0.8);
    color: #E0D8D7;
}

.comparison-table tbody tr.table-row-dark td {
    border-bottom-color: #8A504A;
    color: #FFFFFF;

}

.comparison-table tbody td {
    color: var(--primary-color);
    vertical-align: middle;
}


/* ============== RESPONSIVE STYLES ============== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5em;
    }

    h2.section-title {
        font-size: 2em;
    }

    .hero-section h1 {
        font-size: 2.8em;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefit-image {
        margin-bottom: 30px;
    }

    .benefit-list h3 {
        text-align: center;
    }

    .process-container {
        grid-template-columns: 1fr;
    }

    .process-image-side {
        min-height: 300px;
        padding: 40px 20px;
    }

    .process-image-side h3 {
        font-size: 2em;
    }

    .process-steps-side {
        padding: 40px 20px;
    }

    .pricing-swiper {
        padding: 0;
    }

    .pricing-card {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .pricing-image img {
        height: 450px;
    }

    .pricing-title-card {
        margin: -25px -25px 15px -25px;
    }

    .urgency-container {
        /* Could adjust column ratio here if needed, or keep 1fr 1fr */
    }

    .urgency-content-side h2 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    html {
        scroll-padding-top: 60px;
    }

    #header {
        height: 70px;
    }

    .logo .logo-psu {
        font-size: 2em;
    }

    /* Mobile Menu Container and Items Styling */
    .header-contact {
        /* display: none; */
        /* REMOVE THIS LINE */

        /* ADD/MODIFY for mobile menu behavior */
        display: flex;
        /* Use flex for item alignment */
        flex-direction: column;
        position: absolute;
        top: 60px;
        /* Position below the 60px header */
        left: 0;
        width: 100%;
        background-color: #fff;
        /* Needs a background for when it drops down */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        max-height: 0;
        /* Initially hidden */
        overflow: hidden;
        transition: max-height 0.35s ease-in-out, padding 0.35s ease-in-out;
        padding: 0 15px;
        /* No padding when closed, will add when open */
        z-index: 999;
        /* Below header but above page content */
    }

    #header.scrolled .header-contact {
        /* Ensure menu bg is white even if header is transparent then scrolled */
        background-color: #fff;
    }


    .header-contact.active {
        /* Class added by JS to show the menu */
        max-height: 300px;
        /* Adjust as needed to fit content */
        padding: 10px 15px;
        /* Padding when open */
    }

    .header-contact .contact-link {
        margin: 0;
        /* Remove desktop margin */
        padding: 12px 10px;
        /* Spacing for each menu item */
        font-size: 1em;
        text-align: left;
        /* Or center if preferred */
        border-bottom: 1px solid #f0f0f0;
        /* Separator */
        width: 100%;
        /* Make links take full width */
        color: var(--secondary-color);
        /* Ensure text color is dark on white bg */
    }

    .header-contact .contact-link:last-child {
        border-bottom: none;
    }

    .header-contact .contact-link svg {
        fill: var(--primary-color);
        /* Ensure icon color is correct on white bg */
    }

    /* Hide on mobile, show toggle */

    .mobile-menu-toggle {
        display: flex;
        /* Show hamburger */
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
        /* Ensure it's clickable */
        /* If using relative positioning and burger is not fixed, no changes needed.
           If using absolute for burger, ensure it stays put. Current setup is fine. */
    }

    .mobile-menu-toggle span {
        width: 30px;
        height: 3px;
        /* background: var(--primary-color); */
        /* Original color for burger */
        background: var(--light-text-color);
        /* Start with light color for transparent header */
        border-radius: 10px;
        transition: all 0.3s linear, background-color 0.4s ease;
        /* Add bg transition */
        position: relative;
        transform-origin: 1px;
    }

    /* Burger color when header is scrolled */
    #header.scrolled .mobile-menu-toggle span {
        background: var(--primary-color);
    }

    /* Burger color when menu is open (even if header is transparent) */
    .mobile-menu-toggle.open span {
        background: var(--primary-color);
        /* Make burger red when menu is open */
    }


    /* Mobile menu toggle animation (already correct) */
    .mobile-menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

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


    /* Adjustments for hero section if needed due to header height */
    .hero-section {
        padding-top: 120px;
        /* Original was 150px, mobile header is 60px + some space */
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-section h1 {
        font-size: 2.2em;
    }

    .hero-section .sub-headline {
        font-size: 1.1em;
    }

    .cta-group .btn-lg {
        width: 100%;
    }


    .pricing-swiper .swiper-button-next,
    .pricing-swiper .swiper-button-prev {
        top: 25%;
    }

    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        top: 50%;
    }

    .pricing-details {
        margin-top: 50px;
        padding: 0;
    }

    .pricing-image img {
        height: 350px;
    }

    .pricing-cta {
        flex-direction: column;
    }

    .testimonial-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 20px;
    }

    .urgency-section {
        padding: 0 !important;
    }

    .urgency-container {
        grid-template-columns: 1fr;
        /* Stack columns on mobile */
    }

    .urgency-image-side {
        min-height: 200px;
        order: 1;
    }

    .urgency-content-side {
        padding: 50px 25px;
        order: 2;
        display: flex;
        align-items: center;
    }

    .urgency-content-side h2 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .btn-urgency {
        font-size: 1em;
        padding: 12px 30px;
    }

    .service-content-cta {
        padding: 0;
    }

    .service-content-cta .btn {
        width: 100%;
    }

    .process-section {
        padding: 0 !important;
    }

    .modal-content {
        max-height: 85vh;
    }

    .modal-content h3 {
        font-size: 1.5em;
    }

    .tab-button {
        font-size: 0.85em;
        padding: 6px 12px;
    }

    .comparison-table {
        font-size: 0.85em;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 40px 0;
    }

    h1 {
        font-size: 2em;
    }

    h2.section-title {
        font-size: 1.8em;
    }

    .hero-section h1 {
        font-size: 2em;
    }

    .benefit-item {
        font-size: 1em;
        padding: 10px 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }

    .step-content h4 {
        font-size: 1.1em;
    }

    .service-content-box {
        padding: 30px 20px;
    }

    .service-content-box h3 {
        font-size: 1.5em;
    }

    .reasons-section {
        padding: 0;
    }

    .reasons-list-box {
        padding: 20px;
    }

    .reasons-list li {
        font-size: 1em;
        line-height: 1.3
    }

}