:root {
    --primary: #f8f9fa;
    --accent: #0F172A;
    --accent-dark: #4AAFCC;
    --blue-accent: #5BC0DE;
    --text: #0f172a;
    --light: #ffffff;
    --container: 1280px;
    --light-blue-bg: rgba(91, 192, 222, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'General Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--primary);
    color: var(--text);
    overflow-x: hidden;
}

.shell {
    width: min(var(--container), 92%);
    margin: 0 auto;
}

.floating-nav {
    position: fixed;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 95%);
    z-index: 100;
    background: rgba(91, 192, 222, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
}

@media (max-width: 768px) {
    .floating-nav {
        top: 20px;
        width: 96%;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 2.5rem;
    padding: 0 0.5rem;
}

.brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.95;
    transition: all 0.2s;
}

.nav-menu a:hover {
    opacity: 1;
}

.nav-contact {
    margin-left: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.95;
}

.btn-quote,
.nav-menu .btn-quote,
a.btn-quote {
    display: inline-block;
    background: white;
    color: #5BC0DE;
    padding: 0.75rem 1.75rem;
    border: 2px solid white;
    border-radius: 99px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    opacity: 1;
}

.btn-quote:hover,
.nav-menu .btn-quote:hover,
a.btn-quote:hover {
    transform: translateY(-2px);
    background: transparent;
    color: white;
    border-color: white;
}

.btn-menu {
    display: none;
    background: none;
    border: none;
    width: 24px;
    height: 20px;
    position: relative;
    cursor: pointer;
}


.btn-menu span,
.btn-menu span::before,
.btn-menu span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.btn-menu span {
    top: 50%;
    transform: translateY(-50%);
}

.btn-menu span::before {
    top: -8px;
}

.btn-menu span::after {
    bottom: -8px;
}

.btn-menu.active span {
    background: transparent;
}

.btn-menu.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.btn-menu.active span::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4));
    z-index: 1;
    pointer-events: none;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero > *:not(.hero-bg-image) {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 10rem;
        padding-bottom: 3rem;
        min-height: auto;
    }

    .hero-split-grid {
        padding-top: 3rem;
    }
}

.hero-content {
    color: var(--light);
    max-width: 720px;
    animation: fadeUp 0.8s ease forwards;
}

.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn-primary {
    background: var(--blue-accent);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 99px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: #4AAFCC;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 192, 222, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 99px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-2px);
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(8px);
}

.feature-badge i {
    color: var(--blue-accent);
    font-size: 1.125rem;
}

