/* =============================================
   NINE GOLD PRINTERS — style.css
   Desktop: unchanged | Mobile: fully fixed
   ============================================= */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f7f7f7;
    color: #222;
    overflow-x: hidden;
    max-width: 100vw;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* =============================================
   TOP BAR
   ============================================= */

.top-bar {
    background: #111;
    color: white;
    padding: 14px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-left {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.top-left span {
    font-size: 15px;
    color: white;
}

.top-left i {
    color: #d4af37;
    margin-right: 8px;
}

.top-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.top-right a {
    font-size: 22px;
    transition: 0.3s ease;
    text-decoration: none;
}

.top-right a:nth-child(1) { color: #1877F2; }
.top-right a:nth-child(2) { color: #E4405F; }
.top-right a:nth-child(3) { color: #0A66C2; }

.top-right a:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
    width: 100%;
    height: 90px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: transform 0.4s;
}

.logo {
    width: 245px;
    position: relative;
    top: 5px;
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
}

/* Desktop nav — shown by default, hidden on mobile */
.desktop-nav {
    display: flex;
    gap: 50px;
}

.desktop-nav a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: 0.3s;
}

.desktop-nav a:hover::after { width: 100%; }
.desktop-nav a:hover { color: #d4af37; }

/* Keep old nav selector working too */
nav {
    display: flex;
    gap: 50px;
}

nav a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: 0.3s;
}

nav a:hover::after { width: 100%; }
nav a:hover { color: #d4af37; }

.btn {
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: white !important;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.4);
}

/* Hamburger — hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #222;
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav dropdown */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: white;
    position: sticky;
    top: 90px;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-top: 2px solid #d4af37;
    width: 100%;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: 0.2s;
}

.mobile-nav a:hover {
    color: #d4af37;
    background: #fdfaf3;
    padding-left: 32px;
}

.mobile-nav-btn {
    background: linear-gradient(45deg, #d4af37, #b8860b) !important;
    color: white !important;
    text-align: center;
    margin: 12px 16px 16px;
    border-radius: 10px !important;
    padding: 14px 24px !important;
    border-bottom: none !important;
}

.mobile-nav-btn:hover {
    padding-left: 24px !important;
    opacity: 0.9;
}

/* =============================================
   SIDE QUOTE
   ============================================= */

.side-quote {
    position: fixed;
    right: -55px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 10px 10px 0 0;
    font-weight: 600;
    z-index: 999;
    white-space: nowrap;
}

/* =============================================
   HERO
   ============================================= */

.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.45);
    will-change: transform;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.35));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 75%;
    text-align: center;
    color: white;
    padding: 0 16px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero p {
    margin-top: 22px;
    color: #f3f3f3;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-btn {
    display: inline-block;
    margin-top: 35px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: white;
    text-decoration: none;
    padding: 16px 38px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
    animation: buttonBlink 1s infinite;
}

.hero-btn:hover { transform: translateY(-3px); }

@keyframes buttonBlink {
    0%   { opacity: 1; transform: scale(1); }
    50%  { opacity: 0.6; transform: scale(1.06); }
    100% { opacity: 1; transform: scale(1); }
}

/* =============================================
   SECTION TITLE
   ============================================= */

.section-title {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 55px;
    padding: 0 16px;
}

.section-title span {
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: 48px;
    margin-top: 0;
    color: #111;
    font-weight: 800;
    line-height: 1.2;
}

/* =============================================
   SERVICES SECTION
   ============================================= */

.services {
    padding: 40px 0 70px;
    background: #f8f8f8;
    overflow: hidden;
}

.services-slider {
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.service-row {
    overflow: hidden;
    margin-bottom: 24px;
    width: 100%;
}

.service-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: scrollLeft 16s linear infinite;
    will-change: transform;
    transform: translateZ(0);          /* force compositing layer on the track */
    backface-visibility: hidden;       /* prevent repaint at loop boundary     */
    -webkit-backface-visibility: hidden;
}

.service-row.reverse .service-track {
    animation: scrollRight 16s linear infinite;
}

/* SERVICE CARDS */

.services-slider .card {
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.services-slider .card:hover {
    transform: translateY(-6px);
}

/* Image fills the card top, clipped by card's overflow:hidden + border-radius */
.services-slider .card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.services-slider .card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    padding: 14px 18px 6px;
    margin: 0;
}

