/**
 * LT063 Printoria Design CSS
 * Design-specific styles for printservicesingapore.com
 */

/* ============================================================
   GLOBAL BODY & BASE
   ============================================================ */

body {
    font-family: var(--font-main);
    background: #ffffff;
    color: var(--color-text);
}

* {
    box-sizing: border-box;
}

/* ============================================================
   HEADER - White header with pink CTA
   ============================================================ */

.header {
    background: #ffffff !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
    border-bottom: none;
}

.header-logo-text {
    color: #222222 !important;
    text-shadow: none !important;
    font-weight: 700;
}

.nav-link {
    color: #222222 !important;
    font-weight: 500;
    font-size: 15px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(239, 71, 111, 0.08) !important;
    color: #ef476f !important;
}

.nav-dropdown {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 8px;
}

.nav-dropdown-link {
    color: #333333;
}

.nav-dropdown-link:hover {
    color: #ef476f;
    background: #ffeef4;
}

/* Header CTA */
.header-cta {
    background: #ef476f;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 2px solid #ef476f;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.header-cta:hover {
    background: transparent;
    color: #ef476f !important;
}

/* Mobile nav */
.mobile-nav {
    background: #ffffff;
}

.mobile-nav-link {
    color: #222222 !important;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: #ef476f !important;
}

.mobile-menu-toggle span {
    background: #222222;
}

/* ============================================================
   HERO SECTION - Full-width slider
   ============================================================ */

.hero-slider {
    position: relative;
    overflow: hidden;
    background: #1a1a2e;
    height: 650px;
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-slider-content {
    position: relative;
    z-index: 3;
    padding: 80px 0;
    max-width: 560px;
}

/* Hero arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: rgba(239, 71, 111, 0.8);
}

.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

.hero-title {
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #ef476f;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #ef476f;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: transparent;
    color: #ef476f;
}

.btn-hero-secondary {
    background: transparent;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: #ffffff;
    color: #1a1a2e;
}

/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
    background: #ef476f;
    width: 32px;
    border-radius: 6px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 480px;
}

.about-img-main {
    position: absolute;
    right: 0;
    top: 0;
    width: 62%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(239, 71, 111, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border: 6px solid #ffffff;
}

.about-img-secondary img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.about-label {
    font-size: 13px;
    font-weight: 700;
    color: #ef476f;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 16px;
    color: #777777;
    line-height: 1.7;
    margin-bottom: 28px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #444444;
    margin-bottom: 12px;
}

.about-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #ef476f;
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-pink {
    display: inline-flex;
    align-items: center;
    background: #ef476f;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ef476f;
}

.btn-pink:hover {
    background: transparent;
    color: #ef476f;
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */

.why-section {
    padding: 100px 0;
    background: #ffeef4;
}

.why-section .section-label {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #ef476f;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.why-section .section-title {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 60px;
    line-height: 1.2;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(239, 71, 111, 0.06);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(239, 71, 111, 0.15);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #ffeef4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 32px;
    height: 32px;
    fill: #ef476f;
}

.why-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.why-card-desc {
    font-size: 14px;
    color: #777777;
    line-height: 1.6;
}

/* ============================================================
   WHO ARE WE / STATS SECTION
   ============================================================ */

.stats-hero-section {
    padding: 100px 0;
    background: #ffffff;
}

.stats-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stats-hero-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.stats-hero-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.stats-hero-label {
    font-size: 13px;
    font-weight: 700;
    color: #ef476f;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.stats-hero-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.stats-hero-desc {
    font-size: 16px;
    color: #777777;
    line-height: 1.7;
    margin-bottom: 40px;
}

.stats-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-box {
    padding: 0;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #ef476f;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    color: #777777;
    font-weight: 500;
}

/* ============================================================
   QUALITY SERVICE SECTION
   ============================================================ */

.services-section {
    padding: 100px 0;
    background: #ffeef4;
}

.services-section .section-label {
    font-size: 13px;
    font-weight: 700;
    color: #ef476f;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.services-section .section-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
    max-width: 400px;
}

.services-section .section-desc {
    font-size: 16px;
    color: #777777;
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 40px;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.services-left {
    /* text content */
}

.services-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(239, 71, 111, 0.15);
}

.service-card-img {
    width: 100%;
    height: 155px;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding: 16px;
}

.service-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.service-card-desc {
    font-size: 13px;
    color: #777777;
    line-height: 1.5;
    margin-bottom: 14px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    background: #ef476f;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ef476f;
}

.btn-service:hover {
    background: transparent;
    color: #ef476f;
}

/* ============================================================
   POPULAR PRINTS GRID (6 items)
   ============================================================ */

.prints-section {
    padding: 100px 0;
    background: #ffffff;
}

.prints-section .section-label {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #ef476f;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.prints-section .section-title {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 50px;
    line-height: 1.2;
}

.prints-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.print-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.print-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.print-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.print-card:hover img {
    transform: scale(1.05);
}

.print-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 20px 12px 12px;
}

