/**
 * WW102 Design - Print Store Theme
 * Reference: themes.webswaala.com/CMS/WW102/
 */

/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&display=swap');

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

.header-inner {
    max-width: 1300px;
}

.header-logo-text {
    color: #B85042 !important;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-link {
    color: #333333 !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: transparent !important;
    color: #B85042 !important;
}

.nav-dropdown {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-top: 2px solid #B85042;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav-dropdown-link {
    color: #333333;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s, background 0.2s;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
    color: #B85042;
    background: #fdf5f4;
}

.header-phone {
    color: #B85042;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

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

.mobile-nav-link {
    color: #333333;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #B85042;
}

/* ========================
   HERO SECTION
   ======================== */
.ww102-hero {
    background: #ffffff;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.ww102-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ww102-hero-content {
    position: relative;
    z-index: 2;
}

.ww102-hero-eyebrow {
    display: inline-block;
    background: #f8f0ef;
    color: #B85042;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.2rem;
}

.ww102-hero h1 {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.ww102-hero h1 span.highlight {
    color: #B85042;
}

.ww102-hero-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 1.2rem 0 2rem;
}

.ww102-hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.ww102-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #444;
    font-weight: 500;
}

.ww102-hero-feature::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #B85042;
    border-radius: 50%;
    flex-shrink: 0;
}

.ww102-hero-btn {
    display: inline-block;
    background: #B85042;
    color: #ffffff;
    padding: 0.8rem 2.2rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 3px;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.ww102-hero-btn:hover {
    background: #9a3a33;
    transform: translateY(-2px);
    color: #ffffff;
}

.ww102-hero-images {
    position: relative;
    height: 500px;
}

.ww102-hero-img-main {
    position: absolute;
    right: 0;
    top: 0;
    width: 75%;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
}

.ww102-hero-img-secondary {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ww102-hero-circle {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 90px;
    height: 90px;
    z-index: 3;
}

/* ========================
   SECTION LABELS
   ======================== */
.ww102-label {
    display: inline-block;
    background: #f8f0ef;
    color: #B85042;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.35rem 1rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}

/* ========================
   ABOUT SECTION
   ======================== */
.ww102-about {
    background: #ffffff;
    padding: 90px 0;
}

.ww102-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ww102-about-images {
    position: relative;
    height: 420px;
}

.ww102-about-img1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 58%;
    height: 320px;
    object-fit: cover;
    border-radius: 4px;
}

.ww102-about-img2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58%;
    height: 290px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.ww102-about-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 5;
}

.ww102-about-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.ww102-about-content p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.ww102-about-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.ww102-about-stat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.ww102-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #B85042;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ww102-stat-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.ww102-stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #B85042;
    line-height: 1;
}

.ww102-stat-label {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.3;
}

/* ========================
   SERVICE PORTFOLIO
   ======================== */
.ww102-services {
    background: #1a1a1a;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.ww102-services-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/ref/about-01.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.ww102-services-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ww102-services-header {
    text-align: center;
    margin-bottom: 50px;
}

.ww102-services-header h2 {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.ww102-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.ww102-service-card {
    padding: 40px 30px;
    text-align: left;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s ease;
    cursor: pointer;
}

.ww102-service-card:last-child {
    border-right: none;
}

.ww102-service-card:hover {
    background: rgba(184,80,66,0.3);
}

.ww102-service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.2rem;
    fill: #B85042;
}

.ww102-service-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ww102-service-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.ww102-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #B85042;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.ww102-service-link:hover {
    gap: 0.6rem;
    color: #cc6055;
}

/* ========================
   STATS / TRANSFORM IDEAS
   ======================== */
.ww102-transform {
    background: #ffffff;
    padding: 90px 0;
}

.ww102-transform-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ww102-transform-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.ww102-transform-content p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.ww102-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ww102-stat-box {}

