:root {
    --primary-blue: #2fa1ff;
    --text-dark: #19385c;
    --text-muted: #4e6b8c;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f4f6f9;
}

.main-header {
    display: flex;
    height: 100px;
    background-color: var(--white);
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    z-index: 10;
}

.logo-area {
    background-color: var(--primary-blue);
    width: 380px;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 3rem;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.logo-icon {
    width: 45px;
    height: 45px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-small {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-large {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 3rem;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-blue);
}

.arrow-down {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--text-muted);
    margin-top: 2px;
}

.main-nav a:hover .arrow-down {
    border-top-color: var(--primary-blue);
}

/* HERO SECTION */
.hero {
    height: calc(100vh - 100px);
    width: 100%;
    background-color: #000;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay-box {
    background-color: rgba(14, 38, 66, 0.85); /* Dark semi-transparent blue overlay */
    padding: 3.5rem 4rem;
    border-radius: 4px;
    max-width: 700px;
    text-align: center;
    color: var(--white);
    margin-left: auto;
    margin-right: 15%; /* Positions the box to the right like in the picture */
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

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

.hero-phone {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.2;
}

.separator {
    width: 80px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 0 auto 25px auto;
}

.hero p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 400;
}

/* SERVICES SECTION */
.services-section {
    width: 100%;
    background-color: var(--white);
    padding: 6rem 2rem;
}

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

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0b4985;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: #f7f9fc;
    padding: 3rem 2rem 2.5rem 2rem;
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Water drop shape */
.drop-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    box-shadow: -4px 4px 15px rgba(47, 161, 255, 0.25);
}

.drop-icon svg {
    transform: rotate(-45deg);
    width: 35px;
    height: 35px;
}

.service-card h3 {
    font-size: 1.35rem;
    color: #0b4985;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: auto; /* Push any items beneath to the bottom */
}