.print-card-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    display: block;
}

/* ============================================================
   LATEST ARTICLES SECTION
   ============================================================ */

.articles-section {
    padding: 100px 0;
    background: #ffeef4;
}

.articles-section .section-label {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #ef476f;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.articles-section .section-title {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 50px;
    line-height: 1.2;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card-lt {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-decoration: none;
    display: block;
}

.article-card-lt:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(239, 71, 111, 0.18);
}

.article-card-lt-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    background: #f5d5e0;
}

.article-card-lt:hover .article-card-lt-img {
    transform: scale(1.04);
}

.article-card-lt-img-wrap {
    overflow: hidden;
}

.article-card-lt-body {
    padding: 20px;
}

.article-card-lt-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-lt-meta {
    font-size: 13px;
    color: #ef476f;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-card-lt-meta::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 2px;
    background: #ef476f;
}

/* ============================================================
   CTA BANNER SECTION
   ============================================================ */

.cta-banner-section {
    padding: 80px 0;
    background: #ef476f;
    text-align: center;
}

.cta-banner-section .cta-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-banner-section .cta-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #ef476f;
    padding: 16px 44px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.btn-cta-white:hover {
    background: transparent;
    color: #ffffff;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: #1a1a2e !important;
    color: #ffffff;
}

.footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding: 70px 0 50px;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-top: 16px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: #ef476f;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ef476f;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin: 4px 0;
}

.footer-disclaimer {
    font-size: 13px !important;
    color: rgba(255,255,255,0.4) !important;
}

/* ============================================================
   INTERNAL PAGES - Page Hero Banner
   ============================================================ */

.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(239, 71, 111, 0.12);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: rgba(239, 71, 111, 0.08);
    border-radius: 50%;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.page-hero h1,
.page-hero .page-hero-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-breadcrumb a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
    color: #ef476f;
}

.page-breadcrumb span {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

.page-breadcrumb .current {
    color: #ef476f;
}

/* ============================================================
   ARTICLE CARDS (category/tag pages)
   ============================================================ */

.article-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: block;
    text-decoration: none;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(239, 71, 111, 0.15);
}

.article-card .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    background: #ffeef4;
}

.article-card:hover .card-img {
    transform: scale(1.04);
}

.article-card .card-img-wrap {
    overflow: hidden;
}

.article-card .card-body {
    padding: 20px;
}

.article-card .card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 10px;
}

.article-card .card-excerpt {
    font-size: 14px;
    color: #777777;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .card-read-more {
    font-size: 13px;
    font-weight: 700;
    color: #ef476f;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================================
   SECTION LABELS + TITLES
   ============================================================ */

.lt-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #ef476f;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.lt-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
    background: #ef476f;
    color: #ffffff;
    border: 2px solid #ef476f;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: #ef476f;
}

.btn-secondary {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a1a2e;
    color: #ffffff;
}

/* ============================================================
   MAIN CONTENT SPACING
   ============================================================ */

