/* =====================================================
   CANON PRINTER SERVICE — style.css
   ===================================================== */

/* ── Design Tokens ── */
:root {
    --red:          #c90000;
    --red-dark:     #a10000;
    --red-light:    #ff2020;
    --red-glow:     rgba(201,0,0,0.25);

    --dark:         #0e0e0e;
    --dark-2:       #141414;
    --dark-3:       #1c1c1c;
    --dark-card:    #212121;

    --text:         #1a1a1a;
    --text-muted:   #666;
    --text-light:   #999;

    --bg:           #ffffff;
    --bg-section:   #f6f7f9;
    --bg-section2:  #f0f2f5;

    --white:        #ffffff;
    --wa-green:     #25d366;
    --wa-dark:      #1ebc58;

    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    24px;
    --radius-xl:    32px;

    --shadow-xs:    0 2px 8px rgba(0,0,0,0.06);
    --shadow-sm:    0 6px 20px rgba(0,0,0,0.08);
    --shadow-md:    0 12px 35px rgba(0,0,0,0.12);
    --shadow-lg:    0 25px 60px rgba(0,0,0,0.18);
    --shadow-red:   0 8px 30px rgba(201,0,0,0.3);

    --trans-fast:   all 0.25s ease;
    --trans:        all 0.4s cubic-bezier(0.25,0.8,0.25,1);
    --trans-slow:   all 0.7s cubic-bezier(0.25,0.8,0.25,1);

    --font-head:    'Outfit', sans-serif;
    --font-body:    'Inter', sans-serif;

    --header-h:     72px;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family:var(--font-head); font-weight:700; line-height:1.2; }
a { text-decoration:none; color:inherit; transition:var(--trans-fast); }
ul { list-style:none; }
img { max-width:100%; height:auto; display:block; }
input,select,textarea,button { font-family:var(--font-body); }

/* ── Utilities ── */
.container { width:100%; max-width:1280px; margin:0 auto; padding:0 2rem; }
.text-center { text-align:center; }
.relative { position:relative; }
.text-white { color:var(--white); }
.text-accent { color:var(--red); }

/* ── Buttons ── */
.btn {
    display:inline-flex; align-items:center; gap:0.5rem;
    padding:0.75rem 1.6rem; border-radius:50px; font-weight:600;
    font-family:var(--font-head); font-size:0.95rem; cursor:pointer;
    border:none; transition:var(--trans);
    white-space:nowrap;
}
.btn-large { padding:1rem 2.2rem; font-size:1.05rem; }

.btn-primary {
    background:var(--red); color:#fff;
    box-shadow:var(--shadow-red);
}
.btn-primary:hover { background:var(--red-dark); transform:translateY(-3px); box-shadow:0 12px 35px rgba(201,0,0,0.45); }

.btn-call {
    background:var(--red); color:#fff;
    box-shadow:var(--shadow-red);
}
.btn-call:hover { background:var(--red-dark); transform:translateY(-2px); }
.btn-call span { display:none; }