.ww102-stat-box .number {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #B85042;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.ww102-stat-box .label {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

.ww102-transform-image {
    position: relative;
}

.ww102-transform-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 4px;
}

/* ========================
   CATEGORIES / BLOG GRID
   ======================== */
.ww102-blog {
    background: #f8f8f8;
    padding: 90px 0;
}

.ww102-blog-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ww102-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.ww102-section-header h2 {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.ww102-section-header p {
    font-size: 0.95rem;
    color: #888;
}

.ww102-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

.ww102-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.ww102-blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ww102-blog-card-img-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #f8f0ef, #fde8e5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ww102-blog-card-body {
    padding: 1.5rem;
}

.ww102-blog-card-cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #B85042;
    margin-bottom: 0.6rem;
}

.ww102-blog-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.ww102-blog-card:hover h3 {
    color: #B85042;
}

.ww102-blog-card p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

/* ========================
   CATEGORIES SECTION (replaces team)
   ======================== */
.ww102-cats {
    background: #ffffff;
    padding: 90px 0;
}

.ww102-cats-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ww102-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.ww102-cat-card {
    background: #f8f8f8;
    border-radius: 4px;
    padding: 35px 25px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.ww102-cat-card:hover {
    background: #B85042;
    border-color: #B85042;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184,80,66,0.25);
}

.ww102-cat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #B85042;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: background 0.3s;
}

.ww102-cat-card:hover .ww102-cat-icon {
    background: rgba(255,255,255,0.2);
}

.ww102-cat-icon svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

.ww102-cat-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: color 0.3s;
}

.ww102-cat-card:hover h3 {
    color: #ffffff;
}

.ww102-cat-card span {
    font-size: 0.8rem;
    color: #888;
    transition: color 0.3s;
}

.ww102-cat-card:hover span {
    color: rgba(255,255,255,0.8);
}

/* ========================
   TAGS SECTION
   ======================== */
.ww102-tags {
    background: #f8f8f8;
    padding: 70px 0;
}

.ww102-tags-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ww102-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ww102-tag-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.ww102-tag-item:hover {
    background: #B85042;
    border-color: #B85042;
    color: #ffffff;
    transform: translateY(-2px);
}

.ww102-tag-count {
    background: #f0f0f0;
    color: #888;
    font-size: 0.75rem;
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    transition: background 0.25s, color 0.25s;
}

