/* ══════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom, #ffc0cb 0%, #e6f3ff 100%);
}

/* ── Progress Bar ── */
.progress-bar {
    position: fixed; top: 0; left: 0;
    height: 3px; background: #ff69b4;
    width: 0%; z-index: 9999;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
header {
    background: linear-gradient(135deg, #1a5f7a 0%, #159895 50%, #57c5b6 100%);
    color: white;
    padding: 1rem 5%;
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.header-content {
    display: flex; align-items: center;
    justify-content: space-between;
    max-width: 1200px; margin: 0 auto;
    flex-wrap: wrap; gap: 0.5rem;
}
.brand-section { display: flex; align-items: center; gap: 0.75rem; }
.logo { width: 55px; height: 55px; object-fit: contain; }
.brand-info h1 { font-size: 1.6rem; font-weight: 700; }
.tagline { font-style: italic; font-size: 0.85rem; color: #ffc0cb; }
nav { display: flex; gap: 1.2rem; }
nav a { color: white; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: opacity 0.2s; }
nav a:hover { opacity: 0.75; }
.mobile-menu-toggle {
    display: none; background: none; border: none;
    color: white; font-size: 1.5rem; cursor: pointer; padding: 0.3rem;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
    background: linear-gradient(135deg, #ff69b4 0%, #4a90e2 100%);
    color: white; padding: 4rem 5%; text-align: center;
}
.hero h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.hero p { font-size: 1.1rem; margin-bottom: 1.8rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-button {
    display: inline-block; background: white; color: #1a5f7a;
    padding: 0.8rem 2rem; text-decoration: none;
    border-radius: 25px; font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cta-button:hover { transform: scale(1.04); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }

/* ══════════════════════════════════════
   SHARED SECTION STYLES
   ══════════════════════════════════════ */
.section {
    padding: 3rem 5%;
    background: white;
    margin: 2rem 5%;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section-content { max-width: 1200px; margin: 0 auto; }
.section-title {
    text-align: center; font-size: 2rem;
    margin-bottom: 2rem; color: #1a5f7a;
}
.about-text { font-size: 1rem; margin-bottom: 1rem; text-align: center; }

/* WhatsApp CTA button (green) */
.cta-button-teal {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #25D366; color: white;
    padding: 0.8rem 2rem; text-decoration: none;
    border-radius: 25px; font-weight: 700; font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.35);
    transition: opacity 0.2s, transform 0.2s;
}
.cta-button-teal:hover { opacity: 0.92; transform: scale(1.03); }

/* ══════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════ */
.how-it-works-section {
    background: linear-gradient(135deg, #0d3d52 0%, #1a5f7a 50%, #159895 100%);
    color: white; position: relative; overflow: hidden;
}
.how-it-works-section::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,105,180,0.07) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(87,197,182,0.07) 0%, transparent 50%);
    pointer-events: none;
}
.how-it-works-section .section-content { position: relative; z-index: 1; }
.how-it-works-section .section-title { color: white; }
.how-it-works-section .section-title::after {
    content: ''; display: block; width: 55px; height: 3px;
    background: linear-gradient(90deg, #ff69b4, #57c5b6);
    margin: 0.5rem auto 0; border-radius: 2px;
}
.how-subtitle { text-align: center; color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 2.5rem; }
.steps-grid { display: flex; align-items: stretch; justify-content: center; }
.step-card {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px; padding: 2rem 1.4rem 1.6rem;
    text-align: center; flex: 1; max-width: 280px; position: relative;
    transition: background 0.25s, transform 0.25s;
}
.step-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.step-number {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #ff69b4, #c94b8a);
    color: white; font-size: 0.7rem; font-weight: 800;
    letter-spacing: 2px; padding: 0.25rem 0.75rem; border-radius: 20px;
}
.step-icon { font-size: 2.6rem; display: block; margin: 0.6rem 0 0.9rem; line-height: 1; }
.step-card h3 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.step-card p { color: rgba(255,255,255,0.72); font-size: 0.82rem; line-height: 1.6; }
.step-arrow {
    display: flex; align-items: center; justify-content: center;
    padding: 2rem 0.7rem 0; color: #ff69b4; font-size: 1.5rem; font-weight: 700; opacity: 0.8;
}
.how-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 2rem 0 1.5rem; }
.how-cta { text-align: center; }
.how-cta p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 0.9rem; }

/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.service-card {
    background: white; padding: 1rem; border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 3px solid #ff69b4; position: relative;
}
.service-card img { width: 100%; height: 160px; object-fit: cover; border-radius: 5px; margin-bottom: 0.75rem; display: block; }
.service-card h3 { color: #4a90e2; margin-bottom: 0.4rem; font-size: 1rem; }
.service-card p { color: #666; font-size: 0.85rem; line-height: 1.4; }
.service-price { font-weight: 700; color: #ff69b4; margin-top: 0.5rem; font-size: 0.95rem; }
.new-service { background: #fff5f5; border-left: 3px solid #ff6b6b; }
.new-badge {
    position: absolute; top: 8px; right: 8px;
    background: #ff6b6b; color: white;
    padding: 0.2rem 0.5rem; border-radius: 12px;
    font-size: 0.65rem; font-weight: 700; z-index: 1;
}
.offer { color: #ff6b6b; font-weight: 600; font-size: 0.8rem; margin-top: 0.4rem; font-style: italic; }

/* ══════════════════════════════════════
   PORTFOLIO
   ══════════════════════════════════════ */
.section-title::after {
    content: ''; display: block; width: 50px; height: 3px;
    background: linear-gradient(90deg, #ff69b4, #57c5b6);
    margin: 0.4rem auto 0; border-radius: 2px;
}
.how-it-works-section .section-title::after { background: linear-gradient(90deg, #ff69b4, #57c5b6); }

.portfolio-subtitle { text-align: center; color: #888; font-size: 0.92rem; margin-bottom: 1.8rem; }
.portfolio-filters { display: flex; justify-content: center; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.filter-btn {
    background: #f0f0f0; color: #555; border: none;
    padding: 0.45rem 1.1rem; border-radius: 20px;
    font-size: 0.85rem; font-weight: 600; cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}
.filter-btn:hover { background: #e0e0e0; transform: scale(1.03); }
.filter-btn.active {
    background: linear-gradient(135deg, #ff69b4, #57c5b6);
    color: white; box-shadow: 0 3px 10px rgba(255,105,180,0.3);
}
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.portfolio-item {
    position: relative; border-radius: 8px; overflow: hidden;
    cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    aspect-ratio: 1 / 1; background: #f5f5f5;
}
.portfolio-item img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center; display: block;
    transition: transform 0.35s ease;
}
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,95,122,0.75) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 0.7rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-label {
    color: white; font-size: 0.78rem; font-weight: 700;
    background: rgba(255,105,180,0.85); padding: 0.25rem 0.65rem; border-radius: 12px;
}
.portfolio-cta { text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #f0f0f0; }
.portfolio-cta p { color: #666; font-size: 0.92rem; margin-bottom: 0.9rem; }

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Lightbox ── */
.lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.92); z-index: 9998;
    align-items: center; justify-content: center; flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 88vw; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
    position: absolute; top: 18px; right: 24px;
    background: none; border: none; color: white;
    font-size: 2.5rem; cursor: pointer; opacity: 0.8; line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,105,180,0.75); border: none; color: white;
    font-size: 1.6rem; cursor: pointer; padding: 0.6rem 1rem;
    border-radius: 6px; transition: background 0.2s;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: #ff69b4; }

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testimonials-section {
    background: linear-gradient(135deg, #e8f7f7 0%, #fff0f8 100%);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
}
.testimonial-card {
    background: white; border-radius: 10px; padding: 1rem 1.1rem;
    box-shadow: 0 3px 12px rgba(26,95,122,0.09);
    display: flex; flex-direction: column; gap: 0.7rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:nth-child(odd)  { border-top: 3px solid #ff69b4; }
.testimonial-card:nth-child(even) { border-top: 3px solid #57c5b6; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(26,95,122,0.14); }
.testimonial-author { display: flex; align-items: center; gap: 0.6rem; padding-bottom: 0.6rem; border-bottom: 1px solid #f0f0f0; }
.testimonial-flag { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid #57c5b6; flex-shrink: 0; }
.author-info { display: flex; flex-direction: column; line-height: 1.2; }
.author-info strong { color: #1a5f7a; font-size: 0.88rem; font-weight: 700; }
.author-info span { font-size: 0.72rem; color: #aaa; }
.star-rating { display: inline-flex; gap: 1px; margin-top: 0.15rem; }
.star-rating .star { font-size: 0.8rem; line-height: 1; }
.star-rating .star.filled { color: #FFD700; }
.star-rating .star.empty { color: transparent; -webkit-text-stroke: 1.2px #ccc; }
.testimonial-text {
    font-size: 0.88rem; color: #555; line-height: 1.65;
    font-style: italic; padding-left: 1rem; position: relative;
}
.testimonial-text::before {
    content: '\201C'; position: absolute; left: 0; top: -0.15rem;
    font-size: 1.4rem; color: #ff69b4; font-family: Georgia, serif; line-height: 1;
}

/* ══════════════════════════════════════
   REVIEW FORM (Google Embed)
   ══════════════════════════════════════ */
.review-form-wrapper {
    margin-top: 2.5rem;
    background: white;
    border-radius: 12px;
    padding: 1.8rem 2rem;
    box-shadow: 0 4px 16px rgba(26,95,122,0.1);
    border-top: 4px solid #ff69b4;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.review-form-wrapper h3 { color: #1a5f7a; font-size: 1.2rem; margin-bottom: 0.3rem; text-align: center; }
.form-sub { text-align: center; color: #999; font-size: 0.82rem; margin-bottom: 1.3rem; }

.google-form-container {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}
.google-form-container iframe {
    width: 100%;
    height: 520px;
    border: none;
    display: block;
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.contact-info h3, .social-info h3 { color: #ff69b4; margin-bottom: 1rem; font-size: 1.2rem; }
.contact-item { margin-bottom: 1.1rem; }
.contact-item strong { color: #1a5f7a; display: block; margin-bottom: 0.25rem; font-size: 0.95rem; }
.contact-item a { color: #4a90e2; text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.contact-item span { color: #555; }
.contact-wa-btn { margin-top: 1.2rem; }
.social-sub { color: #666; font-size: 0.9rem; margin-bottom: 1rem; }
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.social-btn {
    display: flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; color: white;
    text-decoration: none; border-radius: 50%; font-size: 1.2rem;
    transition: transform 0.2s, opacity 0.2s;
}
.social-btn:hover { transform: scale(1.12); opacity: 0.9; }
.facebook  { background: #1877F2; }
.whatsapp  { background: #25D366; }
.instagram { background: #E4405F; }
.twitter   { background: #000000; }
.tiktok    { background: #000000; }
.linkedin  { background: #0077b5; }
.contact-map {
    width: 100%; height: 200px; border: 0;
    border-radius: 10px; margin-top: 1rem; display: block;
}

/* ══════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════ */
.faq-section {
    background: linear-gradient(135deg, #f0fafa 0%, #fff5fb 100%);
}
.faq-subtitle {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    margin-top: -1.2rem;
    margin-bottom: 2rem;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}
.faq-item {
    border-radius: 10px;
    background: white;
    box-shadow: 0 2px 10px rgba(26,95,122,0.07);
    overflow: hidden;
    border-left: 3px solid #ff69b4;
    transition: box-shadow 0.2s;
}
.faq-item:nth-child(even) { border-left-color: #57c5b6; }
.faq-item:hover { box-shadow: 0 4px 18px rgba(26,95,122,0.13); }
.faq-hidden { display: none; }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a5f7a;
    text-align: left;
    transition: background 0.2s;
    font-family: Arial, sans-serif;
}
.faq-question:hover { background: #f7fffe; }
.faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, #f0fafa, #fff0f8);
    color: #ff69b4;
}
.faq-icon {
    font-size: 1.4rem;
    font-weight: 700;
    color: #57c5b6;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.2s;
    line-height: 1;
    min-width: 22px;
    text-align: center;
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: #ff69b4;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.3s ease;
    padding: 0 1.1rem;
}
.faq-answer.open {
    max-height: 500px;
    padding: 0 1.1rem 1rem;
}
.faq-answer p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.8;
    border-top: 1px solid #f0f0f0;
    padding-top: 0.8rem;
}

/* Show More button */
.faq-toggle-wrap {
    text-align: center;
    margin-bottom: 2rem;
}
.faq-toggle-btn {
    background: white;
    border: 2px solid #57c5b6;
    color: #1a5f7a;
    padding: 0.65rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
    font-family: Arial, sans-serif;
}
.faq-toggle-btn:hover {
    background: linear-gradient(135deg, #ff69b4, #57c5b6);
    color: white;
    border-color: transparent;
    transform: scale(1.03);
}
.faq-toggle-icon {
    font-size: 1rem;
    transition: transform 0.35s ease;
    display: inline-block;
    line-height: 1;
}

/* Ask a Question */
.faq-ask-section {
    background: white;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(26,95,122,0.09);
    border-top: 4px solid #57c5b6;
    margin-top: 0.5rem;
}
.faq-ask-header {
    text-align: center;
    margin-bottom: 1.6rem;
}
.faq-ask-header h3 {
    color: #1a5f7a;
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}
.faq-ask-header p {
    color: #888;
    font-size: 0.88rem;
}
.faq-ask-options {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
}
.faq-ask-card {
    background: #f8fdfd;
    border-radius: 10px;
    padding: 1.4rem;
    border: 1px solid #e8f5f5;
}
.faq-ask-card-title {
    font-weight: 700;
    color: #1a5f7a;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.faq-ask-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.faq-ask-form input,
.faq-ask-form textarea {
    width: 100%;
    padding: 0.55rem 0.8rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.87rem;
    font-family: Arial, sans-serif;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}
.faq-ask-form input:focus,
.faq-ask-form textarea:focus { border-color: #57c5b6; }
.faq-ask-form textarea { resize: vertical; min-height: 75px; }
.faq-submit-btn {
    background: linear-gradient(135deg, #1a5f7a, #57c5b6);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    font-family: Arial, sans-serif;
    align-self: flex-start;
}
.faq-submit-btn:hover { opacity: 0.9; transform: scale(1.03); }
.faq-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.faq-form-success {
    display: none;
    background: #e8f8f0;
    color: #1a7a4a;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    border: 1px solid #b2e8cc;
}

/* Divider between the two options */
.faq-ask-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 700;
    position: relative;
}
.faq-ask-divider::before,
.faq-ask-divider::after {
    content: '';
    width: 1px;
    height: 60px;
    background: #e5e5e5;
}

/* WhatsApp card */
.faq-ask-wa {
    background: #f0fff8;
    border-color: #c3f0d8;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}
.faq-ask-wa-text {
    font-size: 0.84rem;
    color: #555;
    line-height: 1.6;
}
.faq-wa-btn { align-self: center; }
.faq-wa-hours {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: -0.3rem;
}

@media screen and (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; gap: 0.6rem; }
    .faq-question { font-size: 0.82rem; padding: 0.85rem 0.9rem; }
    .faq-answer p { font-size: 0.8rem; }
    .faq-ask-section { padding: 1.2rem 1rem; }
    .testimonials-preview { grid-template-columns: repeat(3, 1fr) !important; }
    .faq-ask-brief { padding: 1rem; }
    .faq-brief-text { font-size: 0.85rem; }
}

/* ══════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ══════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 75px;
    left: 20px;
    width: 54px;
    height: 54px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(37,211,102,0.5);
    animation: waPulse 2.5s infinite;
    transition: transform 0.2s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}
.whatsapp-tooltip {
    position: absolute;
    left: 62px;
    background: #25D366;
    color: white;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        bottom: 70px;
        left: 14px;
    }
    .whatsapp-tooltip { display: none; }
}

/* ══════════════════════════════════════
   BACK TO TOP + FOOTER
   ══════════════════════════════════════ */
.back-to-top {
    position: fixed; bottom: 20px; right: 20px;
    width: 44px; height: 44px; background: #ff69b4; color: white;
    border: none; border-radius: 50%; cursor: pointer;
    font-size: 1.4rem; display: none;
    align-items: center; justify-content: center; z-index: 999;
    box-shadow: 0 4px 12px rgba(255,105,180,0.4);
}
footer { background: #1a5f7a; color: white; padding: 2rem 5%; text-align: center; }
.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-nav { display: flex; gap: 1.5rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover { color: white; }

/* ══════════════════════════════════════
   TABLET  769px – 1024px
   ══════════════════════════════════════ */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid  { grid-template-columns: repeat(3, 1fr) !important; }
    .portfolio-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .contact-content { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════
   MOBILE  ≤ 768px
   ══════════════════════════════════════ */
@media screen and (max-width: 768px) {

    /* Header */
    header { padding: 0.6rem 3%; }
    .logo { width: 38px; height: 38px; }
    .brand-info h1 { font-size: 0.95rem; }
    .tagline { font-size: 0.65rem; }
    .mobile-menu-toggle { display: block; }
    nav {
        display: none; flex-direction: column; width: 100%;
        background: rgba(0,0,0,0.2); padding: 0.75rem 1rem;
        border-radius: 6px; margin-top: 0.5rem; gap: 0.6rem;
    }
    nav.open { display: flex !important; }

    /* Hero */
    .hero { padding: 2rem 4%; }
    .hero h2 { font-size: 1.3rem; }
    .hero p { font-size: 0.9rem; }

    /* Sections */
    .section { margin: 0.8rem 2%; padding: 1.2rem 3%; }
    .section-title { font-size: 1.2rem; margin-bottom: 1rem; }

    /* How It Works */
    .steps-grid { flex-direction: column; align-items: center; gap: 0.5rem; }
    .step-card { max-width: 100%; width: 100%; padding: 1.2rem 1rem 1rem; }
    .step-icon { font-size: 1.6rem !important; margin: 0.3rem 0 0.5rem !important; }
    .step-card h3 { font-size: 0.88rem !important; }
    .step-card p { font-size: 0.76rem !important; }
    .step-number { font-size: 0.6rem !important; top: -11px !important; }
    .step-arrow { transform: rotate(90deg); padding: 0; font-size: 0.9rem; }
    .how-subtitle { font-size: 0.8rem !important; margin-bottom: 1.2rem !important; }
    .cta-button-teal { font-size: 0.85rem !important; padding: 0.65rem 1.4rem !important; }

    /* Services */
    .services-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem !important; }
    .service-card { padding: 0.5rem !important; }
    .service-card img { height: 90px !important; margin-bottom: 0.35rem !important; }
    .service-card h3 { font-size: 0.75rem !important; }
    .service-card p { font-size: 0.68rem !important; }
    .service-price { font-size: 0.72rem !important; }
    .offer { font-size: 0.65rem !important; }
    .new-badge { font-size: 0.5rem !important; padding: 0.1rem 0.3rem !important; top: 4px !important; right: 4px !important; }

    /* Portfolio */
    .portfolio-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem !important; }
    .filter-btn { font-size: 0.75rem !important; padding: 0.35rem 0.8rem !important; }
    .portfolio-subtitle { font-size: 0.8rem !important; }
    .lightbox-prev { left: 6px; padding: 0.4rem 0.7rem; font-size: 1.2rem; }
    .lightbox-next { right: 6px; padding: 0.4rem 0.7rem; font-size: 1.2rem; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr !important; gap: 0.8rem !important; }
    .testimonials-preview { grid-template-columns: 1fr !important; gap: 0.6rem !important; }
    .testimonial-card { padding: 0.75rem; }
    .testimonial-flag { width: 28px; height: 28px; }
    .testimonial-text { font-size: 0.82rem; }

    /* Reviews & Leave Review buttons */
    .reviews-toggle-wrap { text-align: center; margin: 1rem 0 0.5rem; }
    .review-icon-wrap { text-align: center; margin-top: 0.8rem; }
    .reviews-toggle-btn {
        font-size: 0.88rem;
        padding: 0.6rem 1.6rem;
        border-radius: 25px;
        justify-content: center;
        width: auto;
        min-width: 180px;
    }
    .review-icon-btn {
        font-size: 0.88rem;
        padding: 0.6rem 1.6rem;
        justify-content: center;
        min-width: 180px;
    }

    /* Instagram grid - 3 columns small squares on mobile */
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 4px !important;
    }
    .insta-item { border-radius: 4px; }

    /* Contact */
    .contact-content { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .contact-map { height: 180px; }
    .contact-qr-img { width: 90px; height: 90px; }

    /* Footer */
    .footer-nav { flex-direction: column; gap: 0.5rem; align-items: center; }
    .back-to-top { width: 38px; height: 38px; font-size: 1.1rem; }
}

/* ══════════════════════════════════════
   SMALL PHONES ≤ 380px
   ══════════════════════════════════════ */
@media screen and (max-width: 380px) {
    .brand-info h1 { font-size: 0.8rem; }
    .tagline { display: none; }
    .service-card img { height: 75px !important; }
    .service-card h3 { font-size: 0.68rem !important; }
    .service-card p { font-size: 0.62rem !important; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .review-form-wrapper { padding: 0.85rem 0.7rem; }
    .contact-qr-img { width: 75px; height: 75px; }
}

/* ══════════════════════════════════════
   QR CODE — CONTACT SECTION
   ══════════════════════════════════════ */
.contact-qr { margin-top: 0.5rem; }
.contact-qr-img {
    display: block;
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-top: 0.5rem;
    border: 2px solid #e8f5f5;
    border-radius: 8px;
    padding: 4px;
    background: white;
    box-shadow: 0 2px 8px rgba(26,95,122,0.1);
}

/* ══════════════════════════════════════
   STEP CIRCULAR IMAGES
   ══════════════════════════════════════ */
.step-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0.6rem auto 0.9rem;
    border: 3px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* ══════════════════════════════════════
   REVIEWS TOGGLE BUTTON
   ══════════════════════════════════════ */
.reviews-toggle-wrap {
    text-align: center;
    margin: 1.2rem 0 0.5rem;
    display: flex;
    justify-content: center;
}
.reviews-toggle-btn {
    background: white;
    border: 2px solid #ff69b4;
    color: #1a5f7a;
    padding: 0.65rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
    font-family: Arial, sans-serif;
}
.reviews-toggle-btn:hover {
    background: linear-gradient(135deg, #ff69b4, #57c5b6);
    color: white;
    border-color: transparent;
    transform: scale(1.03);
}
.reviews-toggle-icon {
    font-size: 1rem;
    transition: transform 0.35s ease;
    display: inline-block;
    line-height: 1;
}
.reviews-expanded {
    margin-top: 1.2rem;
}
.testimonials-preview {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 100%;
    margin: 0 auto;
    gap: 0.8rem;
}

.testimonials-preview .testimonial-card {
    padding: 0.8rem 0.6rem;
    text-align: center;
    align-items: center;
}
.testimonials-preview .testimonial-author {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    border-bottom: none;
    padding-bottom: 0;
}
.testimonials-preview .testimonial-flag {
    width: 40px;
    height: 40px;
    border: 2px solid #57c5b6;
}
.testimonials-preview .author-info {
    align-items: center;
    text-align: center;
}
.testimonials-preview .star-rating {
    justify-content: center;
}
.faq-ask-brief {
    text-align: center;
    padding: 1.2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    border-top: 4px solid #25D366;
}
.faq-brief-text {
    color: #1a5f7a;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

/* ══ Make map interactive ══ */
.contact-map {
    pointer-events: auto !important;
}

/* ══ SINGLE WHATSAPP CARD (no form) ══ */
.faq-ask-single {
    grid-template-columns: 1fr !important;
    max-width: 420px;
    margin: 0 auto;
}

/* ══════════════════════════════════════
   REVIEW ICON BUTTON + MODAL
   ══════════════════════════════════════ */
.review-icon-wrap {
    text-align: center;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}
.review-icon-btn {
    background: linear-gradient(135deg, #ff69b4, #c94b8a);
    color: white;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 14px rgba(255,105,180,0.4);
    transition: transform 0.2s, opacity 0.2s;
}
.review-icon-btn:hover { transform: scale(1.04); opacity: 0.92; }
.review-icon-btn i { font-size: 1rem; }

.review-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.review-modal-box {
    background: white;
    border-radius: 14px;
    padding: 1.5rem;
    max-width: 580px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
.review-modal-box h3 { color: #1a5f7a; font-size: 1.1rem; margin-bottom: 0.3rem; }
.review-modal-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none;
    font-size: 1.8rem; color: #aaa;
    cursor: pointer; line-height: 1;
}
.review-modal-close:hover { color: #ff69b4; }

/* ══════════════════════════════════════
   INSTAGRAM FEED
   ══════════════════════════════════════ */
.instagram-section { background: white; }
.instagram-subtitle {
    text-align: center;
    margin-top: -1.2rem;
    margin-bottom: 1.5rem;
}
.insta-handle {
    color: #E4405F;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: opacity 0.2s;
}
.insta-handle:hover { opacity: 0.8; }
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 6px;
    margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
    .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 5px; }
}
.insta-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    display: block;
    background: #f0f0f0;
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay {
    position: absolute; inset: 0;
    background: rgba(228,64,95,0.55);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
    color: white;
    font-size: 1.3rem;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-cta { text-align: center; }

@media screen and (max-width: 768px) {
    .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
    .review-modal-box { padding: 1rem; }
}
@media screen and (max-width: 380px) {
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════
   LOADING SCREEN
   ══════════════════════════════════════ */
.loader-screen {
    position: fixed; inset: 0; z-index: 99999;
    background: linear-gradient(135deg, #1a5f7a 0%, #159895 50%, #57c5b6 100%);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease;
}
.loader-inner { text-align: center; padding: 2rem; }
.loader-logo {
    width: 90px; height: 90px; object-fit: contain;
    border-radius: 50%; border: 3px solid rgba(255,255,255,0.3);
    margin-bottom: 1rem; animation: loaderPulse 1.5s infinite;
}
@keyframes loaderPulse {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}
.loader-brand { color: white; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem; }
.loader-tag   { color: rgba(255,255,255,0.7); font-size: 0.82rem; font-style: italic; margin-bottom: 1.5rem; }
.loader-bar {
    width: 200px; height: 4px; background: rgba(255,255,255,0.2);
    border-radius: 4px; overflow: hidden; margin: 0 auto;
}
.loader-fill {
    height: 100%; width: 0%; background: #ff69b4;
    border-radius: 4px; transition: width 0.15s ease;
}

/* ══════════════════════════════════════
   ANNOUNCEMENT BANNER
   ══════════════════════════════════════ */
.announcement-bar {
    background: linear-gradient(135deg, #ff69b4, #c94b8a);
    color: white; padding: 0.55rem 1rem;
    display: flex; align-items: center; justify-content: center;
    gap: 0.8rem; flex-wrap: wrap; font-size: 0.82rem;
    position: relative; z-index: 998; text-align: center;
}
.ann-text { flex: 1; min-width: 200px; }
.ann-btn {
    background: white; color: #c94b8a;
    padding: 0.3rem 0.9rem; border-radius: 20px;
    font-weight: 700; font-size: 0.78rem; text-decoration: none;
    white-space: nowrap; transition: opacity 0.2s;
}
.ann-btn:hover { opacity: 0.85; }
.ann-close {
    background: none; border: none; color: white;
    font-size: 1.2rem; cursor: pointer; opacity: 0.8;
    line-height: 1; padding: 0 0.3rem; flex-shrink: 0;
}
.ann-close:hover { opacity: 1; }

/* ══════════════════════════════════════
   WHATSAPP MINI BUBBLE + SMALL POPUP
   ══════════════════════════════════════ */
.wa-mini-bubble {
    position: fixed;
    bottom: 86px; left: 10px;
    background: #25D366;
    color: white;
    border-radius: 25px;
    padding: 0.45rem 0.9rem 0.45rem 0.7rem;
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.82rem; font-weight: 700;
    box-shadow: 0 4px 14px rgba(37,211,102,0.5);
    cursor: pointer; z-index: 998;
    animation: popupSlide 0.4s ease;
}
.wa-mini-bubble i { font-size: 1.1rem; }
.wa-mini-text { white-space: nowrap; }
.wa-mini-dot {
    width: 7px; height: 7px;
    background: white; border-radius: 50%;
    position: absolute; top: 4px; right: 4px;
    animation: dotPulse 1.5s infinite;
}
@keyframes dotPulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.3); }
}

.wa-popup {
    position: fixed; bottom: 130px; left: 10px;
    width: 240px; background: white;
    border-radius: 14px; box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    z-index: 997; overflow: hidden;
    animation: popupSlide 0.3s ease;
}
@keyframes popupSlide {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.wa-popup-header {
    background: #25D366; color: white;
    padding: 0.6rem 0.8rem; display: flex;
    align-items: center; gap: 0.5rem;
}
.wa-popup-logo {
    width: 30px; height: 30px; border-radius: 50%;
    object-fit: contain; background: white; flex-shrink: 0;
}
.wa-popup-header strong { font-size: 0.8rem; display: block; }
.wa-online { font-size: 0.65rem; color: rgba(255,255,255,0.85); }
.wa-popup-close {
    background: none; border: none; color: white;
    font-size: 1.1rem; cursor: pointer; margin-left: auto;
    line-height: 1; opacity: 0.8;
}
.wa-popup-close:hover { opacity: 1; }
.wa-popup-body { padding: 0.7rem 0.8rem; }
.wa-bubble {
    background: #f0f9f4; border-radius: 0 8px 8px 8px;
    padding: 0.55rem 0.75rem; font-size: 0.78rem; color: #333;
    line-height: 1.5; border: 1px solid #e0f5e9;
}
.wa-popup-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    background: #25D366; color: white; padding: 0.55rem;
    font-weight: 700; font-size: 0.82rem; text-decoration: none;
    transition: background 0.2s;
}
.wa-popup-btn:hover { background: #1ebe5d; }

@media screen and (max-width: 768px) {
    .wa-mini-bubble { bottom: 78px; left: 8px; font-size: 0.78rem; padding: 0.4rem 0.8rem 0.4rem 0.6rem; }
    .wa-popup { width: 210px; bottom: 120px; left: 8px; }
}

/* ══════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════ */
.newsletter-section {
    background: linear-gradient(135deg, #1a5f7a, #159895);
    padding: 2rem 5%;
}
.newsletter-inner {
    max-width: 650px; margin: 0 auto; text-align: center;
}
.newsletter-text h3 { color: white; font-size: 1.2rem; margin-bottom: 0.3rem; }
.newsletter-text p  { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 1.2rem; }
.newsletter-form {
    display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap;
}
.newsletter-input {
    flex: 1; min-width: 220px; max-width: 320px;
    padding: 0.65rem 1rem; border: none; border-radius: 25px;
    font-size: 0.88rem; outline: none; font-family: Arial, sans-serif;
}
.newsletter-btn {
    background: #ff69b4; color: white; border: none;
    padding: 0.65rem 1.5rem; border-radius: 25px;
    font-size: 0.88rem; font-weight: 700; cursor: pointer;
    font-family: Arial, sans-serif; transition: opacity 0.2s, transform 0.2s;
}
.newsletter-btn:hover { opacity: 0.9; transform: scale(1.03); }
.newsletter-note { color: rgba(255,255,255,0.9); font-size: 0.88rem; margin-top: 0.8rem; }

@media screen and (max-width: 768px) {
    .wa-popup { width: 240px; bottom: 78px; left: 14px; }
    .cookie-bar { padding: 0.75rem 1rem; }
    .announcement-bar { font-size: 0.75rem; padding: 0.5rem 0.8rem; }
    .newsletter-input { min-width: 180px; }
}