.hero-form-box {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-form-box h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.hero-form-box > p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.hero-quick-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-quick-form input,
.hero-quick-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.hero-quick-form input:focus,
.hero-quick-form textarea:focus {
    outline: none;
    border-color: var(--blue-accent);
}

.hero-quick-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

@media (max-width: 968px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-form-box {
        padding: 2rem;
    }
}

.usp-wrap {
    display: flex;
    gap: 2rem;
    max-width: 800px;
}

.usp {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.9375rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.usp i {
    color: var(--accent);
    font-size: 1.25rem;
}

.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 94%;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 90;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    max-height: 600px;
}

.mobile-content {
    padding: 2rem 1.5rem;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 500;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-links a:hover {
    background: rgba(91, 192, 222, 0.08);
    color: var(--blue-accent);
}

.mobile-links .btn-quote {
    margin-top: 1rem;
    color: white;
    background: var(--blue-accent);
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 99px;
}

.mobile-links .btn-quote:hover {
    background: #4AAFCC;
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.mobile-contact a {
    color: #64748b;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.chat-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
}

.chat-close {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
}

.chat-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #5BC0DE;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 201;
    transition: all 0.2s;
}

.chat-close:hover {
    background: #4AAFCC;
}

.chat-button {
    width: 3.5rem;
    height: 3.5rem;
    background: #5BC0DE;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    box-shadow: 0 8px 24px rgba(91, 192, 222, 0.25);
    cursor: pointer;
    transition: all 0.2s;
}

.chat-button:hover {
    background: #4AAFCC;
}

.chat-button:hover {
    transform: translateY(-2px);
}

.chat-popup {
    position: absolute;
    bottom: calc(100% + 1rem);
    right: 0;
    width: 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 1.75rem;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.chat-popup.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-popup h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.chat-popup p {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 1.25rem;
}

.chat-popup form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-popup input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.chat-popup input:focus {
    outline: none;
    border-color: var(--accent);
}

.chat-popup button {
    background: #5BC0DE;
    color: white;
    padding: 0.875rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s;
}

.chat-popup button:hover {
    background: #4AAFCC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 192, 222, 0.3);
}

@media (max-width: 1000px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .contact-link span {
        display: none;
    }

    .contact-link:before {
        content: 'Ring';
    }
}

@media (max-width: 850px) {
    .nav-menu {
        display: none;
    }

    .btn-menu {
        display: block;
        margin-right: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .usp-wrap {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-text {
    padding: 4rem 0;
    background: white;
}

.intro-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-content-wrapper {
    max-width: 600px;
}

.intro-badge {
    display: inline-block;
    background: var(--light-blue-bg);
    color: var(--blue-accent);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.intro-content-wrapper h2 {
    font-family: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.intro-content-wrapper p {
    font-size: 1.125rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.intro-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--blue-accent);
    color: white;
    padding: 1.125rem 2.25rem;
    border-radius: 99px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.0625rem;
}

.intro-cta-btn:hover {
    background: #4AAFCC;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 192, 222, 0.3);
}

.intro-cta-btn i {
    transition: transform 0.3s;
}

.intro-cta-btn:hover i {
    transform: translateX(4px);
}

.intro-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    background: rgba(91, 192, 222, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(91, 192, 222, 0.1);
    padding: 2rem;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    padding: 0;
}

.intro-feature i {
    font-size: 1.375rem;
    color: var(--blue-accent);
    flex-shrink: 0;
}

.intro-feature span {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text);
}

@media (max-width: 968px) {
    .intro-box {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-content-wrapper {
        max-width: 100%;
    }

    .intro-content-wrapper h2 {
        font-size: 2.25rem;
    }
}

.section-badge {
    display: inline-block;
    background: var(--light-blue-bg);
    color: var(--blue-accent);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.intro {
    padding: 5rem 0;
    background: #fafafa;
}

@media (max-width: 768px) {
    .intro {
        padding: 4rem 0;
    }
}

.intro-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.intro-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.intro-lead {
    font-size: 1.25rem;
    color: #334155;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 650px;
}

.intro-header p {
    font-size: 1.125rem;
    color: #334155;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-icon-wrapper {
    margin-bottom: 1.5rem;
}

.service-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--light-blue-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s;
}

.service-card:hover .service-icon-circle {
    background: var(--blue-accent);
    transform: scale(1.1);
}

.service-icon-circle i {
    font-size: 2rem;
    color: var(--blue-accent);
    transition: all 0.3s;
}

.service-card:hover .service-icon-circle i {
    color: white;
}

.service-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.service-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.service-icon i {
    font-size: 1.75rem;
    color: #0F172A;
    width: 1.75rem;
    text-align: center;
}

.service-icon h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
}

.service-content p {
    color: #334155;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.intro-cta {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #5BC0DE;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 99px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.cta-button:hover {
    background: #4AAFCC;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 192, 222, 0.3);
}

.cta-button i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .intro {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .intro-header h2 {
        font-size: 1.875rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

.gallery {
    padding: 6rem 0;
    background: rgba(15, 23, 42, 0.02);
}
.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}
.gallery-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.gallery-header p {
    font-size: 1.125rem;
    color: #64748b;
}
.gallery-swiper {
    width: 100%;
    height: 600px;
    padding: 1rem;
}
.swiper-slide {
    background-size: cover;
    background-position: center;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}
.swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
}
.swiper-button-next,
.swiper-button-prev {
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
}
.gallery-swiper:hover .swiper-button-next,
.gallery-swiper:hover .swiper-button-prev {
    opacity: 1;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #0F172A;
    opacity: 0.3;
    transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #0F172A;
    transform: scale(1.2);
}

.cta-banner {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 192, 222, 0.93), rgba(74, 175, 204, 0.95));
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 3rem 0;
    }
}

.cta-banner > *:not(.hero-bg-image) {
    position: relative;
    z-index: 2;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-text {
    color: white;
    flex: 1;
}

.cta-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-text p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    opacity: 0.9;
    max-width: 600px;
}

.cta2-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: #0F172A;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 99px;
    font-family: inherit;
    font-weight: 600;
    font-size: 1.125rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta2-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta2-button i {
    transition: transform 0.3s ease;
}

.cta2-button:hover i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .gallery {
        padding: 5rem 0;
    }
    
    .gallery-swiper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 4rem 0;
    }
    
    .gallery-swiper {
        height: 400px;
        padding: 0.5rem;
    }
    
    .gallery-header {
        margin-bottom: 3rem;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .cta-banner {
        padding: 5rem 0;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.services-features {
    padding: 5rem 0 3rem;
    background: #f8f9fb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-box {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
}

.feature-box i {
    font-size: 2rem;
    color: #0F172A;
    margin: 2rem 0 1rem;
}

.feature-box h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0F172A;
    padding: 0 2rem;
}

.feature-box p {
    margin-bottom: 2rem;
    color: #64748b;
    line-height: 1.6;
    padding: 0 2rem;
}

.feature-box .btn-primary {
    margin: 0 2rem 2rem;
}

.reviews {
    padding: 3rem 0;
    background: #fff;
}

.google-reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-contact-section {
    padding: 4rem 0;
    background: #f8f9fb;
}

.about-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

@media (max-width: 968px) {
    .about-contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.contact-form-header p {
    font-size: 1.125rem;
    color: #334155;
}

.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.main-contact-form input,
.main-contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
}

.main-contact-form input:focus,
.main-contact-form textarea:focus {
    outline: none;
    border-color: #5BC0DE;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #5BC0DE;
    color: white;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 99px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    background: #4AAFCC;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 192, 222, 0.3);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .about-content h2 {
        font-size: 1.75rem;
    }
}

.instagram-section {
    padding: 4rem 0;
    background: white;
}

.instagram-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.instagram-header p {
    font-size: 1.125rem;
    color: #334155;
}

.main-footer {
    background: linear-gradient(135deg, #5BC0DE 0%, #4AAFCC 100%);
}

.footer-map-section iframe {
    display: block;
    border: 0;
    height: 280px;
}

.footer-images {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 0 1.5rem;
}

.footer-logo-frame {
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.footer-logo-frame img {
    width: 140px;
    height: auto;
    display: block;
}

.footer-images .certificate-container {
    margin: 0;
    padding: 0.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.footer-images .certificate-container img {
    width: 100px;
    height: auto;
    display: block;
}

.footer-links {
    display: flex;
    gap: 3rem;
    padding-bottom: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-column h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.25rem 0;
}

.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-column a:hover {
    color: white;
}

.footer-column i {
    font-size: 0.8rem;
    width: 0.9rem;
}

.footer-social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icon:hover {
    background: white;
    color: var(--blue-accent);
}

.footer-bottom {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-images {
        justify-content: center;
        padding: 1.5rem 0 1rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }
}

.info-boxes {
    padding: 4rem 0;
    background: #f8f9fb;
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.services-intro h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.services-tagline {
    font-size: 1.25rem;
    color: #334155;
    line-height: 1.7;
}

.boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.box {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.box-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.box-content {
    padding: 1.5rem;
}

.box-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0F172A;
}

.box-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.box-btn {
    background: #5BC0DE;
    color: white;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 99px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.box-btn:hover {
    background: #4AAFCC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 192, 222, 0.3);
}

@media (max-width: 1024px) {
    .boxes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .boxes-grid {
        grid-template-columns: 1fr;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .services-extra-grid {
        grid-template-columns: 1fr;
    }
}

.services-extra-banner {
    margin-top: 4rem;
}

.banner-content {
    background: linear-gradient(135deg, #5BC0DE 0%, #4AAFCC 100%);
    border-radius: 2rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
    box-shadow: 0 20px 60px rgba(91, 192, 222, 0.25);
}

.banner-text {
    padding: 4rem;
    color: white;
}

.banner-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.banner-text h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.banner-text > p {
    font-size: 1.125rem;
    color: white;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.banner-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: white;
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #5BC0DE;
    padding: 1.25rem 2.5rem;
    border-radius: 99px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.banner-cta i {
    transition: transform 0.3s;
}

.banner-cta:hover i {
    transform: translateX(4px);
}

.banner-image {
    height: 100%;
    min-height: 500px;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 968px) {
    .banner-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .banner-text {
        padding: 3rem 2rem;
    }

    .banner-text h3 {
        font-size: 2.25rem;
    }

    .banner-image {
        min-height: 300px;
        order: -1;
    }
}

.box {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9rem 0 4rem;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6));
    z-index: 1;
    pointer-events: none;
}

.page-hero > *:not(.hero-bg-image) {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    text-align: center;
    color: white;
    max-width: 750px;
    margin: 0 auto;
}

.page-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 7rem 0 3rem;
    }
}

.owner-portrait {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    margin: 0 auto 2rem;
    display: block;
    border: 4px solid var(--blue-accent);
}

.owner-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-accent);
    margin: 1.5rem 0;
}

.social-box {
    padding: 2rem;
    background: var(--light-blue-bg);
    border-radius: 1rem;
    margin-top: 2rem;
}

.social-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.social-icon-dark {
    background: var(--blue-accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.social-icon-dark:hover {
    background: #4AAFCC;
    color: white;
    transform: translateY(-2px);
}

.about-section {
    padding: 4rem 0;
    background: var(--primary);
}

.about-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.about-header h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.about-cta {
    background: var(--accent);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 99px;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.about-cta:hover {
    transform: translateY(-2px);
}

.about-content {
    display: grid;
}

.about-main p {
    color: #334155;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-company-info {
    font-size: 1rem;
    color: #64748b;
}

.quality-section {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.quality-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.quality-section > p {
    color: #334155;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.quality-list {
    display: grid;
    gap: 1rem;
    padding-left: 1.5rem;
}

.quality-list li {
    color: #334155;
    font-size: 1.125rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.quality-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .about-header h1 {
        font-size: 2rem;
    }

    .quality-section {
        padding: 2rem;
    }

    .quality-section h2 {
        font-size: 1.5rem;
    }
}

.rut-header h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #334155;
}

.rut-link {
    display: inline-block;
    text-align: center;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 2rem;
}

.rut-link:hover {
    background-color: var(--accent);
    color: #fff;
}

.about-main p {
    text-align: justify;
    line-height: 1.8;
    color: #334155;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.rut-header h1 {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.rut-section .about-main p {
    text-align: justify;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.rut-link {
    display: inline-block;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    border: 2px solid var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.rut-link:hover {
    background-color: var(--accent);
    color: #fff;
}

@media (max-width: 768px) {
    .rut-header h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .rut-section .about-main p {
        text-align: justify;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .rut-link {
        font-size: 1rem;
        padding: 0.6rem 1.25rem;
        margin-top: 1.5rem;
    }
}

.about-section .about-main p {
    text-align: left;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    color: #334155;
}

.contact-image {
    margin-top: 3rem;
    display: none;
}

.contact-image img {
    width: 100%;
    border-radius: 1rem;
}

@media (min-width: 901px) {
    .contact-image {
        display: block;
    }
}
.contact-page {
    background: var(--primary);
    min-height: 100vh;
}

.contact-hero {
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-bottom: -100px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9));
    z-index: 1;
    pointer-events: none;
}

.contact-hero > *:not(.hero-bg-image) {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.contact-container {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1.5rem;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 1.125rem;
    transition: opacity 0.2s;
}

.info-link:hover {
    opacity: 0.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-field {
    position: relative;
}

.input-field input,
.input-field textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
    background: transparent;
}

.input-field label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #64748b;
    transition: all 0.2s;
    pointer-events: none;
    font-size: 1rem;
}

.input-field input:focus,
.input-field textarea:focus,
.input-field input:valid,
.input-field textarea:valid {
    border-color: var(--accent);
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.input-field input:focus + label,
.input-field textarea:focus + label,
.input-field input:valid + label,
.input-field textarea:valid + label {
    top: 0.5rem;
    font-size: 0.75rem;
    color: var(--accent);
}

.contact-form button {
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        height: 300px;
        margin-bottom: -50px;
    }
}

@media (max-width: 900px) {
    .hero-banner {
        height: 200px;
        margin-bottom: -80px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
        margin-top: 0;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-info {
        padding-top: 0;
    }

    .info-label:first-child {
        margin-top: 0;
    }
}

@media (min-width: 769px) {
    .contact-page .reviews {
        padding: 0;
    }

    .contact-page .google-reviews-container {
        margin: 2rem auto;
    }
}

.about-badge {
    display: inline-block;
    width: fit-content;
    background: var(--light-blue-bg);
    color: var(--blue-accent);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    justify-self: start;
}

.about-content h2 {
    font-family: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-intro {
    font-size: 1.125rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight {
    display: flex;
    gap: 1.25rem;
    align-items: start;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: var(--blue-accent);
}

.highlight-text h4 {
    font-family: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.highlight-text p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.5;
}

.highlight-text a {
    color: #5BC0DE;
    text-decoration: none;
}

.about-cta-box {
    background: var(--light-blue-bg);
    padding: 1.75rem;
    border-radius: 1rem;
    border-left: 4px solid var(--blue-accent);
}

.about-cta-box p {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
}

.about-cta-box p:first-child {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.about-cta-box p:nth-child(2) {
    color: #64748b;
    margin-bottom: 1.25rem;
}

.about-cta-box .footer-social-icons {
    margin-top: 1rem;
}

.about-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--blue-accent);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 99px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.about-phone-btn:hover {
    background: #4AAFCC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 192, 222, 0.3);
}

@media (max-width: 968px) {
    .about-content h2 {
        font-size: 1.875rem;
    }
}

.services-details {
    padding: 4rem 0;
    background: #f8f9fb;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.services-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.services-lead {
    font-size: 1.25rem;
    color: #334155;
    line-height: 1.7;
}

.services-header p {
    font-size: 1.25rem;
    color: #334155;
    line-height: 1.6;
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-category {
    background: white;
    padding: 0;
    border-radius: 1.25rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s;
    overflow: hidden;
}

.service-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.category-header {
    position: relative;
    height: 250px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    pointer-events: none;
}

.category-header h3 {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    right: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin: 0;
    z-index: 1;
}

.service-category ul {
    list-style: none;
    padding: 1.5rem 2rem 2rem;
    margin: 0;
}

.service-category li {
    padding: 0.75rem 0;
    color: #334155;
    font-size: 0.9375rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.service-category li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-accent);
    font-weight: 600;
}

.pricing-box {
    background: linear-gradient(135deg, var(--blue-accent) 0%, #4AAFCC 100%);
    color: white;
    padding: 2.5rem 3rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(91, 192, 222, 0.25);
}

.pricing-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon i {
    font-size: 2rem;
}

.pricing-content h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-content p {
    font-size: 1.125rem;
    opacity: 0.95;
    line-height: 1.6;
}

.pricing-box i {
    font-size: 2rem;
    flex-shrink: 0;
}

.pricing-box h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-box p {
    font-size: 1.125rem;
    opacity: 0.95;
}

.area-links-section {
    padding: 2rem 0;
}

.service-extra-info {
    text-align: center;
    max-width: 700px;
    margin: 2rem auto;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.area-links-section .service-extra-info {
    margin: 0 auto;
}

.service-extra-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.service-extra-info p {
    font-size: 1.125rem;
    color: #334155;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-extra-info .box-btn {
    margin: 0.375rem;
}

.service-extra-info p a {
    color: var(--blue-accent);
    text-decoration: none;
    font-weight: 500;
}

.service-extra-info p a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .services-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-details {
        padding: 3rem 0;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .service-category {
        padding: 0;
    }

    .pricing-box {
        flex-direction: column;
        padding: 1.5rem;
    }
}

.certificate-container {
    margin-top: 1rem;
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    width: fit-content;
    display: block;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.certificate-container:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.certificate-container img {
    width: 240px;
    max-width: 100%;
    height: auto;
    display: block;
}

.certificate-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 8px;
    border-radius: 50%;
    font-size: 14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#certificateLightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    height: auto;
    width: auto;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.5;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--blue-accent);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #334155;
}



/* Footer Layout Fixes & Cleanup */

/* Preserved Helper Classes */
.tiktok-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    margin-top: 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 99px;
    transition: all 0.2s;
}

.tiktok-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.form-logo-placeholder {
    text-align: left;
    margin-bottom: 1rem;
}

.form-logo-placeholder img {
    max-width: 180px;
    height: auto;
    display: inline-block;
}

.instagram-section {
    padding-bottom: 4rem;
}

/* =========================================
   NEW FOOTER LAYOUT (Grid System)
   ========================================= */
.main-footer {
    background: linear-gradient(135deg, #5BC0DE 0%, #4AAFCC 100%);
    color: white;
    padding-top: 4rem;
    margin-top: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
    align-items: start;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Map and Logo - Top Row, Large & Centered */
.footer-map, 
.footer-logo {
    grid-column: span 3;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bottom Row Items - 3 Columns */
.footer-info,
.footer-links,
.footer-contact {
    grid-column: span 2;
}

/* Info Section */
.footer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-icon {
    height: 44px;
    min-width: 44px;
    padding: 0 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icon:hover {
    background: white;
    color: #5BC0DE;
    transform: translateY(-2px);
}

/* Links & Contact Headers */
.footer-block h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
}

.footer-block a, 
.footer-block span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.5;
    font-size: 1rem;
}

.footer-block a:hover {
    color: white;
    opacity: 1;
    transform: translateX(4px);
}

.footer-block i {
    width: 20px;
    text-align: center;
}

/* Certificate */
.footer-cert-container {
    margin-top: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 0.75rem;
    width: 140px;
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.footer-cert-container:hover {
    transform: scale(1.05);
}

.footer-cert-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.footer-zoom-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: white;
    color: #5BC0DE;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Responsive Grid */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-map, 
    .footer-logo {
        grid-column: span 2; /* Full width on tablet */
    }

    .footer-info {
        grid-column: span 2; /* Full width info */
    }
    
    .footer-links,
    .footer-contact {
        grid-column: span 1; /* Half width links/contact */
    }
}

@media (max-width: 768px) {
    .footer-top {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-map, .footer-logo {
        width: 100%;
        margin: 0 auto;
    }

    .footer-block {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-block a,
    .footer-block span {
        justify-content: center;
        width: 100%;
    }

    .footer-social-icons {
        justify-content: center;
    }
}

/* Page Hero without image - solid blue gradient */
.page-hero-solid {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9rem 0 4rem;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #5BC0DE 0%, #4AAFCC 100%);
}

.page-hero-solid .page-hero-content {
    text-align: center;
    color: white;
    max-width: 750px;
    margin: 0 auto;
}

.page-hero-solid h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.page-hero-solid p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero-solid {
        padding: 7rem 0 3rem;
    }
}

.reviews-section {
    padding: 4rem 0;
    background: #f8f9fb;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }
}

