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

:root {
    --primary: #11b5bf;
    --secondary: #0d8f99;
    --accent: #ddf5f7;
    --dark: #2C3E50;
    --light: #F8F9FA;
    --pearl: #E8EAED;
    --text: #2C3E50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

a {
    transition: color 0.3s;
}

/* ========================================
   LOADER / PRELOADER
   ======================================== */

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 150px;
    height: auto;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--accent);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    margin-top: 1.5rem;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Ocultar contenido mientras carga */
body.loading {
    overflow: hidden;
}

body.loading .hero-slider,
body.loading .bonus-section,
body.loading .services,
body.loading .about,
body.loading .reviews,
body.loading .faq,
body.loading .contact,
body.loading footer {
    opacity: 0;
}

/* Animación de aparición del contenido */
.fade-in {
    animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo a {
    display: block;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(17, 181, 191, 0.3);
}

.nav-cta:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(17, 181, 191, 0.4);
}
/* ========================================
   MENÚ MÓVIL - Diseño Sevan
   ======================================== */

/* Botón hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menú móvil */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    z-index: 1002;
    transition: right 0.4s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--accent);
}

.mobile-menu-logo {
    height: 50px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
    color: var(--secondary);
}

.mobile-menu-links {
    list-style: none;
    padding: 2rem 0;
    flex-grow: 1;
}

.mobile-menu-links li {
    margin: 0;
}

.mobile-menu-links a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:active {
    background: var(--accent);
    border-left-color: var(--primary);
    padding-left: 2.5rem;
}

.mobile-menu-cta {
    padding: 2rem;
    border-top: 2px solid var(--accent);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.mobile-cta-btn:first-child {
    background: var(--primary);
    color: white;
}

.mobile-cta-btn.whatsapp {
    background: #25D366;
    color: white;
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Overlay oscuro */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevenir scroll cuando el menú está abierto */
body.menu-open {
    overflow: hidden;
}


/* HERO SLIDER */
.hero-slider {
    margin-top: 82px;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Imatge de placeholder mentre carrega */
    background-color: #11b5bf;
}
.slide.loaded {
    /* Transició suau quan la imatge es carrega */
    animation: fadeInImage 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 48 51 / 35%) 0%, rgb(0 6 7 / 35%) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* BUTTONS */
.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

/* CURVES */
.curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.curve-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.curve-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

footer .curve {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: max-content;
}
/* SECTIONS */
section {
    padding: 5rem 2rem 13rem;
    position: relative;
}

.bonus-section {
    background: var(--accent);
    text-align: center;
    position: relative;
}

.services {
    background: white;
}

.about {
    background: var(--accent);
}

.reviews {
    background: white;
}

.faq {
    background: var(--pearl);
}

.contact {
    background: white;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 3rem;
}

/* BONUS SECTION */
.bonus-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(17, 181, 191, 0.15);
}

.bonus-content h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bonus-content p {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.8;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--accent);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(17, 181, 191, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* ABOUT */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-images {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.about-slide.active {
    opacity: 1;
}

/* GOOGLE REVIEWS - Diseño Sevan */
.reviews .swiper-wrapper {
    padding-bottom: 3rem;
}

.review-card {
    background: var(--accent);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
	z-index: 1;
}

.review-stars {
    color: #FFB800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
    flex-grow: 1;
}

.review-toggle-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: bold;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    text-align: left;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.review-toggle-btn:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.review-author {
    font-weight: bold;
    color: var(--primary);
    margin-top: auto;
}

.no-reviews,
.error-message {
    text-align: center;
    padding: 2rem;
    color: var(--text);
    font-size: 1.1rem;
}

/* Swiper Navigation Buttons - Flechas fuera sin fondo */
/* Contenedor para los botones fuera del swiper */
.reviews-swiper-container {
    position: relative;
    padding: 0 80px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
    background: none;
    width: 50px;
    height: 50px;
    transition: all 0.3s;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    margin: 0;
}

/* Posicionar fuera del contenedor */
.swiper-button-prev {
    left: 0 !important;
}

.swiper-button-next {
    right: 0 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--secondary) !important;
    transform: translateY(-50%) scale(1.2);
}

/* Swiper Pagination - Estilo Sevan */
.swiper-pagination-bullet {
    background: var(--primary) !important;
    opacity: 0.3;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary) !important;
    width: 24px;
    border-radius: 5px;
}

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

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--dark);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--accent);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

/* Mensajes de error del formulario */
.error-message {
    background: #fee;
    color: #c33;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #fcc;
    display: none;
}

.error-message.show {
    display: block;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* MOBILE BOTTOM BAR */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 998;
    padding: 1rem;
    gap: 1rem;
}

.mobile-btn {
    flex: 1;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.mobile-call {
    background: var(--primary);
    color: white;
}

.mobile-whatsapp {
    background: #25D366;
    color: white;
}

/* FOOTER amb corva */
footer {
    background: var(--dark);
    color: white;
    padding: 2rem 2rem;
    position: relative;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* PAGE HEADERS (for subpages) */
.page-header {
    margin-top: 82px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 5rem 2rem 9rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
/* ========================================
   REDES SOCIALES
   ======================================== */

/* Redes sociales en navegación desktop */
.nav-social-links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.nav-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    color: var(--primary) !important;
    transition: all 0.3s !important;
}

.nav-social-links a:hover {
    background: var(--primary);
    color: white !important;
    transform: scale(1.1);
}

/* Redes sociales en footer */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Redes sociales en menú móvil */
.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s;
}

.mobile-social-links a:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}


/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInImage {
    from {
        filter: blur(5px);
        opacity: 0.7;
    }
    to {
        filter: blur(0);
        opacity: 1;
    }
}



/* RESPONSIVE MILLORAT */
@media (max-width: 1280px) {
    .reviews-swiper-container {
        padding: 0;
    }
    .swiper-button-prev {
        left: 10px;
    }
    
    .swiper-button-next {
        right: 10px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        background: rgba(255, 255, 255, 0.9);
        width: 40px !important;
        height: 40px !important;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.2rem !important;
    }
}
@media (max-width: 1024px) {
    .curve svg,
    .curve-top svg {
        height: 80px;
    }

footer .curve {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: max-content;
}
    
    footer {
        padding: 6rem 2rem 2rem;
    }
.page-header {
    padding: 5rem 2rem 7rem;
}
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
  
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .hero-slider {
        height: 500px;
    }
.page-header {
    padding: 5rem 2rem 6rem;
}
    
    /* Corves més petites en tablet */
    .curve svg,
    .curve-top svg {
        height: 60px;
    }

footer .curve {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: max-content;
}
    
    footer {
        padding: 5rem 2rem 2rem;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        display: none;
    }
    
    .mobile-bottom-bar {
        display: flex;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
	
    .review-card {
        padding: 1.5rem;
    }
    
    .review-text {
        font-size: 1rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px !important;
        height: 35px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1rem !important;
    }
	
	/* Ocultar redes sociales de nav en móvil */
    .nav-social-links {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Corves molt petites en mòbil */
    .curve svg,
    .curve-top svg {
        height: 40px;
    }
	
    .mobile-menu {
        width: 85%;
    }
	
footer .curve {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: max-content;
}
    
    footer {
        padding: 4rem 1.5rem 1.5rem;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .bonus-content {
        padding: 1.5rem;
    }
    
    .bonus-content h2 {
        font-size: 1.5rem;
    }
    
    .service-card,
    .review-card {
        padding: 1.5rem;
    }
    
    .hero-slider {
        height: 400px;
    }
.page-header {
    padding: 5rem 2rem;
}
}