/* FEATURES SECTION */
.features-section {
    width: 100%;
    background: linear-gradient(to bottom, #ffffff 0%, #dcf0ff 100%);
    padding: 6rem 2rem;
    text-align: center;
}

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

.features-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e58e26;
    letter-spacing: 4px;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon-circle {
    width: 105px;
    height: 105px;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.feature-icon-circle svg {
    width: 45px;
    height: 45px;
}

.feature-item h3 {
    font-size: 1.25rem;
    color: #0b4985;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.feature-item p {
    font-size: 1.05rem;
    color: #3b658d;
    line-height: 1.6;
}

.feature-item p a {
    color: #3b658d;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.feature-item p a:hover {
    color: var(--primary-blue);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA SECTION */
.cta-section {
    width: 100%;
    background-color: var(--primary-blue);
    padding: 5rem 2rem;
    color: var(--white);
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.cta-left {
    flex: 1;
    max-width: 650px;
}

.cta-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.cta-left h2 .highlight {
    color: #ffd700;
}

.cta-left p {
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 500;
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 350px;
}

.cta-small {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-right .cta-small:last-child {
    margin-bottom: 0;
    margin-top: 1.2rem;
    font-size: 1rem;
    font-weight: 500;
}

.cta-phone-block {
    margin: 1.5rem 0;
}

.call-text {
    color: #ffd700;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.phone-number {
    color: #ffd700;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-whatsapp:hover {
    background-color: #1fba58;
}

@media (max-width: 1024px) {
    .logo-area {
        width: 320px;
        padding-left: 2rem;
    }
    .main-nav {
        padding-right: 2rem;
    }
    .main-nav ul {
        gap: 15px;
    }
    .hero-overlay-box {
        margin-right: auto;
        margin-left: auto;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .cta-left {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        height: auto;
        clip-path: none;
    }
    .logo-area {
        width: 100%;
        clip-path: none;
        justify-content: center;
        padding: 1rem;
    }
    .main-nav {
        padding: 1rem;
        justify-content: center;
        width: 100%;
    }
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero {
        height: auto;
        min-height: 80vh;
        padding: 2rem 1rem;
    }
    .hero-overlay-box {
        padding: 2rem;
        margin: 0;
        width: 100%;
    }
    .hero h1 { font-size: 2rem; }
    .hero-phone { font-size: 1.8rem; }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .cta-left h2 {
        font-size: 2rem;
    }
    .phone-number {
        font-size: 2.5rem;
    }
}

/* CONOCENOS SECTION */
.about-hero {
    width: 100%;
    background-color: #f8faff; /* Very soft light blue/purple tint */
    padding: 6rem 2rem;
}

.about-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.about-hero-images {
    flex: 1;
    position: relative;
    max-width: 600px;
}

.img-main {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 500px;
}

.img-detail {
    position: absolute;
    top: 50px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 12px;
    border: 8px solid var(--white);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-cta-box {
    position: absolute;
    top: 0;
    left: 10%;
    background-color: #0b2e4b; /* Dark blue */
    padding: 1.5rem;
    text-align: center;
    border-radius: 0 0 8px 8px; /* Tab shape hanging from top */
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    min-width: 260px;
}

.cta-box-title {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 700;
}

.cta-box-phone {
    color: #ffd700;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.btn-whatsapp-small {
    background-color: #25d366;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 700;
    display: inline-block;
    transition: background-color 0.3s ease;
    margin-bottom: 1rem;
    width: 100%;
}

.btn-whatsapp-small:hover {
    background-color: #1fba58;
}

.cta-box-footer {
    font-size: 0.9rem;
    font-weight: 500;
}

.about-hero-text {
    flex: 1;
    padding-top: 2rem;
}

.about-badge {
    background-color: #e58e26; /* Orange/Gold from image */
    color: #000;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 2px;
    padding: 0.5rem 2rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 3rem;
    box-shadow: 0 4px 10px rgba(229, 142, 38, 0.3);
}

.about-list {
    list-style-position: outside;
    margin-left: 1.5rem;
    color: var(--text-dark);
}

.about-list li {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-list li strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* WHY CHOOSE US SECTION */
.why-us {
    width: 100%;
    background-color: var(--white);
    padding: 6rem 2rem;
}

.why-us-container {
    max-width: 1280px;
    margin: 0 auto;
}

.why-us-title {
    text-align: center;
    margin-bottom: 5rem;
}

.why-us-title span {
    background-color: #f1f5fa; /* Light highlight */
    color: #19385c;
    font-size: 2.5rem;
    font-weight: 800;
    padding: 0.5rem 2rem;
    display: inline-block;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.why-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.why-icon svg {
    width: 18px;
    height: 18px;
}

.why-content h3 {
    font-size: 1.15rem;
    color: #6c7a89; /* Grey from image */
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.why-content p {
    font-size: 1rem;
    color: #95a5a6; /* Light grey */
    line-height: 1.6;
}

.why-content p strong {
    color: #6c7a89;
}

/* FOOTER SECTION */
.site-footer {
    width: 100%;
    background-color: var(--primary-blue);
    padding: 1.5rem 2rem;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .about-hero-container {
        flex-direction: column;
    }
    .img-detail {
        right: 0;
    }
    .why-us-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .about-cta-box {
        position: relative;
        left: 0;
        border-radius: 8px;
        margin-bottom: 2rem;
    }
    .img-detail {
        display: none; /* Hide on mobile to save space */
    }
    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* UNIFIED FOOTER SECTION */
.unified-footer {
    width: 100%;
    background-color: var(--primary-blue);
    color: var(--white);
}

.unified-footer-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.unified-footer-left h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
}

.unified-footer-left .highlight {
    color: #ffd700;
}

.unified-footer-right {
    text-align: center;
    min-width: 350px;
}

.unified-footer-phone-block {
    margin-bottom: 1.5rem;
}

.unified-call-text {
    color: #ffd700;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.unified-phone-number {
    color: #ffd700;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.unified-24h, .unified-festivos {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-family: monospace, sans-serif;
}

.unified-festivos {
    margin-bottom: 0;
}

.unified-footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
}

.unified-footer-copy {
    opacity: 0.9;
}

.unified-footer-links {
    display: flex;
    align-items: center;
}

.unified-footer-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: opacity 0.3s ease;
}

.unified-footer-links a:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .unified-footer-top {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .unified-footer-left h2 {
        font-size: 2rem;
    }
    .unified-phone-number {
        font-size: 2.6rem;
    }
    .unified-24h, .unified-festivos {
        font-size: 1.6rem;
    }
    .unified-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .unified-footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .unified-footer-links a {
        margin-left: 0;
    }
}

/* URGENCIAS SECTION */
.urgencias-section {
    width: 100%;
    padding: 4rem 2rem;
    background-color: var(--white);
    display: flex;
    justify-content: center;
}

.urgencias-container {
    max-width: 1050px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.urgencias-left {
    display: flex;
}

.urgencias-box {
    width: 100%;
    border: 4px solid #c82333;
    border-radius: 4px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.urgencias-box-title {
    color: #c82333;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.urgencias-phone-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.urgencias-phone-row svg {
    width: 55px;
    height: 55px;
    fill: #000;
}

.urgencias-phone {
    font-size: 3.5rem;
    font-family: 'Arial Black', Impact, sans-serif;
    font-weight: 900;
    color: #000;
    letter-spacing: -2px;
    line-height: 1;
}

.urgencias-right {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
    display: flex;
}

.urgencias-van-img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 100%;
}

.logo-overlay {
    position: absolute;
    top: 55%;
    left: 45%;
    transform: translate(-50%, -50%) skewX(-10deg);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.85;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.overlay-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-blue);
}

.logo-overlay-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-overlay-text .logo-small {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}
.logo-overlay-text .logo-large {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
}

@media (max-width: 1024px) {
    .urgencias-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .urgencias-box-title {
        font-size: 1.6rem;
    }
    .urgencias-phone {
        font-size: 2.3rem;
    }
    .urgencias-phone-row svg {
        width: 35px;
        height: 35px;
    }
    .logo-overlay {
        transform: translate(-50%, -50%) skewX(0deg) scale(0.8);
    }
}

/* URGENCIAS INFO SECTION */
.urgencias-info-section {
    width: 100%;
    padding: 0 2rem 6rem 2rem;
    background-color: var(--white);
    display: flex;
    justify-content: center;
}

.urgencias-info-container {
    max-width: 950px;
    width: 100%;
    background-color: #ffffff;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); /* elegant floating card effect */
    border: 1px solid #eef2f6;
}

.urgencias-info-container h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.urgencias-info-container p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.urgencias-info-container p strong {
    color: var(--primary-blue);
}

.urgencias-info-container h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.urgencias-services-list {
    list-style: none; /* remove default bullets to use custom */
    padding-left: 0;
    margin-bottom: 2.5rem;
}

.urgencias-services-list li {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.urgencias-services-list li::before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.urgencias-cta-text {
    background-color: #f1f8ff; /* soft highlight for the final CTA */
    padding: 1.5rem;
    border-left: 4px solid var(--primary-blue);
    border-radius: 4px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .urgencias-info-container {
        padding: 2rem;
    }
    .urgencias-info-container h2 {
        font-size: 1.6rem;
    }
    .urgencias-info-container p, .urgencias-services-list li {
        font-size: 1.05rem;
    }
}

/* ALICANTE SECTION */
.alicante-banner {
    width: 100%;
    background-color: var(--primary-blue);
    padding: 1.5rem 2rem;
    text-align: center;
}

.alicante-banner h1 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.alicante-features {
    width: 100%;
    padding: 5rem 2rem;
    background-color: #f8faff;
    display: flex;
    justify-content: center;
}

.alicante-features-container {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.alicante-feature-box {
    background-color: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.alicante-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(47, 161, 255, 0.15);
}

.feature-box-icon {
    width: 75px;
    height: 75px;
    background-color: rgba(47, 161, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-box-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary-blue);
}

.alicante-feature-box h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .alicante-features-container {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .alicante-features-container {
        grid-template-columns: 1fr;
    }
    .alicante-banner h1 {
        font-size: 1.3rem;
    }
}

/* ALICANTE CONTENT TEXT SECTION */
.alicante-content-section {
    width: 100%;
    padding: 0 2rem 7rem 2rem;
    background-color: var(--white);
    display: flex;
    justify-content: center;
}

.alicante-content-container {
    max-width: 1000px;
    width: 100%;
    color: var(--text-dark);
}

.content-title {
    font-size: 2.2rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-align: center;
}

.highlight-phone {
    color: #e58e26;
}

.alicante-content-container > p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.content-subtitle {
    font-size: 1.8rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--primary-blue);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.reason-item {
    background-color: #f8faff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.reason-item h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.reason-item p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.services-detail-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.services-detail-list li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    position: relative;
    background-color: #ffffff;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #eef2f6;
}

.services-detail-list li::before {
    content: "✓";
    color: #25d366;
    font-weight: bold;
    font-size: 1.4rem;
    position: absolute;
    left: 1.2rem;
    top: 1.3rem;
}

.services-detail-list li strong {
    color: var(--primary-blue);
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .content-title {
        font-size: 1.6rem;
    }
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}


/* Dropdown styles */
.dropdown {
    position: relative;
}

.main-nav ul .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    padding: 0.5rem 0;
    list-style: none;
    flex-direction: column;
}

.main-nav ul .dropdown-menu.show {
    display: flex;
}

.main-nav ul .dropdown-menu li {
    width: 100%;
    margin-left: 0;
}

.main-nav ul .dropdown-menu a {
    color: var(--text-dark);
    padding: 12px 20px;
    display: block;
    text-transform: none;
    font-weight: 500;
    font-size: 1rem;
}

.main-nav ul .dropdown-menu a:hover {
    background-color: #f1f8ff;
    color: var(--primary-blue);
}

.arrow-down {
    display: inline-block;
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 5px;
    vertical-align: middle;
}