.main {
    padding-top: 25px;
    padding-bottom: 25px;
}

.main-home {
    padding-top: 0 !important;
}

/* ============================================================
   CONTACT FORM STYLING
   ============================================================ */

.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.contact-info-desc {
    color: #777777;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: #ffeef4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    fill: #ef476f;
}

.contact-detail-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.contact-detail-text span {
    font-size: 14px;
    color: #777777;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    color: #333333;
    background: #ffffff;
    transition: border-color 0.2s ease;
    font-family: var(--font-main);
}

.form-control:focus {
    outline: none;
    border-color: #ef476f;
    box-shadow: 0 0 0 3px rgba(239, 71, 111, 0.08);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* ============================================================
   404 PAGE
   ============================================================ */

.error-404-section {
    padding: 120px 0;
    text-align: center;
    background: #ffeef4;
}

.error-404-number {
    font-size: clamp(80px, 15vw, 160px);
    font-weight: 700;
    color: #ef476f;
    line-height: 1;
    opacity: 0.15;
    margin-bottom: -40px;
}

.error-404-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.error-404-desc {
    font-size: 17px;
    color: #777777;
    margin-bottom: 36px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .about-grid,
    .stats-hero-grid,
    .services-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        min-height: 360px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prints-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

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

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .hero-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .prints-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .stats-numbers {
        grid-template-columns: 1fr 1fr;
    }

    .footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 0 30px;
    }

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

    .about-images {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .prints-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero-btns {
        flex-direction: column;
    }

    .stats-numbers {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   PAGINATION OVERRIDE
   ============================================================ */

.pagination-list {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-list li a,
.pagination-list li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    border: 2px solid #e0e0e0;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #ffffff;
}

.pagination-list li a:hover {
    background: #ef476f;
    color: #ffffff;
    border-color: #ef476f;
}

.pagination-current {
    background: #ef476f !important;
    color: #ffffff !important;
    border-color: #ef476f !important;
}

/* ============================================================
   CARD STYLES - Override for article cards
   ============================================================ */

.card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-decoration: none;
    display: block;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(239, 71, 111, 0.15);
}

.card-image {
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
    background: #ffeef4;
}

.card:hover .card-image img {
    transform: scale(1.04);
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
}

.card-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-title a:hover {
    color: #ef476f;
}

/* ============================================================
   CASINO CARDS - Adapted for print services
   ============================================================ */

.casino-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 0;
}

.casino-card-new {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(239, 71, 111, 0.08);
    border: 1px solid #ffeef4;
    transition: all 0.3s ease;
}

.casino-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(239, 71, 111, 0.15);
}

.casino-card-new-badge {
    width: 56px;
    height: 56px;
    background: #ffeef4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.casino-card-new-badge svg {
    width: 28px;
    height: 28px;
    fill: #ef476f;
}

.casino-card-new-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.casino-card-new-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #777;
}

.casino-card-new-rating .rating-value {
    font-weight: 700;
    color: #1a1a2e;
}

.casino-card-new-rating svg {
    width: 14px;
    height: 14px;
    fill: #ef476f;
}

.casino-card-new-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ef476f;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ef476f;
}

.casino-card-new-btn:hover {
    background: transparent;
    color: #ef476f;
}

.casino-card-new-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ef476f;
}

/* ============================================================
   ARTICLE TAGS
   ============================================================ */

.article-tag {
    display: inline-block;
    background: #ffeef4;
    color: #ef476f;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.article-tag:hover {
    background: #ef476f;
    color: #ffffff;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.breadcrumb-item {
    font-size: 14px;
    color: #777;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #ccc;
}

.breadcrumb-item a {
    color: #777;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #ef476f;
}

/* ============================================================
   MOBILE RESPONSIVE - No horizontal scroll
   ============================================================ */

@media (max-width: 390px) {
    .prints-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .about-images {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-hero-img {
        display: none;
    }
    
    .casino-grid-new {
        grid-template-columns: 1fr 1fr;
    }
}
