*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body{
    font-family: 'Roboto', 'Times New Roman', Times, serif;
    background-color: #f4f4f4;
    width: 100%;
    overflow-x: hidden;
}
.prompt-thin {
  font-family: "Prompt", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.prompt-extralight {
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.prompt-light {
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.prompt-regular {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.prompt-medium {
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.prompt-semibold {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.prompt-bold {
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.prompt-extrabold {
  font-family: "Prompt", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.prompt-black {
  font-family: "Prompt", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.prompt-thin-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.prompt-extralight-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.prompt-light-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.prompt-regular-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.prompt-medium-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.prompt-semibold-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.prompt-bold-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.prompt-extrabold-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.prompt-black-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    width: 100%;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container{
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    z-index: 102;
}

.logo {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Menú hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 102;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger {
    position: relative;
    display: block;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Animación del menú hamburguesa */
.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #333;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #666;
}

.nav-links a ion-icon {
    font-size: 1.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: #666;
    transform: translateY(-3px);
}

/* About Us Section */
.about-section {
    background-color: #F5A623;
    padding: 5rem 2rem;
    width: 100%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    color: #1a1a1a;
}

.about-title {
    font-family: "Prompt", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.about-subtitle {
    font-family: "Prompt", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.about-divider {
    width: 80px;
    height: 3px;
    background-color: #1a1a1a;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about-btn {
    display: inline-block;
    background-color: #1a1a1a;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-btn:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-section {
    background-color: #f4f4f4;
    padding: 5rem 2rem;
    width: 100%;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-family: "Prompt", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.services-subtitle {
    font-family: "Prompt", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.services-divider {
    width: 80px;
    height: 3px;
    background-color: #F5A623;
    margin: 0 auto;
}

.services-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.services-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.service-card {
    min-width: 100%;
    display: none;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.service-card.active {
    display: grid;
    opacity: 1;
}

.service-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 15px solid #F5A623;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem 0;
}

.service-name {
    font-family: "Prompt", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-decoration: underline;
    text-decoration-color: #1a1a1a;
    text-underline-offset: 8px;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

/* Botones de navegación de servicios */
.service-btn-prev,
.service-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245, 166, 35, 0.8);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-btn-prev:hover,
.service-btn-next:hover {
    background: rgba(245, 166, 35, 1);
    transform: translateY(-50%) scale(1.1);
}

.service-btn-prev {
    left: -60px;
}

.service-btn-next {
    right: -60px;
}

/* Indicadores de servicios */
.service-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.service-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-indicator:hover {
    background: #999;
}

.service-indicator.active {
    background: #F5A623;
    width: 15px;
    height: 15px;
}

/* Contact Section */
.contact-section {
    background-color: #F5A623;
    padding: 5rem 2rem;
    width: 100%;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-box {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem;
    border-radius: 10px 10px 0 0;
}

.contact-box-title {
    font-family: "Prompt", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail ion-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-detail p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-right {
    display: flex;
    flex-direction: column;
}

.contact-form-box {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
}

.contact-form-title {
    font-family: "Prompt", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    background-color: white;
    color: #333;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #999;
}

.contact-textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-file-info {
    font-size: 0.9rem;
    margin: 0.5rem 0;
    text-align: center;
}

.contact-file-upload {
    position: relative;
}

.contact-file-input {
    display: none;
}

.contact-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

.contact-file-label:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #F5A623;
}

.contact-file-label ion-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.contact-file-label span {
    display: block;
    text-align: center;
}

.contact-file-or {
    margin: 0.5rem 0;
    font-style: italic;
    color: #ccc;
}

.contact-file-name {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #F5A623;
    text-align: center;
}

.contact-submit-btn {
    background-color: #666;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-submit-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
    transform: none;
}

.contact-qr {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #5B9BD5;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.qr-image {
    width: 200px;
    height: 200px;
    display: block;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 2rem 0;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #F5A623;
    transform: translateY(-3px);
}

.footer-title {
    font-family: "Prompt", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #F5A623;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #F5A623;
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact-item ion-icon {
    font-size: 1.5rem;
    color: #F5A623;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-contact-item p {
    margin: 0;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-bottom {
    background-color: #111;
    padding: 1.5rem 2rem;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #F5A623;
}

.footer-separator {
    color: #666;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.slide-content h1 {
    font-family: "Prompt", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.slide-content p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Botones de navegación */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-btn.prev {
    left: 2rem;
}

.slider-btn.next {
    right: 2rem;
}

/* Indicadores */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav {
        gap: 1.5rem;
    }

    .logo {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .container {
        padding: 0 1rem;
    }

    .logo {
        width: 100px;
    }

    /* About Section responsive */
    .about-section {
        padding: 3rem 1.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Services Section responsive */
    .services-section {
        padding: 3rem 1.5rem;
    }

    .services-header {
        margin-bottom: 2.5rem;
    }

    .services-title {
        font-size: 2.2rem;
    }

    .services-subtitle {
        font-size: 1.1rem;
    }

    .service-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .service-image {
        width: 300px;
        height: 300px;
        border: 10px solid #F5A623;
        margin: 0 auto;
    }

    .service-content {
        padding: 1rem 0;
    }

    .service-name {
        font-size: 1.6rem;
    }

    .service-description {
        font-size: 1rem;
        text-align: center;
    }

    .service-btn-prev,
    .service-btn-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .service-btn-prev {
        left: 10px;
    }

    .service-btn-next {
        right: 10px;
    }

    .service-indicators {
        margin-top: 2rem;
        gap: 0.7rem;
    }

    /* Contact Section responsive */
    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }

    .contact-qr {
        position: static;
        transform: none;
        margin: 2rem auto 0;
        width: fit-content;
    }

    .qr-image {
        width: 150px;
        height: 150px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 1.5rem;
    }

    .contact-box-title,
    .contact-form-title {
        font-size: 1.6rem;
    }

    .contact-form-subtitle {
        font-size: 0.95rem;
    }

    .contact-map {
        height: 300px;
    }

    /* Footer responsive */
    .footer {
        padding: 3rem 1.5rem 0;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 101;
    }

    .nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .social-links {
        width: 100%;
        justify-content: center;
        gap: 2rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
    }

    .social-links a {
        font-size: 1.5rem;
    }

    /* Hero Slider responsive */
    .hero-slider {
        height: 400px;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .slider-btn.prev {
        left: 1rem;
    }

    .slider-btn.next {
        right: 1rem;
    }

    .slider-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 300px;
    }

    .slide-content {
        padding: 1rem;
    }

    .slide-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .slider-btn.prev {
        left: 0.5rem;
    }

    .slider-btn.next {
        right: 0.5rem;
    }

    /* About Section mobile */
    .about-section {
        padding: 2.5rem 1rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    /* Services Section mobile */
    .services-section {
        padding: 2.5rem 1rem;
    }

    .services-title {
        font-size: 1.8rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .service-image {
        width: 250px;
        height: 250px;
        border: 8px solid #F5A623;
    }

    .service-name {
        font-size: 1.4rem;
    }

    .service-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .service-btn-prev,
    .service-btn-next {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .service-btn-prev {
        left: 5px;
    }

    .service-btn-next {
        right: 5px;
    }

    /* Contact Section mobile */
    .contact-section {
        padding: 2.5rem 1rem;
    }

    .contact-box-title,
    .contact-form-title {
        font-size: 1.4rem;
    }

    .contact-form-subtitle {
        font-size: 0.9rem;
    }

    .contact-detail {
        font-size: 0.95rem;
    }

    .contact-detail ion-icon {
        font-size: 1.5rem;
    }

    .contact-file-label {
        padding: 1.5rem;
    }

    .contact-file-label ion-icon {
        font-size: 2.5rem;
    }

    .qr-image {
        width: 120px;
        height: 120px;
    }

    /* Footer mobile */
    .footer {
        padding: 2.5rem 1rem 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-column:first-child {
        grid-column: 1;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .footer-description {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom {
        padding: 1.5rem 1rem;
    }

    .footer-bottom-links {
        font-size: 0.85rem;
    }
}