/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,600;0,900;1,600&display=swap');

/* === RESET & FOUNDATION === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth; 
}

body {
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
    line-height: 1.6;
}

/* === HEADER CONTAINER === */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo img {
    max-height: 80px;
    width: auto;
}

/* === MOBILE HAMBURGER BUTTON === */
.mobile-menu-toggle {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #000000;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* === GOOEY NAV COMPONENT === */
:root {
  --linear-ease: linear(0, 0.068, 0.19 2.7%, 0.804 8.1%, 1.037, 1.199 13.2%, 1.245, 1.27 15.8%, 1.274, 1.272 17.4%, 1.249 19.1%, 0.996 28%, 0.949, 0.928 33.3%, 0.926, 0.933 36.8%, 1.001 45.6%, 1.013, 1.019 50.8%, 1.018 54.4%, 1 63.1%, 0.995 68%, 1.001 85%, 1);
}

.gooey-nav-container {
  position: relative;
}

.gooey-nav-container nav {
  display: flex;
  position: relative;
  transform: translate3d(0, 0, 0.01px);
}

.gooey-nav-container nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0 10px;
  margin: 0;
  position: relative;
  z-index: 3;
}

.gooey-nav-container nav ul li {
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #000000;
}

.gooey-nav-container nav ul li a {
  display: inline-block;
  padding: 8px 16px;
  text-decoration: none;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  outline: none;
}

.gooey-nav-container nav ul li::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #000000;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: -1;
}

.gooey-nav-container nav ul li.active {
  color: #ffffff;
}

.gooey-nav-container nav ul li.active::after {
  opacity: 1;
  transform: scale(1);
}

.gooey-nav-container .effect {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 1;
  pointer-events: none;
  display: grid;
  place-items: center;
  z-index: 1;
}

.gooey-nav-container .effect.text {
  color: #000000;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.gooey-nav-container .effect.text.active {
  color: #ffffff;
}

.gooey-nav-container .effect.filter {
  filter: blur(7px) contrast(100) blur(0);
  mix-blend-mode: darken;
}

.gooey-nav-container .effect.filter::before {
  content: '';
  position: absolute;
  inset: -75px;
  z-index: -2;
  background: #ffffff;
}

.gooey-nav-container .effect.filter::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #000000;
  transform: scale(0);
  opacity: 0;
  z-index: -1;
  border-radius: 50px;
}

.gooey-nav-container .effect.active::after {
  animation: pill 0.3s ease both;
}

@keyframes pill {
  to { transform: scale(1); opacity: 1; }
}

.particle, .point {
  display: block;
  opacity: 0;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  transform-origin: center;
}

.particle {
  --time: 5s;
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  animation: particle calc(var(--time)) ease 1 -350ms;
}

.point {
  background: var(--color);
  opacity: 1;
  animation: point calc(var(--time)) ease 1 -350ms;
}

@keyframes particle {
  0% { transform: rotate(0deg) translate(calc(var(--start-x)), calc(var(--start-y))); opacity: 1; animation-timing-function: cubic-bezier(0.55, 0, 1, 0.45); }
  70% { transform: rotate(calc(var(--rotate) * 0.5)) translate(calc(var(--end-x) * 1.2), calc(var(--end-y) * 1.2)); opacity: 1; animation-timing-function: ease; }
  85% { transform: rotate(calc(var(--rotate) * 0.66)) translate(calc(var(--end-x)), calc(var(--end-y))); opacity: 1; }
  100% { transform: rotate(calc(var(--rotate) * 1.2)) translate(calc(var(--end-x) * 0.5), calc(var(--end-y) * 0.5)); opacity: 1; }
}

@keyframes point {
  0% { transform: scale(0); opacity: 0; animation-timing-function: cubic-bezier(0.55, 0, 1, 0.45); }
  25% { transform: scale(calc(var(--scale) * 0.25)); }
  38% { opacity: 1; }
  65% { transform: scale(var(--scale)); opacity: 1; animation-timing-function: ease; }
  85% { transform: scale(var(--scale)); opacity: 1; }
  100% { transform: scale(0); opacity: 0; }
}

/* === BUTTONS === */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    text-align: center;
    outline: none;
}

.btn-primary {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: #ffffff;
    color: #000000;
}