.services-slider .card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 0 18px 18px;
    margin: 0;
}

@keyframes scrollLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* =============================================
   ABOUT CARDS
   ============================================= */

.about-section {
    background: white;
}

.about-cards {
    padding: 90px 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: white;
}

.about-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.about-card:hover { transform: translateY(-10px); }

.about-card i {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.about-card p {
    color: #666;
    line-height: 1.8;
}

/* =============================================
   PRINTING SHOWCASE
   ============================================= */

.printing-showcase {
    padding: 100px 60px;
    background: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    max-width: 720px;
    height: 460px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.showcase-content span {
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 2px;
}

.showcase-content h2 {
    font-size: 52px;
    margin: 15px 0;
}

.showcase-content p {
    color: #666;
    line-height: 1.9;
    font-size: 18px;
}

.showcase-content a {
    display: inline-block;
    margin-top: 30px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.showcase-content a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.4);
}

/* =============================================
   COUNTERS
   ============================================= */

.counters {
    padding: 90px 60px;
    background: #111;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-box {
    text-align: center;
    color: white;
}

.counter-box h2 {
    font-size: 52px;
    color: #d4af37;
}

.counter-box p {
    font-size: 16px;
    margin-top: 8px;
}

/* =============================================
   CLIENTS
   ============================================= */

.clients {
    padding: 100px 40px;
    background: #f7f7f7;
    overflow: hidden;
}

.clients-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.client-row {
    width: 100%;
    overflow: hidden;
    margin-bottom: 25px;
}

.client-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
    will-change: transform;
}

.client-row.reverse .client-track {
    animation: scrollRight 30s linear infinite;
}

.client-card {
    min-width: 220px;
    height: 120px;
    background: white;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.client-card img {
    max-width: 160px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* =============================================
   QUOTE POPUP
   ============================================= */

.quote-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.78);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
    overflow-y: auto;
}

.quote-popup.active { display: flex; }

.popup-box {
    width: 460px;
    max-width: 100%;
    background: white;
    border-radius: 22px;
    padding: 26px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    animation: popupShow 0.4s ease;
}

.close-popup,
.popup-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 34px;
    cursor: pointer;
    color: #888;
    transition: 0.3s;
    z-index: 10;
    line-height: 1;
    background: none;
    border: none;
}

.close-popup:hover,
.popup-close:hover {
    color: black;
    transform: rotate(90deg);
}

.popup-logo {
    width: 130px;
    height: auto;
    display: block;
    margin: 0 auto 14px;
    object-fit: contain;
}

.popup-header {
    text-align: center;
    margin-bottom: 20px;
}

.popup-header img {
    height: 50px;
    width: auto;
    margin: 0 auto 10px;
}

.popup-box h2 {
    font-size: 38px;
    color: #222;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.2;
}

.popup-box input,
.popup-box textarea {
    width: 100%;
    padding: 16px 22px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    border-radius: 32px;
    font-size: 16px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    transition: 0.3s;
    color: #222;
}

.popup-box input:focus,
.popup-box textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
}

.popup-box textarea {
    height: 140px;
    resize: none;
    border-radius: 22px;
}

.popup-box button[type="submit"] {
    width: 100%;
    padding: 17px;
    border: none;
    border-radius: 35px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: white;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 6px;
    font-family: 'Poppins', sans-serif;
}

.popup-box button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212,175,55,0.35);
}

/* =============================================
   SUCCESS POPUP
   ============================================= */

.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(55,75,130,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    padding: 20px;
}

.success-popup.active { display: flex; }

.success-box {
    width: 380px;
    max-width: 100%;
    background: white;
    border-radius: 18px;
    text-align: center;
    padding: 70px 28px 32px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    animation: popupShow 0.4s ease;
}

.success-icon {
    width: 90px;
    height: 90px;
    background: #63d43b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 700;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.success-box h2 {
    font-size: 34px;
    color: #222;
    margin-bottom: 14px;
}

.success-box p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.success-box button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #63d43b;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.success-box button:hover { background: #57bf33; }