.ww102-tag-item:hover .ww102-tag-count {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

/* ========================
   SEO CONTENT SECTION
   ======================== */
.ww102-seo {
    background: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #f0f0f0;
}

.ww102-seo-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ww102-seo-inner p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ========================
   FOOTER
   ======================== */
.footer {
    background: #B85042 !important;
}

.footer-grid {
    gap: 2.5rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.header-logo-text.footer-logo-text {
    color: #ffffff !important;
}

.footer-title {
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-links a {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.9rem;
    line-height: 2.2;
    display: block;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
    color: #ffffff !important;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.85rem;
}

.footer-disclaimer {
    color: rgba(255,255,255,0.65) !important;
    font-size: 0.8rem !important;
}

/* ========================
   BUTTONS
   ======================== */
.btn-primary {
    background: #B85042;
    color: #ffffff;
    border: 2px solid #B85042;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #9a3a33;
    border-color: #9a3a33;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #B85042;
    border: 2px solid #B85042;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

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

/* ========================
   PAGE HERO (internal pages)
   ======================== */
.ww102-page-hero {
    background: linear-gradient(135deg, #B85042 0%, #9a3a33 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ww102-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/ref/about-01.jpg') center/cover;
    opacity: 0.1;
}

.ww102-page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ww102-page-hero h1 {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.ww102-page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.ww102-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.ww102-breadcrumb a {
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
}

.ww102-breadcrumb a:hover {
    color: #ffffff;
}

.ww102-breadcrumb-sep {
    color: rgba(255,255,255,0.5);
}

/* ========================
   ARTICLE PAGE
   ======================== */
.ww102-article-layout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 2rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.ww102-article-main {}

.ww102-article-sidebar {}

.ww102-article-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.ww102-article-body {
    font-size: 1rem;
    color: #333333;
    line-height: 1.9;
}

.ww102-article-body h1,
.ww102-article-body h2,
.ww102-article-body h3,
.ww102-article-body h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0 0.8rem;
    line-height: 1.3;
}

.ww102-article-body h1 { font-size: 1.9rem; }
.ww102-article-body h2 { font-size: 1.6rem; }
.ww102-article-body h3 { font-size: 1.3rem; }

.ww102-article-body p { margin-bottom: 1.2rem; }

.ww102-article-body a {
    color: #B85042;
    text-decoration: underline;
}

.ww102-article-body ul,
.ww102-article-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.ww102-article-body li {
    margin-bottom: 0.5rem;
}

.ww102-sidebar-widget {
    background: #f8f8f8;
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.ww102-sidebar-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #B85042;
}

.ww102-sidebar-links a {
    display: block;
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
    border-bottom: 1px solid #e8e8e8;
    transition: color 0.2s, padding-left 0.2s;
}

.ww102-sidebar-links a:hover {
    color: #B85042;
    padding-left: 5px;
}

/* ========================
   CATEGORY PAGE
   ======================== */
.ww102-cat-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 2rem;
}

.ww102-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 2rem;
}

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

.ww102-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.ww102-article-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ww102-article-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8f0ef, #fde8e5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ww102-article-card-placeholder-icon {
    width: 50px;
    height: 50px;
    fill: #B85042;
    opacity: 0.4;
}

.ww102-article-card-body {
    padding: 1.2rem;
}

.ww102-article-card-cat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #B85042;
    margin-bottom: 0.5rem;
}

.ww102-article-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    transition: color 0.2s;
}

.ww102-article-card:hover h3 {
    color: #B85042;
}

/* Contact page */
.ww102-contact-layout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.ww102-contact-info h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.ww102-contact-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ww102-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

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

.ww102-contact-detail strong {
    display: block;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.ww102-contact-detail span {
    color: #666;
    font-size: 0.9rem;
}

.ww102-contact-form {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 4px;
}

.ww102-contact-form h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

/* ========================
   404 PAGE
   ======================== */
.ww102-404 {
    padding: 100px 2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ww102-404 .error-code {
    font-family: 'Raleway', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: #B85042;
    line-height: 1;
    margin-bottom: 1rem;
}

.ww102-404 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.ww102-404 p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* ========================
   PAGINATION
   ======================== */
.ww102-pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.ww102-pagination a,
.ww102-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.ww102-pagination a:hover,
.ww102-pagination .current {
    background: #B85042;
    border-color: #B85042;
    color: #ffffff;
}

/* ========================
   FORMS
   ======================== */
.ww102-form-group {
    margin-bottom: 1.2rem;
}

.ww102-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ww102-form-group input,
.ww102-form-group textarea,
.ww102-form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-size: 0.95rem;
    color: #333;
    background: #ffffff;
    transition: border-color 0.2s;
    outline: none;
}

.ww102-form-group input:focus,
.ww102-form-group textarea:focus {
    border-color: #B85042;
}

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

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
    .ww102-hero-inner,
    .ww102-about-inner,
    .ww102-transform-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ww102-hero-images {
        height: 350px;
    }

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

    .ww102-service-card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

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

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

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

    .ww102-article-layout {
        grid-template-columns: 1fr;
    }

    .ww102-contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .ww102-hero {
        padding: 50px 0 40px;
    }

    .ww102-hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .ww102-hero-images {
        height: 280px;
    }

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

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

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

    .ww102-blog-grid {
        grid-template-columns: 1fr;
    }

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

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

    .ww102-about-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .ww102-cats-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .ww102-404 .error-code {
        font-size: 5rem;
    }
}