.btn-secondary {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background-color: #000000;
    color: #ffffff;
}

/* === HERO SECTION === */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: calc(100vh - 125px); 
    min-height: 500px; 
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.6rem; 
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-text h2 {
    font-size: 1.4rem;
    font-weight: 400;
    color: #666666;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slogan-box {
    border-left: 4px solid #000000;
    padding-left: 20px;
    margin-bottom: 30px;
}

.slogan-box p {
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 600;
    color: #000000;
}

.hero-text p.description {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 35px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; 
}

/* === IMAGE SLIDER (HERO VISUAL) === */
.hero-visual {
    flex: 1;
    height: 75%; 
    max-height: 600px; 
    position: relative;
    overflow: hidden;
    background: #f4f4f4;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 4px; 
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
    z-index: 1;
}

.slide.active {
    opacity: 1; 
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.4s ease, transform 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #ffffff;
    border: 2px solid #000000; 
    transform: scale(1.2);
}

/* === ABOUT SECTION & COUNTER === */
.about {
    padding: 100px 60px;
    background-color: #0a0a0a;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-content {
    max-width: 800px;
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-content p {
    font-size: 1.15rem;
    color: #a0a0a0;
    margin-bottom: 50px;
    line-height: 1.8;
}

.stat-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: linear-gradient(145deg, #111111, #0a0a0a);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-number .plus {
    color: #888888;
    margin-left: 5px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888888;
    max-width: 250px;
}

/* === CAPABILITIES SECTION === */
.capabilities {
    padding: 100px 60px;
    background-color: #ffffff;
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: #666666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.capability-card {
    padding: 40px 30px;
    border: 1px solid #f0f0f0;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.capability-card .icon svg {
    width: 48px;
    height: 48px;
    color: #000000;
    margin-bottom: 25px;
}

.capability-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.capability-card p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.7;
}

/* === PRINTING TECHNIQUES === */
.printing-techniques {
    padding: 100px 60px;
    background-color: #f4f4f4; 
    text-align: center;
}

.print-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px; 
    margin: 0 auto;
}

.print-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    background-color: #1a1a1a; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.print-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.print-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 25px 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: left;
}

.print-card:hover img {
    transform: scale(1.08); 
}

.print-card:hover .print-overlay {
    opacity: 1;
}

.print-overlay h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.print-overlay p {
    color: #cccccc;
    font-size: 0.85rem;
    line-height: 1.5;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.05s; 
}

.print-card:hover .print-overlay h3,
.print-card:hover .print-overlay p {
    transform: translateY(0);
}

/* === PROCESS SECTION === */
.process {
    padding: 100px 60px;
    background-color: #ffffff;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: left;
}

.step-card {
    background-color: #f9f9f9;
    padding: 40px 30px;
    position: relative;
    border-top: 4px solid #000000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: #eaeaea;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.step-content p {
    font-size: 0.95rem;
    color: #555555;
}

/* === FOOTER SECTION === */
.site-footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 80px 60px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
    border-bottom: 1px solid #333333;
    padding-bottom: 60px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1); 
}

.brand-column p {
    color: #888888;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #888888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-column p {
    color: #888888;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #888888;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
}

.social-icons a svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-icons a:hover,
.social-icons a:focus-visible {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

.social-icons a:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    color: #555555;
    font-size: 0.85rem;
}