@keyframes popupShow {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* =============================================
   INFRASTRUCTURE
   ============================================= */

.infrastructure {
    padding: 100px 60px;
    background: #111;
    color: white;
    overflow: hidden;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.infra-box {
    background: #1c1c1c;
    padding: 45px;
    text-align: center;
    border-radius: 20px;
}

.infra-box i {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 20px;
}

.infra-box h3 {
    font-size: 18px;
    font-weight: 600;
}

/* =============================================
   MAP
   ============================================= */

.map-section { overflow: hidden; }

.map iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: #111;
    color: white;
    font-family: 'Poppins', sans-serif;
    border-top: 2px solid #d4af37;
    overflow: hidden;
}

.footer-container {
    max-width: 1350px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 50px;
    padding: 70px 50px;
    align-items: start;
}

.company-column { padding-right: 10px; }

.footer-logo {
    width: 170px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 18px;
}

.company-title {
    font-size: 34px;
    color: #ffffff;
    margin-bottom: 15px;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.footer-column h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.3px;
    background: linear-gradient(90deg, #d4af37, #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-column p {
    color: #d5d5d5;
    font-size: 16px;
    line-height: 1.8;
}

.owner-name {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 18px;
    background: rgba(212,175,55,0.08);
    border-left: 3px solid #d4af37;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 500;
}

.owner-name strong { color: #d4af37; }

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-column ul li a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 17px;
    transition: 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d4af37;
    padding-left: 6px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    word-break: break-word;
}

.contact-item i {
    color: #d4af37;
    font-size: 18px;
    min-width: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item span {
    color: white !important;
    font-size: 16px;
    line-height: 1.6;
    word-break: break-word;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s ease;
    flex-shrink: 0;
}

.footer-social a i {
    margin: 0;
    font-size: 20px;
    color: white;
}

.footer-social a:nth-child(1) { background: #E4405F; }
.footer-social a:nth-child(2) { background: #1877F2; }
.footer-social a:nth-child(3) { background: #0A66C2; }
.footer-social a:nth-child(4) { background: #25D366; }

.footer-social a:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 18px 16px;
    color: #bfbfbf;
    font-size: 15px;
    background: #111;
}

/* =============================================
   FLOATING WHATSAPP
   ============================================= */

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(37,211,102,0.35);
    transition: transform 0.3s ease;
}

.whatsapp:hover { transform: scale(1.1); }

/* =============================================
   PHONE NUMBER LINKS — always white, no underline
   ============================================= */

a[href^="tel:"],
a[href^="tel:"]:link,
a[href^="tel:"]:visited,
a[href^="tel:"]:hover,
a[href^="tel:"]:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* =============================================
   LOGO SLIDER (legacy classes)
   ============================================= */

.logo-slider {
    width: 100%;
    overflow: hidden;
    margin: 25px 0;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 35s linear infinite;
    gap: 25px;
    will-change: transform;
}

.reverse .logo-track { animation: scrollRight 35s linear infinite; }

.logo-track img {
    width: 220px;
    height: 120px;
    object-fit: contain;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

/* =============================================
   TABLET — max-width: 1024px
   ============================================= */

@media (max-width: 1024px) {
    .navbar { padding: 0 30px; }
    .top-bar { padding: 12px 30px; }
    .about-cards { padding: 60px 30px; gap: 20px; }
    .printing-showcase { padding: 70px 30px; gap: 40px; }
    .counters { padding: 70px 30px; }
    .infrastructure { padding: 70px 30px; }
    .footer-container { padding: 60px 30px; gap: 35px; }
    .clients { padding: 70px 30px; }
}

/* =============================================
   TABLET — max-width: 900px
   ============================================= */

@media (max-width: 900px) {

    /* Printing showcase: stack vertically */
    .printing-showcase {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 32px;
        text-align: center;
    }

    .showcase-image img {
        max-width: 100%;
        height: auto;
    }

    .showcase-content h2 { font-size: 36px; }

    /* Footer: 2-column */
    .footer-container {
        grid-template-columns: 1fr 1fr;
        padding: 50px 24px;
        gap: 32px;
    }

    .company-title { white-space: normal; font-size: 28px; }

    /* Counters: 2x2 */
    .counters {
        grid-template-columns: repeat(2, 1fr);
        padding: 60px 24px;
        gap: 24px;
    }

    .counter-box h2 { font-size: 42px; }
}

/* =============================================
   MOBILE — max-width: 768px
   ============================================= */

@media (max-width: 768px) {

    /* Prevent any horizontal overflow */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Top bar */
    .top-bar { padding: 10px 16px; justify-content: center; text-align: center; }
    .top-left { justify-content: center; gap: 12px; flex-direction: column; align-items: center; }
    .top-left span { font-size: 13px; color: white; }

    /* =============================================
       FIX 1: Navbar — remove extra white space, fit logo tightly
       ============================================= */
    .navbar {
        height: auto;
        min-height: 60px;
        padding-top: 4px;
        padding-bottom: 4px;
        padding-left: 16px;
        padding-right: 16px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .logo {
        width: 110px;
        top: 0;
        margin: 0;
        padding: 0;
    }

    /* Hide desktop nav and btn, show hamburger */
    .desktop-nav { display: none; }
    .desktop-btn { display: none; }
    .hamburger { display: flex; }

    /* Legacy nav hidden on mobile */
    nav { display: none; }
    .navbar > .btn { display: none; }

    /* Mobile nav sits just below the tighter navbar */
    .mobile-nav {
        top: 60px;
    }

    /* Hide side-quote on mobile */
    .side-quote { display: none; }

    /* =============================================
       FIX 2: Hero — reduce height so services section peeks
       ============================================= */
    .hero {
        height: 55vh;
        min-height: 320px;
        max-height: 420px;
    }

    .hero-content { width: 94%; padding: 0 12px; }
    .hero h1 { font-size: 30px; letter-spacing: -0.5px; }
    .hero p { font-size: 15px; margin-top: 12px; }
    .hero-btn { padding: 13px 28px; font-size: 15px; margin-top: 22px; }

    /* Section title */
    .section-title { margin-top: 35px; margin-bottom: 28px; padding: 0 16px; }
    .section-title h2 { font-size: 26px; }

    /* ---- SERVICES — auto-scroll restored, mirrors clients slider ---- */
    .services { padding: 30px 0 44px; overflow: hidden; }
    .services-slider { padding: 0; overflow: hidden; }

    /* Row clips the track — no horizontal page scroll */
    .service-row {
        overflow: hidden;
        margin-bottom: 14px;
        width: 100%;
        max-width: 100vw;
    }

    /* Restore infinite scroll animation — same as desktop */
    .service-track {
        display: flex;
        gap: 14px;
        width: max-content;
        animation: scrollLeft 16s linear infinite;
        will-change: transform;
        transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .service-row.reverse .service-track {
        animation: scrollRight 16s linear infinite;
    }

    /* Duplicate cards must stay visible for seamless loop — block not flex */
    .service-track .card.duplicate { display: block; }

    .services-slider .card {
        width: 170px;
        min-width: 170px;
        max-width: 170px;
        border-radius: 14px;
        flex-shrink: 0;
    }

    .services-slider .card img {
        width: 100%;
        height: 115px;
        object-fit: cover;
    }

    .services-slider .card h3 { font-size: 13px; padding: 10px 12px 4px; }
    .services-slider .card p  { font-size: 11px; padding: 0 12px 12px; }

    /* About */
    .about-cards {
        grid-template-columns: 1fr;
        padding: 36px 16px;
        gap: 18px;
    }

    .about-card { padding: 26px 18px; border-radius: 18px; }
    .about-card h3 { font-size: 19px; }
    .about-card p  { font-size: 14px; }
    .about-card i  { font-size: 32px; }

    /* Printing showcase */
    .printing-showcase {
        grid-template-columns: 1fr;
        padding: 36px 16px;
        gap: 24px;
        text-align: center;
    }
    .showcase-image img { height: auto; max-width: 100%; border-radius: 14px; }
    .showcase-content h2 { font-size: 26px; }
    .showcase-content p  { font-size: 14px; }
    .showcase-content a  { padding: 12px 26px; font-size: 14px; }

    /* Counters */
    .counters {
        grid-template-columns: repeat(2, 1fr);
        padding: 36px 16px;
        gap: 18px;
    }
    .counter-box h2 { font-size: 34px; }
    .counter-box p  { font-size: 13px; }

    /* Clients — keep animation but contained */
    .clients { padding: 44px 0; overflow: hidden; }
    .clients-slider { margin-top: 20px; overflow: hidden; }

    .client-row {
        overflow: hidden;
        margin-bottom: 14px;
        width: 100%;
        max-width: 100vw;
    }

    .client-track {
        animation: scrollLeft 20s linear infinite;
        display: flex;
        width: max-content;
        gap: 12px;
        will-change: transform;
    }

    .client-row.reverse .client-track {
        animation: scrollRight 20s linear infinite;
    }

    .client-card {
        min-width: 130px;
        height: 76px;
        padding: 10px;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .client-card img {
        max-width: 90px;
        max-height: 42px;
    }

    /* Infrastructure */
    .infrastructure { padding: 44px 16px; overflow: hidden; }
    .infra-grid { grid-template-columns: 1fr; gap: 14px; }
    .infra-box { padding: 28px 18px; border-radius: 14px; }
    .infra-box i  { font-size: 32px; }
    .infra-box h3 { font-size: 15px; }

    /* Map */
    .map iframe { height: 240px; }

    /* =============================================
       FIX 3: Force all phone number links to white — all states
       ============================================= */
    a[href^="tel"],
    a[href^="tel"]:link,
    a[href^="tel"]:visited,
    a[href^="tel"]:hover,
    a[href^="tel"]:active {
        color: white !important;
        text-decoration: none !important;
    }
    .top-bar a,
    .footer a {
        color: white !important;
    }
    /* Restore social icon colors overridden by the rule above */
    .top-right a:nth-child(1) { color: #1877F2 !important; }
    .top-right a:nth-child(2) { color: #E4405F !important; }
    .top-right a:nth-child(3) { color: #0A66C2 !important; }

    /* Popup */
    .popup-box { padding: 20px 14px; border-radius: 16px; }
    .popup-logo { width: 90px; }
    .popup-box h2 { font-size: 22px; margin-bottom: 14px; }
    .popup-box input,
    .popup-box textarea { font-size: 14px; padding: 12px 14px; margin-bottom: 12px; }
    .popup-box textarea { height: 100px; }
    .popup-box button[type="submit"] { font-size: 16px; padding: 13px; }

    /* Success popup */
    .success-box { padding: 62px 18px 26px; }
    .success-box h2 { font-size: 24px; }
    .success-box p  { font-size: 13px; }

    /* Footer — 3-row mobile layout: Company | About+PrintWorks | Contact */
    .footer { padding-top: 0; }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        padding: 30px 16px;
        gap: 20px;
    }
    /* Row 1: Company Info spans both columns */
    .footer-container .company-column {
        grid-column: 1 / -1;
    }
    /* Row 3: Contact spans both columns */
    .footer-container .contact-column {
        grid-column: 1 / -1;
    }
    /*
       Print Works has 8 items, About Us has 4 — hide items 5-8 of Print Works
       on mobile so both columns are equal height.
    */
    .footer-container .footer-column:nth-child(3) ul li:nth-child(n+5) {
        display: none;
    }
    /* Remove bottom border on last visible Print Works item (item 4) */
    .footer-container .footer-column:nth-child(3) ul li:nth-child(4) {
        border-bottom: none;
    }
    .company-column { padding-right: 0; }
    .company-title { white-space: normal; font-size: 20px; }
    .footer-column h3 { font-size: 17px; margin-bottom: 12px; }
    .footer-column p  { font-size: 13px; }
    .footer-column ul li a { font-size: 13px; }
    .footer-logo { width: 120px; }
    .owner-name { font-size: 13px; padding: 9px 12px; }
    .contact-item span { font-size: 13px; color: white !important; }
    .footer-social a { width: 38px; height: 38px; }
    .footer-social a i { font-size: 16px; }
    .footer-bottom { font-size: 12px; padding: 14px 12px; }

    /* WhatsApp */
    .whatsapp { width: 50px; height: 50px; font-size: 22px; right: 14px; bottom: 14px; }
}

/* =============================================
   SMALL MOBILE — max-width: 420px
   ============================================= */

@media (max-width: 420px) {
    .hero h1 { font-size: 24px; }
    .hero p   { font-size: 13px; }
    .hero-btn { padding: 11px 20px; font-size: 13px; }

    .section-title h2 { font-size: 22px; }

    .services-slider .card {
        width: 160px;
        min-width: 160px;
        max-width: 160px;
    }
    .services-slider .card img { height: 105px; }

    .counter-box h2 { font-size: 28px; }

    .client-card { min-width: 115px; height: 68px; }
    .client-card img { max-width: 76px; max-height: 34px; }
}