.btn-ghost {
    background:transparent; color:var(--red);
    border:2px solid var(--red); padding:0.73rem 1.6rem;
}
.btn-ghost:hover { background:var(--red); color:#fff; transform:translateY(-3px); }

.btn-outline {
    background:transparent; color:var(--white);
    border:2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background:var(--white); color:var(--text); transform:translateY(-3px); }

.btn-wa {
    background:var(--wa-green); color:#fff;
    box-shadow:0 8px 25px rgba(37,211,102,0.35);
}
.btn-wa:hover { background:var(--wa-dark); transform:translateY(-3px); }

.btn-whatsapp-header {
    background:var(--wa-green); color:#fff;
    border-radius:50px; padding:0.55rem 1.1rem; font-size:0.88rem;
}
.btn-whatsapp-header:hover { background:var(--wa-dark); transform:scale(1.04); }
.btn-whatsapp-header span { display:none; }

/* ── Section Typography ── */
.section-subtitle {
    color:var(--red); font-weight:700; text-transform:uppercase;
    letter-spacing:2.5px; font-size:0.8rem; margin-bottom:0.75rem;
    font-family:var(--font-head);
}
.section-title {
    font-size:clamp(1.9rem, 4vw, 2.8rem);
    color:var(--dark); margin-bottom:1.25rem;
    font-weight:800;
}
.section-desc {
    color:var(--text-muted); font-size:1.05rem;
    max-width:620px; margin:0 auto 1rem;
}
.section-header { margin-bottom:3.5rem; }

/* ================================================
   HEADER
   ================================================ */
.header {
    position:fixed; top:0; left:0; width:100%; z-index:1000;
    background:rgba(255,255,255,0.97); backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(0,0,0,0.06);
    transition:var(--trans);
    height:var(--header-h);
    display:flex; align-items:center;
}
.header.scrolled {
    height:60px;
    box-shadow:0 4px 24px rgba(0,0,0,0.08);
}
.header-container {
    display:flex; justify-content:space-between; align-items:center;
    width:100%;
}

/* Logo */
.logo a {
    display:flex; align-items:center; gap:0.75rem;
}
.logo-icon-wrap {
    width:44px; height:44px; background:var(--red); border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-size:1.3rem;
    box-shadow:0 4px 14px rgba(201,0,0,0.35);
    flex-shrink:0;
}
.logo-text { display:flex; flex-direction:column; line-height:1; }
.logo-brand {
    font-family:var(--font-head); font-weight:800; font-size:1.2rem;
    color:var(--dark);
}
.logo-text small {
    font-size:0.7rem; color:var(--text-muted); font-weight:500;
    letter-spacing:1.5px; text-transform:uppercase;
}

/* Nav */
.nav-links { display:flex; gap:2rem; }
.nav-links a {
    font-weight:600; font-size:0.9rem; color:var(--text);
    position:relative; padding-bottom:4px;
    font-family:var(--font-head);
}
.nav-links a::after {
    content:''; position:absolute; bottom:0; left:0;
    width:0; height:2px; background:var(--red);
    transition:width 0.3s ease; border-radius:2px;
}
.nav-links a:hover::after { width:100%; }
.nav-links a:hover { color:var(--red); }

/* Header actions */
.header-actions { display:flex; align-items:center; gap:0.75rem; }
.mobile-menu-btn {
    display:none; background:none; border:2px solid var(--bg-section);
    width:40px; height:40px; border-radius:8px; cursor:pointer;
    font-size:1.1rem; color:var(--text); align-items:center;
    justify-content:center;
}

/* ================================================
   HERO
   ================================================ */
.hero {
    position:relative; min-height:100svh;
    display:flex; align-items:center;
    padding-top:var(--header-h); overflow:hidden;
}

/* Slideshow */
.hero-slides {
    position:absolute; inset:0; z-index:0;
}
.hero-slide {
    position:absolute; inset:0;
    background-size:cover; background-position:center;
    opacity:0; transition:opacity 1.2s ease;
    transform:scale(1.04);
    animation:kenBurns 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity:1; }
@keyframes kenBurns {
    from { transform:scale(1.04); }
    to   { transform:scale(1); }
}

/* Gradient overlay */
.hero-overlay {
    position:absolute; inset:0; z-index:1;
    background:linear-gradient(
        105deg,
        rgba(8,8,8,0.88) 0%,
        rgba(8,8,8,0.65) 55%,
        rgba(8,8,8,0.2) 100%
    );
}

/* Hero content */
.hero-content {
    position:relative; z-index:2;
    display:flex; flex-direction:column;
    align-items:flex-start; justify-content:center;
    min-height:calc(100svh - var(--header-h));
    padding-top:2rem; padding-bottom:6rem;
    max-width:760px;
}

/* Badge */
.hero-badge {
    display:inline-flex; align-items:center; gap:0.5rem;
    background:rgba(201,0,0,0.15); border:1px solid rgba(201,0,0,0.35);
    color:var(--red-light); border-radius:50px;
    padding:0.4rem 1.1rem; font-size:0.82rem; font-weight:600;
    margin-bottom:1.5rem; backdrop-filter:blur(6px);
    font-family:var(--font-head); letter-spacing:0.5px;
}

.hero-content h1 {
    font-size:clamp(2.4rem, 6.5vw, 4.2rem);
    color:#fff; margin-bottom:1.4rem;
    font-weight:800; line-height:1.1;
}
.hero-desc {
    font-size:1.1rem; color:rgba(255,255,255,0.75);
    margin-bottom:2.5rem; font-weight:400;
    letter-spacing:0.3px;
}

/* Hero buttons */
.hero-buttons { display:flex; flex-wrap:wrap; gap:1rem; margin-bottom:3rem; }

/* Stats */
.hero-stats {
    display:flex; align-items:center; gap:0;
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:var(--radius-md); backdrop-filter:blur(10px);
    overflow:hidden;
}
.stat-item {
    display:flex; flex-direction:column; align-items:center;
    padding:1rem 2rem;
}
.stat-num {
    font-family:var(--font-head); font-size:1.7rem; font-weight:800;
    color:#fff; line-height:1;
}
.stat-label { font-size:0.75rem; color:rgba(255,255,255,0.6); margin-top:0.3rem; }
.stat-divider { width:1px; height:50px; background:rgba(255,255,255,0.15); }

/* Scroll indicator */
.scroll-indicator {
    position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
    z-index:5; display:flex; flex-direction:column; align-items:center; gap:6px;
}
.scroll-dot {
    width:6px; height:6px; background:#fff; border-radius:50%;
    animation:scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%,100% { transform:translateY(0); opacity:1; }
    60%      { transform:translateY(12px); opacity:0.4; }
}

/* Slide dots */
.slide-dots {
    position:absolute; bottom:2rem; right:2rem; z-index:5;
    display:flex; gap:8px; align-items:center;
}
.dot {
    width:8px; height:8px; border-radius:50%;
    background:rgba(255,255,255,0.4); border:none; cursor:pointer;
    transition:var(--trans-fast);
}
.dot.active { background:#fff; width:24px; border-radius:4px; }

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar {
    background:var(--dark); padding:1.4rem 0;
    border-bottom:1px solid rgba(255,255,255,0.05);
}
.trust-inner {
    display:flex; align-items:center; justify-content:center;
    flex-wrap:wrap; gap:0; overflow:auto;
}
.trust-item {
    display:flex; align-items:center; gap:0.6rem;
    color:rgba(255,255,255,0.85); font-size:0.88rem; font-weight:500;
    padding:0.5rem 1.5rem; font-family:var(--font-head);
    white-space:nowrap;
}
.trust-item i { color:var(--red); font-size:1rem; }
.trust-divider { width:1px; height:24px; background:rgba(255,255,255,0.12); }

/* ================================================
   ABOUT SECTION
   ================================================ */
.about { padding:6rem 0 7rem; background:var(--bg); }
.split-layout {
    display:grid; grid-template-columns:1fr 1fr;
    gap:4.5rem; align-items:center;
}

/* Image side */
.about-visual { position:relative; }
.main-image-wrapper { position:relative; display:inline-block; width:100%; }
.main-about-img {
    width:100%; aspect-ratio:3/4; object-fit:cover;
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-lg);
    filter:brightness(1.04) contrast(1.08) saturate(1.08);
}
.about-exp-card {
    position:absolute; bottom:2.5rem; left:-2rem;
    background:var(--red); color:#fff; border-radius:var(--radius-md);
    padding:1.2rem 1.5rem;
    display:flex; align-items:center; gap:0.8rem;
    box-shadow:var(--shadow-red);
}
.exp-num { font-family:var(--font-head); font-size:2.2rem; font-weight:800; line-height:1; }
.exp-text { font-size:0.8rem; font-weight:600; line-height:1.4; opacity:0.9; }
.floating-img {
    position:absolute; top:-2rem; right:-2rem;
    width:180px; height:130px;
    border-radius:var(--radius-md); overflow:hidden;
    border:4px solid var(--bg);
    box-shadow:var(--shadow-md);
    transition:var(--trans);
}
.floating-img:hover { transform:scale(1.06); }
.floating-img img { width:100%; height:100%; object-fit:cover; }

/* Text side */
.about-text { }
.about-description { font-size:1.02rem; color:var(--text-muted); margin-bottom:1.3rem; line-height:1.75; }
.about-features {
    display:grid; grid-template-columns:1fr 1fr; gap:0.75rem;
    margin:2rem 0 2.5rem;
}
.feature-item {
    display:flex; align-items:center; gap:0.65rem;
    font-weight:600; font-size:0.9rem; font-family:var(--font-head);
    color:var(--dark);
}
.feature-item i { color:var(--red); font-size:1rem; }
.about-actions { display:flex; gap:1rem; flex-wrap:wrap; }

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
    padding:6rem 0 7rem;
    background:var(--bg-section);
}
.services-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(340px, 1fr));
    gap:1.8rem;
}