/* === FIXED WHATSAPP BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
}

.whatsapp-icon-bg {
    background-color: #25D366; 
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    margin-bottom: 8px;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-text {
    background-color: #ffffff;
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #e5e5e5;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* === RESPONSIVE MEDIA QUERIES === */
@media (max-width: 992px) {
    header {
        padding: 20px 30px;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .gooey-nav-container nav ul {
        gap: 15px;
    }

    .hero {
        flex-direction: column;
        padding: 40px 30px;
        height: auto;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text p.description {
        margin: 0 auto 35px auto;
    }

    .slogan-box {
        border-left: none;
        border-bottom: 2px solid #000000;
        padding-left: 0;
        padding-bottom: 10px;
        display: inline-block;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        min-height: 400px;
    }

    .about, .capabilities, .printing-techniques, .process, .site-footer {
        padding: 60px 30px;
    }
    
    .print-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .print-card:last-child {
        grid-column: span 2; 
    }
}

/* ==========================================
   MOBILE-SPECIFIC UPGRADES (MAX-WIDTH: 768px)
   ========================================== */
@media (max-width: 768px) {
    
    /* --- Minimal Header with Hamburger --- */
    header {
        flex-direction: row; 
        padding: 15px 25px; 
        overflow: visible; 
    }

    .logo {
        padding: 0; 
        text-align: left;
    }

    .logo img {
        max-height: 40px; 
    }

    header .btn-primary {
        display: none; 
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* --- Dropdown Navigation --- */
    .gooey-nav-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        max-height: 0; 
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .gooey-nav-container.nav-open {
        max-height: 400px; 
    }
    
    .gooey-nav-container nav {
        width: 100%;
        padding: 0;
    }
    
    .gooey-nav-container nav ul {
        flex-direction: column;
        padding: 20px 25px; 
        gap: 15px;
    }

    .gooey-nav-container .effect {
        display: none !important;
    }

    .gooey-nav-container nav ul li {
        border-radius: 8px;
    }
    
    .gooey-nav-container nav ul li a {
        font-size: 16px;
        padding: 12px 15px;
    }

    .gooey-nav-container nav ul li.active {
        background-color: #f4f4f4;
    }
    
    .gooey-nav-container nav ul li.active a {
        color: #000000;
    }

    /* --- Hero Overhaul (Full Screen Overlay) --- */
    .hero {
        position: relative;
        height: 90vh; 
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        overflow: hidden;
        gap: 0;
    }

    .hero-visual {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        border-radius: 0;
        min-height: auto;
    }

    .hero-visual .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.4); 
    }

    .hero-text {
        position: relative;
        z-index: 2;
        width: 90%;
        max-width: 100%;
        text-align: center;
        color: #ffffff; 
    }

    .hero-text h1, 
    .hero-text h2, 
    .hero-text p.description, 
    .hero-text .slogan-box p {
        color: #ffffff;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-text h2 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .slogan-box {
        border-left: none;
        border-bottom: 2px solid #ffffff;
        padding-left: 0;
        padding-bottom: 10px;
        margin-bottom: 20px;
        display: inline-block;
    }

    .slogan-box p {
        font-size: 1.2rem;
    }

    .hero-text p.description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 14px 20px;
    }

    .slider-dots {
        position: absolute;
        bottom: 30px;
        z-index: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* --- Sections & Horizontal "Swipe" Carousels --- */
    .about, .capabilities, .printing-techniques, .process {
        padding: 60px 0; 
    }
    
    .site-footer {
        padding: 60px 20px;
    }
    
    .section-header, .about-content {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }
    
    .stat-container {
        padding: 20px 30px;
        width: calc(100% - 40px);
        margin: 0 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }

    /* Target the container grids for horizontal scrolling */
    .capabilities-grid, 
    .print-grid, 
    .process-steps {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap; 
        overflow-x: auto; 
        scroll-snap-type: x mandatory; 
        gap: 15px;
        padding: 0 20px 20px 20px; 
        -webkit-overflow-scrolling: touch; 
        scrollbar-width: none; 
    }

    .capabilities-grid::-webkit-scrollbar, 
    .print-grid::-webkit-scrollbar, 
    .process-steps::-webkit-scrollbar {
        display: none; 
    }

    /* Target the individual cards inside the swipe carousels */
    .capability-card, 
    .print-card, 
    .step-card {
        flex: 0 0 85%; 
        scroll-snap-align: center; 
        margin-bottom: 0; 
        padding: 30px 20px; 
    }
    
    .print-card {
        padding: 0; 
        aspect-ratio: 4 / 5; 
    }

    /* Touchscreen Fix for Hover Images */
    @media (hover: none) {
        .print-overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 70%); }
        .print-overlay h3, .print-overlay p { transform: translateY(0); }
    }

    /* --- Centered Mobile Footer --- */
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding-bottom: 40px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 15px;
    }

    .social-icons {
        margin-top: 15px;
        justify-content: center;
    }
    
    /* --- WhatsApp Mobile Scaling --- */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon-bg {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon-bg svg {
        width: 26px;
        height: 26px;
    }
    
    .whatsapp-text {
        font-size: 10px;
        padding: 5px 10px;
    }
}