* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

html, body {
    height: 100%;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header {
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 40px 0 80px 0;
    justify-content: space-between;
    z-index: 1;
}

.header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.header-bg.visible {
    opacity: 1;
}

header > .container,
header > .banner,
.desktop-menu,
.mobile-menu {
    position: relative;
    z-index: 2;
}

.logo {
    background-image: url('../assets/logo.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 150px;
    height: 50px;
    padding: 80px 0;
}

.desktop-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.desktop-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.desktop-menu a:hover,
.desktop-menu .selected {
    background-color: #cf0e0e;
}

.desktop-menu #contact {
    border: 2px solid #cf0e0e;
    border-radius: 15px;
}

.logo, .desktop-menu {
    position: relative;
    bottom: 35px;
}

#theme-icon {
    font-size: 20px;
}

.mobile-menu {
    display: none;
    z-index: 1000;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 10px;
    width: 100%;
    text-align: center;
}

.mobile-menu a:hover {
    background-color: #cf0e0e;
}

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

.mobile-dark-toggle {
    display: none;
    font-size: 30px;
    color: #cf0e0e;
    cursor: pointer;
    z-index: 999;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: color 0.3s ease;
}

.banner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.call-1 {
    color: #fff;
}

.call-1 h2 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 800;
}

.call-1 p {
    font-size: 1.4em;
}

.call-1 span {
    color: #cf0e0e;
}

.call-1 a {
    margin-top: 40px;
}

.phone {
    background-color: #cf0e0e;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.phone h2 {
    margin-bottom: 10px;
    font-size: 1.8em;
}

.phone p {
    margin-bottom: 20px;
}

.cbutton {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    background-color: white;
    color: #cf0e0e;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cbutton:hover {
    background-color: #f2f2f2;
}

.cbutton.rwpp {
    background-color: #cf0e0e;
    color: white;
}

.cbutton.whatsapp {
    background-color: #25d366;
    color: white;
}

.cbutton.whatsapp:hover {
    background-color: #1ebe5d;
}

.services {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    font-size: 2.4em;
    color: #cf0e0e;
    font-weight: 800;
    padding-top: 60px;
    margin: 0 auto;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.box {
    width: 250px;
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.30);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    cursor: pointer;
}

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

.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #cf0e0e;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-icon p {
    font-size: 2em;
    color: white;
    line-height: 0;
}

.box-text h3 {
    font-size: 1.2em;
    color: #333;
    margin-top: 10px;
}

.fa {
    font-size: 1.5em;
}

.versus-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0 auto;
    font-size: 18px;
}

section.positive-points {
    padding: 50px 0;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/banner3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

section.positive-points > .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
}

.traditional p {
    text-decoration: line-through;
    color: #ccc;
    text-decoration-color: #cf0e0e;
    margin: 10px 0;
}

.ourservice p {
    margin: 10px 0;
    color: white;
}

.positive-points h2 {
    color: #fff;
    margin-bottom: 40px;
}

.slides {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slides .container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    bottom: 40px;
}

.slide {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
    min-height: 210px;
}

.slide.active {
    display: flex;
}

.slide i {
    font-size: 3em;
    color: #cf0e0e;
    margin-bottom: 20px;
}

.slide h3 {
    font-size: 1.8em;
    color: #333;
}

.slide p {
    font-size: 1.1em;
    color: #555;
    max-width: 500px;
    margin-top: 10px;
}

.slide-controls {
    margin-top: 30px;
}

.slide-controls button {
    background-color: #cf0e0e;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.2em;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slide-controls button:hover {  
    background-color: #a70c0c;
}

.photos {
    width: 100%;
    background: #cf0e0e;
    text-align: center;
}

.photo-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.photo-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}

.photo-track img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
}

.photo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
}

.photo-nav.left {
  left: 10px;
}

.photo-nav.right {
  right: 10px;
}

.google-reviews {
    background-color: #cf0e0e;
    text-align: center;
    padding: 60px 20px;
}

.google-reviews h2 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 30px;
    font-weight: bold;
}

.review-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.review {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 280px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 350px;
}

.review .stars {
    color: #fbc02d;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.review .comment {
    font-style: italic;
    margin-bottom: 10px;
    color: #444;
    flex: 1;
}

