/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.page-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: #0f2950;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader img {
    width: 110px;
    filter: drop-shadow(0 15px 35px rgba(15, 41, 80, 0.25));
}

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

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

/* Water-inspired Color Palette */
:root {
    --primary-blue: #0077be;
    --turquoise: #20b2aa;
    --light-blue: #87ceeb;
    --navy: #1e3a8a;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --dark-gray: #64748b;
    --gradient: linear-gradient(135deg, var(--primary-blue), var(--turquoise));
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    height: 40px;
    overflow: hidden;
}

.nav-logo .logo {
    height: 90px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: #011029;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 119, 190, 0.9), rgba(32, 178, 170, 0.7));
    mix-blend-mode: multiply;
    z-index: 1;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 6rem 1.5rem 5rem;
    color: var(--white);
}

.hero-eyebrow {
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
}

.hero-btn {
    padding: 16px 45px;
    border-radius: 999px;
    background: var(--gradient);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 119, 190, 0.25);
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Services Summary */
.services-summary {
    position: relative;
    padding: 120px 0 150px;
    background: #f4f9ff;
    overflow: hidden;
}

.services-summary__top-decor,
.services-summary__bottom-decor {
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0));
    clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
    z-index: 0;
}

.services-summary__bottom-decor {
    bottom: 0;
    top: auto;
    background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0));
    clip-path: polygon(0 0, 100% 65%, 100% 100%, 0 100%);
}

.services-summary .container {
    position: relative;
    z-index: 2;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    font-weight: 600;
    color: #9fc0ff;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.services-summary__title {
    font-size: clamp(2.5rem, 5vw, 3rem);
    text-align: center;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-description {
    max-width: 560px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--dark-gray);
    line-height: 1.7;
}

.services-summary__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.service-spot {
    text-align: center;
}

.service-spot__image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    padding: 8px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 45px rgba(0, 119, 190, 0.2);
    overflow: hidden;
    margin: 0 auto 1rem;
    transition: transform 0.4s ease;
}

.service-spot__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.service-spot__image img.product-image {
    object-fit: contain;
    padding: 16px;
    border-radius: 0;
}

.service-spot:hover .service-spot__image {
    transform: translateY(-10px);
}

.service-spot h3 {
    font-size: 1.2rem;
    color: var(--navy);
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.service-spot__description {
    font-size: 0.95rem;
    color: var(--dark-gray);
    max-width: 200px;
    margin: 0.75rem auto 0;
    line-height: 1.6;
}

/* About Section */
.about {
    /* padding: 120px 0; */
    background: var(--white);
}

.about-hero {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: #f6fbff;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 119, 190, 0.08);
    overflow: hidden;
}

.about-hero__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-hero__eyebrow {
    letter-spacing: 0.6rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--turquoise);
    margin-bottom: 0.5rem;
}

.about-hero__tagline {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
}

.about-hero__title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: var(--primary-blue);
    text-align: center;
    line-height: 1.2;
}

.about-hero__copy {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.about-hero__image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    min-height: 360px;
    max-height: 360px;
    max-width: 520px;
    margin: 0 auto;
}

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

.about-hero__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    color: var(--turquoise);
    border-radius: 16px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-hero__badge i {
    color: var(--primary-blue);
}

@media (max-width: 900px) {
    .about-hero {
        padding: 2.5rem;
    }

    .about-hero__title {
        font-size: clamp(2.5rem, 8vw, 3rem);
    }

    .about-hero__badge {
        top: 15px;
        left: 15px;
    }
}

@media (min-width: 1000px) {

    .about-hero__text {
        flex: 1;
    }

    .about-hero__image {
        flex: 1;
    }
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
    width: 100%;
}

.mission-vision__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.mission,
.vision {
    padding: 1.75rem;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(15, 41, 80, 0.12);
    box-shadow: 0 10px 30px rgba(15, 41, 80, 0.08);
}

.mission-vision__values {
    padding: 1.5rem 1.75rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15, 41, 80, 0.12);
    box-shadow: 0 12px 30px rgba(15, 41, 80, 0.12);
}

.mission-vision__values h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--navy);
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2f3b55;
}

.values-list li i {
    color: #10b981;
}

.mission h3,
.vision h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission h3 i,
.vision h3 i,
.mission-vision__values h3 i {
    color: var(--turquoise);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
}

.services-detailed {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
}

.service-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.08),
                0 3px 10px rgba(0, 119, 190, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(32, 178, 170, 0.15);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 45px rgba(0, 119, 190, 0.15),
                0 8px 15px rgba(32, 178, 170, 0.1);
    border-color: rgba(32, 178, 170, 0.3);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 119, 190, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
}