/* Card */
.service-card {
    background:var(--bg); border-radius:var(--radius-md);
    overflow:hidden; box-shadow:var(--shadow-xs);
    transition:var(--trans);
    border:1px solid rgba(0,0,0,0.04);
    position:relative; top:0;
}
.service-card:hover { box-shadow:var(--shadow-md); top:-8px; }

/* Card image */
.service-img-container { position:relative; height:220px; overflow:hidden; }
.service-img-container img {
    width:100%; height:100%; object-fit:cover;
    transition:transform 0.6s ease;
    filter:brightness(1.02) contrast(1.1) saturate(1.05);
}
.service-card:hover .service-img-container img { transform:scale(1.08); }
.service-img-overlay {
    position:absolute; inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 60%);
}
.service-icon {
    position:absolute; bottom:-22px; right:22px;
    width:50px; height:50px; background:var(--red); color:#fff;
    border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-size:1.2rem; box-shadow:var(--shadow-red); z-index:2;
    border:3px solid var(--bg);
}

/* Card body */
.service-content { padding:2.2rem 1.8rem 1.8rem; }
.service-content h3 { font-size:1.25rem; margin-bottom:0.75rem; color:var(--dark); }
.service-content > p { color:var(--text-muted); font-size:0.93rem; margin-bottom:1.2rem; line-height:1.7; }
.service-bullets { display:flex; flex-direction:column; gap:0.4rem; }
.service-bullets li {
    display:flex; align-items:center; gap:0.6rem;
    font-size:0.86rem; color:var(--text-muted);
}
.service-bullets li i { color:var(--red); font-size:0.75rem; }

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why-choose-us { position:relative; padding:7rem 0; color:#fff; }
.why-bg-img {
    position:absolute; inset:0;
    background-size:cover; background-position:center; background-attachment:fixed;
    z-index:0;
}
.why-overlay {
    position:absolute; inset:0;
    background:rgba(10,10,10,0.88); z-index:1;
}
.why-choose-us .relative { position:relative; z-index:2; }
.why-content {
    display:grid; grid-template-columns:1fr 1.4fr;
    gap:4rem; align-items:center;
}
.why-features {
    display:grid; grid-template-columns:1fr 1fr;
    gap:1.2rem;
}
.why-feature-card {
    display:flex; gap:1rem;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.09);
    padding:1.3rem; border-radius:var(--radius-md);
    backdrop-filter:blur(6px);
    transition:var(--trans);
}
.why-feature-card:hover {
    background:rgba(255,255,255,0.09);
    transform:translateY(-4px);
    border-color:rgba(201,0,0,0.3);
}
.why-icon {
    width:44px; height:44px; flex-shrink:0;
    background:var(--red); border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    font-size:1.1rem; color:#fff;
    box-shadow:var(--shadow-red);
}
.why-feature-text h4 { font-size:0.95rem; margin-bottom:0.4rem; font-weight:700; }
.why-feature-text p { font-size:0.82rem; color:rgba(255,255,255,0.6); line-height:1.5; }
.why-choose-us .section-title { color:#fff; }

/* ================================================
   GALLERY SECTION
   ================================================ */
.gallery { padding:6rem 0 7rem; background:var(--bg); }
.masonry-grid {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    grid-auto-rows:220px;
    gap:1.2rem;
}
.masonry-item:nth-child(1) { grid-row:span 2; }
.masonry-item:nth-child(5) { grid-column:span 2; }

.masonry-item {
    position:relative; border-radius:var(--radius-md);
    overflow:hidden; cursor:pointer;
    background:var(--bg-section);
}
.masonry-item img {
    width:100%; height:100%; object-fit:cover;
    transition:transform 0.65s ease;
    filter:brightness(1.03) contrast(1.08) saturate(1.06);
}
.masonry-item:hover img { transform:scale(1.1); }

.gallery-overlay {
    position:absolute; inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 100%);
    display:flex; flex-direction:column;
    align-items:center; justify-content:center; gap:0.4rem;
    opacity:0; transition:var(--trans);
    color:#fff;
}
.masonry-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay i { font-size:1.8rem; transform:translateY(12px); transition:var(--trans); }
.gallery-overlay span { font-size:0.85rem; font-weight:600; font-family:var(--font-head); transform:translateY(12px); transition:var(--trans) 0.05s; }
.masonry-item:hover .gallery-overlay i,
.masonry-item:hover .gallery-overlay span { transform:translateY(0); }

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
    display:none; position:fixed; inset:0; z-index:3000;
    background:rgba(0,0,0,0.94);
    align-items:center; justify-content:center;
    animation:fadeIn 0.25s ease;
}
.lightbox.open { display:flex; }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.lightbox-inner {
    max-width:min(90vw, 1100px);
    max-height:88vh;
    display:flex; align-items:center; justify-content:center;
}
.lightbox-img {
    max-width:100%; max-height:88vh;
    border-radius:var(--radius-md);
    box-shadow:0 0 60px rgba(0,0,0,0.7);
    object-fit:contain;
    animation:zoomIn 0.3s ease;
    filter:brightness(1.05) contrast(1.1) saturate(1.08);
}
@keyframes zoomIn { from { transform:scale(0.88); opacity:0; } to { transform:scale(1); opacity:1; } }