.review .author {
    font-weight: bold;
    color: #555;
    margin-top: auto;
}


.google-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #fff;
    color: #cf0e0e;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.main-footer {
    background-color: #1e1e1e;
    color: white;
    padding: 40px 0 20px;
    font-size: 0.9em;
}

.main-footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-footer h3 {
    text-align: center;
}

.footer-column {
    flex: 1 1 30%;
    min-width: 250px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    background-color: #121212;
    text-align: center;
    padding: 30px;
    font-size: 13px;
    color: #fff;
    position: relative;
    top: 20px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    outline: none;
    padding: 0;
    line-height: 1;
    transition: transform 0.2s ease;
}

.whatsapp-float i {
    margin: 0;
    padding: 0;
    outline: none;
    line-height: 1;
    font-size: 40px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b954;
}

.dark-mode {
    background-color: #121212;
    color: #f9f9f9;
}

.dark-mode header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../assets/banner.jpg') center/cover no-repeat;
}

.dark-mode .desktop-menu a,
.dark-mode .mobile-menu a {
    color: #fff;
}

.dark-mode .box {
    background-color: #1e1e1e;
    color: #f9f9f9;
}

.dark-mode .box-text h3 {
    color: #f9f9f9;
}

.dark-mode section.services,
.dark-mode section.positive-points,
.dark-mode .slides {
    background-color: #333;
}

.dark-mode section.services h2,
.dark-mode section.positive-points h2,
.dark-mode section.photos h2 {
    color: #fff;
}

.dark-mode section.positive-points p,
.dark-mode section.ourservice p{
    color: #ccc;
}

.dark-mode .phone,
.dark-mode section.photos {
    background-color: #1e1e1e;
}

.dark-mode .slide h3,
.dark-mode .slide p {
    color: #f9f9f9;
}

.dark-mode .google-reviews {
    background-color: #333;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 999;
        color: #cf0e0e;
        font-size: 30px;
        cursor: pointer;
        user-select: none;
        transition: color 0.3s ease;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        max-height: 0;
        opacity: 0;
        transform: translateY(-10px);
        overflow: hidden;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s ease;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
        width: 100%;
        position: absolute;
        top: 140px;
        left: 0;
        padding: 0;
        z-index: 998;
        box-shadow: 0 6px 15px rgba(207, 14, 14, 0.5);
        border-top: 2px solid #cf0e0e;
        border-bottom: 2px solid #cf0e0e;
    }

    .mobile-menu.open {
        max-height: 220px;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
        padding: 10px 0;
    }

    .mobile-menu li {
        list-style: none;
        margin: 6px 0;
        text-align: center;
    }

    .mobile-menu li a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
        padding: 8px 20px;
        display: inline-block;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    }

    .mobile-menu li a:hover,
    .mobile-menu li a:focus {
        background-color: transparent !important;
        color: #fff !important;
        cursor: default;
        text-decoration: none;
        box-shadow: none !important;
    }

    .mobile-dark-toggle {
        display: block;
    }

    .call-1 h2 {
        font-size: 2em;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .call-1 p {
        font-size: 1.1em;
    }

    .call-1 a {
        margin-top: 10px;
    }

    .call-1 a:first-of-type {
        margin-top: 40px;
    }

    .box {
        width: 100%;
        max-width: 300px;
    }

    .flex-wrap {
        gap: 30px;
    }

    .review-container {
        justify-content: center;
        gap: 20px;
    }

    .review {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    .main-footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        flex: 1 1 100%;
    }

    .whatsapp-float {
        display: none;
    }
}

@media (max-width: 600px) {
    .photo-nav {
        font-size: 1.2em;
        padding: 8px;
    }
}

@media (max-width: 350px) {
    .logo {
        position: relative;
        right: 40px;
    }

    .mobile-menu-toggle {
        top: 20px;
        right: 0;
    }

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

@media (max-width: 768px) {
  .photo-nav {
    display: none;
  }
}

@media (min-width: 1025px) {
  .photo-track img {
    width: calc(100% / 6);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .photo-track img {
    width: calc(100% / 3);
  }
}

@media (max-width: 768px) {
  .photo-track img {
    width: 100%;
  }
}