.service-item:hover .service-icon::after {
    opacity: 0.5;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 119, 190, 0.3);
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-item:hover .service-content h3 {
    color: var(--primary-blue);
}

.service-content p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.service-item:hover .service-content p {
    color: #4a5568;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content li {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: bold;
}

/* Products Section */
.products.showcase {
    padding: 80px 0;
    background: #e9f3fb;
}

.products-page-hero {
    padding: 110px 0 80px;
    background: #f4f7fb;
    text-align: center;
}

.products-page-hero h1 {
    font-size: clamp(2.8rem, 4vw, 3.5rem);
    color: #0f2950;
    margin: 0.5rem 0 1rem;
}

.products-page-hero p {
    color: #4a5568;
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.7;
}

.products-catalog {
    padding: 40px 0 80px;
    background: #fff;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.catalog-card {
    background: #f9fbff;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(15, 41, 80, 0.08);
}

.catalog-card img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    padding: 0.7rem;
}

.catalog-card h3 {
    font-size: 1.15rem;
    color: #0f2950;
    text-align: center;
}

.catalog-card p {
    color: #4a5568;
    text-align: center;
    line-height: 1.6;
    font-size: 0.95rem;
}

.products-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.products-header__cta {
    margin-top: 1.25rem;
}

.products-search {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.products-search input {
    width: 100%;
    max-width: 420px;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 41, 80, 0.2);
    font-size: 0.95rem;
    color: #0f2950;
    transition: border 0.3s ease;
    background: #fff;
}

.products-search input:focus {
    outline: none;
    border-color: #1d9fe3;
    box-shadow: 0 0 0 3px rgba(29, 159, 227, 0.15);
}

.products-eyebrow {
    letter-spacing: 0.35rem;
    font-size: 0.85rem;
    color: #233f64;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.products-title {
    font-size: clamp(2.4rem, 4vw, 3rem);
    color: #0f2950;
    margin-bottom: 0.5rem;
}

.products-subtitle {
    color: #4a5568;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    align-items: flex-start;
}

.showcase-card {
    background: transparent;
    text-align: center;
    padding: 1rem 1.25rem 2rem;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.showcase-card img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
}

.showcase-name {
    font-size: 1.05rem;
    color: #111;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: capitalize;
}

.btn-gradient {
    background: linear-gradient(135deg, #1d9fe3, #41c0ff);
    color: var(--white);
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-content: center;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(29, 159, 227, 0.35);
}

.product-detail {
    padding: 100px 0 120px;
    background: #fff;
}

.detail-card {
    background: #f8fbff;
    border-radius: 30px;
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    box-shadow: 0 15px 40px rgba(16, 40, 80, 0.1);
    align-items: center;
}

.detail-image {
    text-align: center;
}

.detail-image img {
    width: 100%;
    border-radius: 20px;
    max-height: 400px;
    object-fit: contain;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-content h1 {
    font-size: clamp(2.6rem, 4vw, 3.2rem);
    color: #0f2950;
}

.detail-content p {
    color: #455885;
    line-height: 1.8;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 119, 190, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--turquoise);
    margin-top: 0.2rem;
}

.contact-item h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 119, 190, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--turquoise);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 119, 190, 0.1);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--turquoise);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--turquoise);
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

.footer-credit {
    font-size: 0.9rem;
    margin-top: 0.35rem;
    color: #94a3b8;
}

.footer-credit a {
    color: #a5c7ff;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 990px) {
    .services-detailed{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 0 30px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-summary,
    .about,
    .services,
    .products,
    .contact {
        padding: 60px 0;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.7) translateY(-50px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

#modalImage {
    width: 100%;
    height: 60vh;
    object-fit: contain;
    background: var(--light-gray);
    border-radius: 15px 15px 0 0;
}

.modal-info {
    padding: 2rem;
    background: var(--white);
    border-radius: 0 0 15px 15px;
}

.modal-info h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.modal-info p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.modal-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--turquoise);
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    border: 2px solid var(--turquoise);
}

/* Product card image cursor */
.product-card img {
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 2% auto;
        max-width: 95%;
        max-height: 95%;
    }

    #modalImage {
        height: 50vh;
    }

    .modal-info {
        padding: 1.5rem;
    }

    .modal-info h3 {
        font-size: 1.5rem;
    }

    .modal-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 1% auto;
        max-width: 98%;
        max-height: 98%;
    }

    #modalImage {
        height: 40vh;
    }

    .modal-info {
        padding: 1rem;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}