.lightbox-close {
    position:fixed; top:24px; right:30px;
    background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2);
    color:#fff; width:44px; height:44px; border-radius:50%;
    font-size:1.2rem; cursor:pointer; display:flex; align-items:center; justify-content:center;
    transition:var(--trans-fast);
}
.lightbox-close:hover { background:var(--red); border-color:var(--red); }

.lightbox-nav {
    position:fixed; top:50%; transform:translateY(-50%);
    background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15);
    color:#fff; width:50px; height:50px; border-radius:50%;
    font-size:1.1rem; cursor:pointer; display:flex;
    align-items:center; justify-content:center; transition:var(--trans-fast);
}
.lightbox-nav:hover { background:var(--red); border-color:var(--red); }
.lightbox-nav.prev { left:20px; }
.lightbox-nav.next { right:20px; }

.lightbox-counter {
    position:fixed; bottom:24px; left:50%; transform:translateX(-50%);
    color:rgba(255,255,255,0.6); font-size:0.85rem; font-family:var(--font-head);
    font-weight:600; background:rgba(0,0,0,0.5); padding:0.4rem 1rem;
    border-radius:50px;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact { padding:6rem 0 7rem; background:var(--bg-section); }
.contact-wrapper {
    display:grid; grid-template-columns:1fr 1.2fr;
    gap:3rem; margin-bottom:3.5rem; align-items:start;
}

/* Info cards */
.contact-info-panel { display:flex; flex-direction:column; gap:1rem; }
.contact-card {
    display:flex; align-items:center; gap:1.2rem;
    background:var(--bg); border-radius:var(--radius-md);
    padding:1.3rem 1.5rem;
    border:1px solid rgba(0,0,0,0.05);
    box-shadow:var(--shadow-xs); transition:var(--trans);
    text-decoration:none; color:var(--text);
}
.contact-card:hover { box-shadow:var(--shadow-md); transform:translateX(8px); }
.contact-card-phone:hover { background:var(--red); color:#fff; }
.contact-card-phone:hover .contact-card-icon { background:rgba(255,255,255,0.2); color:#fff; }
.contact-card-wa:hover { background:var(--wa-green); color:#fff; }
.contact-card-wa:hover .contact-card-icon { background:rgba(255,255,255,0.2); color:#fff; }
.contact-card-email:hover .contact-card-icon { background:rgba(201,0,0,0.12); color:var(--red); }

.contact-card-icon {
    width:48px; height:48px; flex-shrink:0;
    background:rgba(201,0,0,0.08); color:var(--red);
    border-radius:12px; display:flex; align-items:center;
    justify-content:center; font-size:1.15rem; transition:var(--trans-fast);
}
.contact-card-body { flex:1; min-width:0; }
.contact-card-body h5 { font-size:0.8rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; margin-bottom:0.2rem; opacity:0.7; }
.contact-main-val { font-size:1rem; font-weight:600; font-family:var(--font-head); }
.contact-hint { font-size:0.8rem; color:var(--text-muted); margin-top:0.15rem; }
.contact-card-phone:hover .contact-hint,
.contact-card-wa:hover .contact-hint { color:rgba(255,255,255,0.75); }
.contact-card-arrow { color:var(--text-muted); font-size:0.85rem; flex-shrink:0; transition:var(--trans-fast); }
.contact-card:hover .contact-card-arrow { transform:translateX(4px); color:#fff; }
.contact-card-addr:hover .contact-card-arrow { color:var(--red); }

/* Form */
.contact-form-wrapper { }
.contact-form-container {
    background:var(--bg); border-radius:var(--radius-lg);
    padding:2.5rem; box-shadow:var(--shadow-md);
    border:1px solid rgba(0,0,0,0.04);
}
.contact-form-container h3 {
    font-size:1.55rem; margin-bottom:0.4rem;
    display:flex; align-items:center; gap:0.6rem;
}
.contact-form-container h3 i { color:var(--red); }
.form-sub { color:var(--text-muted); font-size:0.9rem; margin-bottom:1.8rem; }

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { margin-bottom:1.2rem; }
.form-group label {
    display:block; font-size:0.83rem; font-weight:600;
    color:var(--text); margin-bottom:0.4rem; font-family:var(--font-head);
}
.form-group input,
.form-group select,
.form-group textarea {
    width:100%; padding:0.8rem 1rem;
    border:1.5px solid #e4e6ea; border-radius:var(--radius-sm);
    font-size:0.93rem; color:var(--text);
    background:#fdfdfd; transition:var(--trans-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline:none; border-color:var(--red);
    box-shadow:0 0 0 3px rgba(201,0,0,0.1);
    background:#fff;
}
.form-group textarea { resize:vertical; }

.btn-submit { width:100%; justify-content:center; font-size:1rem; border-radius:var(--radius-sm); margin-top:0.5rem; }

.form-success {
    display:none; margin-top:1rem;
    background:#e8f5e9; color:#2e7d32;
    border:1px solid #a5d6a7; border-radius:var(--radius-sm);
    padding:1rem 1.2rem; font-size:0.93rem; font-weight:600;
    align-items:center; gap:0.6rem;
}
.form-success.show { display:flex; }

/* Map */
.map-container {
    border-radius:var(--radius-lg); overflow:hidden;
    box-shadow:var(--shadow-md); border:1px solid rgba(0,0,0,0.05);
}
.map-header {
    background:var(--dark); color:rgba(255,255,255,0.85);
    padding:0.9rem 1.5rem; display:flex; align-items:center; gap:0.7rem;
    font-size:0.9rem; font-family:var(--font-head); font-weight:600;
}
.map-header i { color:var(--red); }
.map-container iframe { display:block; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background:var(--dark-2); color:rgba(255,255,255,0.75); }
.footer-main { padding:4.5rem 0 3rem; }
.footer-grid {
    display:grid;
    grid-template-columns:2fr 1fr 1.2fr 1.5fr;
    gap:3rem;
}

/* Brand col */
.footer-logo {
    display:flex; align-items:center; gap:0.75rem; margin-bottom:1.2rem;
}
.footer-logo-icon {
    width:44px; height:44px; background:var(--red);
    border-radius:10px; display:flex; align-items:center; justify-content:center;
    color:#fff; font-size:1.3rem; flex-shrink:0;
}
.footer-logo-brand { font-family:var(--font-head); font-size:1.2rem; font-weight:800; color:#fff; display:block; }
.footer-logo small { font-size:0.7rem; color:rgba(255,255,255,0.45); letter-spacing:1.5px; text-transform:uppercase; }
.footer-brand-col > p { font-size:0.9rem; line-height:1.7; margin-bottom:1.5rem; color:rgba(255,255,255,0.5); }

.footer-social { display:flex; gap:0.6rem; }
.footer-social a {
    width:36px; height:36px; border-radius:8px;
    background:rgba(255,255,255,0.06); color:rgba(255,255,255,0.6);
    display:flex; align-items:center; justify-content:center; font-size:0.9rem;
    transition:var(--trans-fast);
}
.footer-social a:hover { background:var(--red); color:#fff; transform:translateY(-3px); }

/* Columns */
.footer-col h4 {
    font-size:1rem; font-weight:700; color:#fff; margin-bottom:1.4rem;
    padding-bottom:0.6rem; border-bottom:2px solid rgba(255,255,255,0.07);
    font-family:var(--font-head);
}
.footer-links li { margin-bottom:0.7rem; }
.footer-links a {
    font-size:0.88rem; color:rgba(255,255,255,0.5);
    display:flex; align-items:center; gap:0.4rem; transition:var(--trans-fast);
}
.footer-links a i { font-size:0.65rem; color:var(--red); }
.footer-links a:hover { color:var(--red); padding-left:4px; }

.footer-contact li {
    display:flex; gap:0.85rem; margin-bottom:1rem;
    font-size:0.88rem; color:rgba(255,255,255,0.5); align-items:flex-start;
}
.footer-contact i { color:var(--red); margin-top:3px; flex-shrink:0; }
.footer-contact a:hover { color:var(--red); }

/* Footer bottom */
.footer-bottom {
    background:var(--dark); border-top:1px solid rgba(255,255,255,0.04);
    padding:1.2rem 0;
}
.footer-bottom-inner {
    display:flex; justify-content:space-between; align-items:center;
    flex-wrap:wrap; gap:0.5rem;
}
.footer-bottom p { font-size:0.83rem; color:rgba(255,255,255,0.35); }
.footer-disclaimer { font-style:italic; }

/* ================================================
   FLOATING WHATSAPP
   ================================================ */
.floating-whatsapp {
    position:fixed; bottom:28px; right:28px; z-index:900;
    width:58px; height:58px; background:var(--wa-green); color:#fff;
    border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-size:1.8rem; box-shadow:0 6px 24px rgba(37,211,102,0.45);
    transition:var(--trans);
}
.floating-whatsapp:hover { transform:scale(1.12) translateY(-3px); background:var(--wa-dark); }
.wa-tooltip {
    position:absolute; right:68px; top:50%; transform:translateY(-50%);
    background:var(--dark); color:#fff; font-size:0.8rem; font-weight:600;
    padding:0.4rem 0.9rem; border-radius:50px; white-space:nowrap;
    opacity:0; pointer-events:none; transition:var(--trans-fast);
    font-family:var(--font-head);
}
.floating-whatsapp:hover .wa-tooltip { opacity:1; transform:translateY(-50%) translateX(-4px); }

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
    position:fixed; bottom:96px; right:28px; z-index:900;
    width:42px; height:42px; background:var(--dark-3); color:#fff;
    border-radius:50%; border:none; cursor:pointer; font-size:0.95rem;
    display:flex; align-items:center; justify-content:center;
    box-shadow:var(--shadow-sm); opacity:0; pointer-events:none;
    transition:var(--trans-fast);
}
.back-to-top.show { opacity:1; pointer-events:all; }
.back-to-top:hover { background:var(--red); transform:translateY(-3px); }

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.fade-in-up    { opacity:0; transform:translateY(40px); transition:opacity 0.8s ease, transform 0.8s ease; }
.fade-in-left  { opacity:0; transform:translateX(-45px); transition:opacity 0.8s ease, transform 0.8s ease; }
.fade-in-right { opacity:0; transform:translateX(45px); transition:opacity 0.8s ease, transform 0.8s ease; }
.fade-in-zoom  { opacity:0; transform:scale(0.93); transition:opacity 0.8s ease, transform 0.8s ease; }
.slide-in-left { opacity:0; transform:translateX(-55px); transition:opacity 0.85s ease, transform 0.85s ease; }
.slide-in-right{ opacity:0; transform:translateX(55px);  transition:opacity 0.85s ease, transform 0.85s ease; }
.visible { opacity:1 !important; transform:none !important; }

.delay-1 { transition-delay:0.15s; }
.delay-2 { transition-delay:0.3s; }
.delay-3 { transition-delay:0.45s; }
.delay-4 { transition-delay:0.6s; }

/* ================================================
   RESPONSIVE — TABLET (≤1024px)
   ================================================ */
@media (max-width:1024px) {
    .hero-content h1 { font-size:3rem; }
    .split-layout    { grid-template-columns:1fr; gap:3rem; }
    .about-visual    { order:-1; }
    .main-about-img  { aspect-ratio:4/3; max-height:420px; width:100%; }
    .about-exp-card  { left:1rem; }
    .contact-wrapper { grid-template-columns:1fr; }
    .footer-grid     { grid-template-columns:1fr 1fr; }
    .why-content     { grid-template-columns:1fr; gap:3rem; }
    .masonry-grid    { grid-template-columns:repeat(3,1fr); }
    .masonry-item:nth-child(5) { grid-column:span 1; }
}

/* ================================================
   RESPONSIVE — MOBILE (≤768px)
   ================================================ */
@media (max-width:768px) {
    :root { --header-h: 60px; }

    /* Header */
    .nav {
        position:fixed; top:var(--header-h); left:-100%; width:100%;
        height:calc(100vh - var(--header-h));
        background:rgba(255,255,255,0.99); backdrop-filter:blur(16px);
        flex-direction:column; justify-content:center; align-items:center;
        transition:left 0.35s cubic-bezier(0.25,0.8,0.25,1);
        display:flex;
    }
    .nav.active { left:0; }
    .nav-links { flex-direction:column; gap:2rem; text-align:center; }
    .nav-links a { font-size:1.3rem; }
    .mobile-menu-btn { display:flex; }
    .btn-whatsapp-header { display:none; }
    .btn-call span { display:inline; }

    /* Hero */
    .hero-content { padding-bottom:5rem; align-items:center; text-align:center; max-width:100%; }
    .hero-content h1 { font-size:2.2rem; }
    .hero-buttons { justify-content:center; }
    .hero-stats { flex-direction:column; text-align:center; }
    .stat-divider { width:60%; height:1px; }
    .stat-item { padding:0.8rem 2rem; }
    .hero-badge { font-size:0.75rem; }

    /* Trust bar */
    .trust-inner { gap:0; overflow-x:auto; justify-content:flex-start; }
    .trust-item { padding:0.5rem 1rem; }

    /* About */
    .about-features { grid-template-columns:1fr; }
    .floating-img   { display:none; }

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

    /* Why choose us */
    .why-features { grid-template-columns:1fr; }

    /* Gallery */
    .masonry-grid {
        grid-template-columns:1fr 1fr;
        grid-auto-rows:180px;
    }
    .masonry-item:nth-child(1) { grid-row:span 1; }
    .masonry-item:nth-child(5) { grid-column:span 1; }

    /* Form */
    .form-row { grid-template-columns:1fr; }

    /* Footer */
    .footer-grid { grid-template-columns:1fr; }
    .footer-bottom-inner { flex-direction:column; text-align:center; }
}

/* ================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ================================================ */
@media (max-width:480px) {
    .container { padding:0 1.2rem; }
    .hero-content h1 { font-size:1.9rem; }
    .hero-buttons { flex-direction:column; width:100%; }
    .btn-large { width:100%; justify-content:center; }
    .hero-stats { display:none; }
    .masonry-grid { grid-template-columns:1fr; grid-auto-rows:220px; }
    .masonry-item:nth-child(1) { grid-row:span 1; }
    .floating-whatsapp { width:50px; height:50px; font-size:1.5rem; bottom:20px; right:20px; }
    .back-to-top { bottom:80px; right:20px; }
    .stat-divider { display:none; }
}
