/* Roboto (body) + Montserrat (heading fallback when Century Gothic is unavailable) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Roboto:wght@400;500&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a202c;
    --secondary-color: #4a5568;
    --accent-color: #e53e3e;
    --accent-dark: #c53030;
    --brand-black: #0f1419;
    --brand-charcoal: #1a202c;
    --text-color: #2d3748;
    --light-bg: #f7fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    /* Century Gothic on desktop; Montserrat loads from Google Fonts as reliable fallback */
    --font-heading: 'Century Gothic', 'CenturyGothic', 'Montserrat', 'AppleGothic', sans-serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 40%, #ffffff 100%);
}

/* Headings site-wide */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Body typography — nav, breadcrumbs, tabs, buttons, paragraphs */
.header,
.navbar,
.nav-menu,
.nav-menu a,
.page-header p,
.breadcrumb,
.breadcrumb a,
.breadcrumb .current,
.dropdown-content,
.dropdown-content a,
.category-tab,
.product-subcategory-tabs,
.btn-quote,
.btn-secondary,
.btn-link,
.hero-subtitle,
.hero-description,
.hero-card-text,
.hero-feature-text,
.footer-section p,
.footer-section ul li,
.footer-section ul li a,
.footer-bottom,
.contact-info {
    font-family: var(--font-body);
}

.page-header h1,
.logo h1,
.section-header h2,
.hero-title {
    font-family: var(--font-heading);
}

/* Product cards: Roboto, light weight, refined sizing */
.product-card,
.product-card h3,
.product-info,
.product-info h3,
.product-info p,
.products-section,
.products-grid {
    font-family: var(--font-body);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-top {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-quote {
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-quote:hover {
    background: #c53030;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 18px;
    color: var(--primary-color);
    letter-spacing: 1px;
    position: relative;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

.logo h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.02em;
    transition: color 0.25s, transform 0.25s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), rgba(229,62,62,0.3));
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

/* Hero Section — photo-forward layered backdrop (no solid fill) */
.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 64px;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/services/flooring-solutions.png') center/cover no-repeat;
    z-index: -3;
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 80% at 50% 50%, transparent 35%, rgba(26, 32, 44, 0.12) 100%),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.82) 0%,
            rgba(255, 255, 255, 0.45) 32%,
            transparent 52%),
        radial-gradient(circle 240px at 88% 12%, rgba(229, 62, 62, 0.14) 0%, transparent 72%),
        radial-gradient(circle 180px at 6% 88%, rgba(229, 62, 62, 0.08) 0%, transparent 70%),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 64px,
            rgba(26, 32, 44, 0.025) 64px,
            rgba(26, 32, 44, 0.025) 65px
        );
}

.hero::before {
    content: '';
    position: absolute;
    top: 12%;
    right: 6%;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(229, 62, 62, 0.35);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 18%;
    left: 4%;
    width: 72px;
    height: 72px;
    border: 2px solid rgba(26, 32, 44, 0.12);
    transform: rotate(45deg);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    align-items: stretch;
}

.hero-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    min-height: 100%;
    padding: 36px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 4px solid var(--accent-color);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(26, 32, 44, 0.12);
    backdrop-filter: blur(16px);
}

.hero-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    min-height: 100%;
}

.hero-headline {
    max-width: 100%;
}

.hero-title {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.01em;
    margin-bottom: 14px;
    text-transform: none;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.65;
    color: var(--secondary-color);
    font-weight: 400;
}

.hero-subtitle strong {
    font-weight: 600;
    color: var(--primary-color);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 16px;
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: 15px;
    line-height: 1.75;
    color: var(--secondary-color);
    font-weight: 400;
    margin: 0;
    flex: 1 1 auto;
}

.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: auto;
    flex-shrink: 0;
}

.hero-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(26, 32, 44, 0.06);
    transition: all 0.3s ease;
    text-align: left;
    min-height: auto;
}

.hero-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(26, 32, 44, 0.12);
    border-left-color: #c53030;
    background: #ffffff;
}

.hero-card-icon-wrap {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(229, 62, 62, 0.1);
    border-radius: 10px;
    color: var(--accent-color);
}

.hero-card-icon-wrap svg {
    width: 22px;
    height: 22px;
}

.hero-card-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1.35;
    color: var(--primary-color);
}

.hero-card-text span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--secondary-color);
    margin-top: 4px;
}

.hero-showcase {
    position: relative;
    width: 100%;
    flex: 1 1 auto;
    min-height: 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(26, 32, 44, 0.18);
    border: 3px solid rgba(255, 255, 255, 0.9);
    outline: 2px solid rgba(229, 62, 62, 0.25);
    outline-offset: 4px;
}

.hero-showcase img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex-shrink: 0;
}

.hero-feature {
    padding: 0;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(26, 32, 44, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-feature a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
}

.hero-feature a:hover,
.hero-feature a:focus,
.hero-feature a:focus-visible {
    text-decoration: none;
    color: inherit;
    outline: none;
}

.hero-feature:hover {
    background: var(--white);
    transform: translateY(-2px);
    border-color: rgba(229, 62, 62, 0.3);
    box-shadow: 0 12px 28px rgba(26, 32, 44, 0.14);
}

.hero-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--accent-color);
    flex-shrink: 0;
    background: rgba(229, 62, 62, 0.08);
    border-radius: 8px;
}

.hero-feature-icon svg {
    width: 20px;
    height: 20px;
}

.hero-feature-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: var(--white);
    padding: 20px 55px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.9s both;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(229, 62, 62, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    color: var(--accent-color);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 16px;
    color: var(--secondary-color);
}

/* About Section */
.about-section {
    background: var(--light-bg);
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: var(--secondary-color);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 20px;
    color: var(--primary-color);
}

.about-goal {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-goal h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.about-goal p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.about-goal p:last-child {
    margin-bottom: 0;
}

.about-actions {
    text-align: center;
    margin-top: 32px;
}

/* About Page */
.about-page {
    padding: 64px 0 80px;
}

.about-page .about-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.about-page .about-label-light {
    color: rgba(229, 62, 62, 0.9);
}

.about-page .about-story-block {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0;
    margin-bottom: 56px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 16px 40px rgba(26, 32, 44, 0.08);
}

.about-page .about-story-visual {
    position: relative;
    min-height: 420px;
}

.about-page .about-story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-page .about-story-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0;
    background: linear-gradient(to top, rgba(26, 32, 44, 0.88) 0%, rgba(26, 32, 44, 0.5) 70%, transparent 100%);
    padding: 48px 24px 24px;
}

.about-page .about-story-stat {
    flex: 1;
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.about-page .about-story-stat:last-child {
    border-right: none;
}

.about-page .about-story-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}

.about-page .about-story-stat-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.about-page .about-story-content {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-page .about-story-content h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.35;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
}

.about-page .about-story-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 28px;
}

.about-page .about-story-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.about-page .about-story-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    font-size: 14px;
    line-height: 1.65;
    color: var(--secondary-color);
}

.about-page .about-story-highlights strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-page .about-story-highlight-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(229, 62, 62, 0.08);
    border-radius: 8px;
    color: var(--accent-color);
}

.about-page .about-story-highlight-icon svg {
    width: 18px;
    height: 18px;
}

.about-page .about-goal {
    max-width: 100%;
    margin: 0 0 64px;
}

.about-page .about-goal-panel {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
    padding: 44px 48px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 45%, #f8fafc 100%);
    border-radius: 20px;
    border: 1px solid rgba(229, 62, 62, 0.12);
    box-shadow: 0 12px 36px rgba(229, 62, 62, 0.06);
    position: relative;
    overflow: hidden;
}

.about-page .about-goal-panel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color) 0%, #c53030 100%);
    border-radius: 4px 0 0 4px;
}

.about-page .about-goal-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.35;
    margin: 0;
    letter-spacing: 0.01em;
}

.about-page .about-goal-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-page .about-goal-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-page .about-goal-point-num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.25);
}

.about-page .about-goal-point p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--secondary-color);
    margin: 0;
    padding-top: 4px;
}

.about-page .renovation-process {
    margin-bottom: 48px;
}

.about-page .renovation-process-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
}

.about-page .renovation-process-header h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.about-page .renovation-process-header p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--secondary-color);
    margin: 0;
}

.about-page .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-page .process-card {
    position: relative;
    background: var(--white);
    padding: 28px 22px 26px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 8px 24px rgba(26, 32, 44, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-page .process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 32, 44, 0.12);
    border-color: rgba(229, 62, 62, 0.25);
}

.about-page .process-step {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    color: rgba(229, 62, 62, 0.2);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.about-page .process-card:hover .process-step {
    color: rgba(229, 62, 62, 0.45);
}

.about-page .process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1) 0%, rgba(229, 62, 62, 0.04) 100%);
    border-radius: 10px;
    color: var(--accent-color);
}

.about-page .process-icon svg {
    width: 22px;
    height: 22px;
}

.about-page .process-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.35;
}

.about-page .process-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--secondary-color);
    margin: 0;
}

.about-page .about-actions {
    margin-top: 40px;
}

.about-page .about-btn {
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
    transition: all 0.3s ease;
}

.about-page .about-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.25);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent-color);
    padding: 15px 40px;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 30px;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* Services Preview */
.services-preview {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(247,250,252,0.95));
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26,32,44,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(226,232,240,0.8);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(229,62,62,0.25), rgba(74,85,104,0.18));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 40px rgba(26,32,44,0.18);
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.25) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 24px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 20px 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.btn-link {
    display: inline-block;
    padding: 0 20px 20px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.btn-link:hover {
    color: #c53030;
    transform: translateX(4px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 17px;
    font-weight: 400;
    opacity: 0.92;
    letter-spacing: 0.01em;
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--light-bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb .separator {
    color: var(--secondary-color);
    opacity: 0.5;
    font-size: 16px;
}

.breadcrumb .current {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 13px;
}

/* Product Categories */
.product-categories {
    background: var(--light-bg);
    padding: 40px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-tab {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--secondary-color);
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(26, 32, 44, 0.05);
}

.category-tab:hover {
    border-color: rgba(229, 62, 62, 0.6);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: var(--white);
    font-weight: 500;
    border-color: #e53e3e;
    box-shadow: 0 6px 18px rgba(229, 62, 62, 0.28);
}

/* Products Section */
.products-section {
    padding: 32px 0 60px;
}

.products-section.has-subcategory-tabs {
    padding-top: 60px;
}

.product-subcategory-tabs {
    margin-bottom: 40px;
}

.product-subcategory-tabs[hidden] {
    display: none !important;
    margin: 0;
}

.product-subcategory-tabs .category-tab {
    text-decoration: none;
    display: inline-block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.product-card {
    position: relative;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26, 32, 44, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(229,62,62,0.08), transparent 35%),
                radial-gradient(circle at 80% 0%, rgba(74,85,104,0.08), transparent 30%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 32, 44, 0.1);
    border-color: rgba(229, 62, 62, 0.2);
}

.product-card:hover::after {
    opacity: 1;
}

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-info {
    padding: 14px 16px 16px;
    border-top: 1px solid rgba(226, 232, 240, 0.7);
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.product-info h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.product-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #475569;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    padding: 3px 10px;
    border-radius: 5px;
    margin-top: 2px;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.product-info p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--secondary-color);
    margin-bottom: 0;
    margin-top: 6px;
}

/* Product Search */
.product-search-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 40px;
    padding: 0 4px;
}

.product-search-input {
    flex: 0 1 auto;
    width: 100%;
    max-width: 320px;
    padding: 12px 16px 12px 40px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-color);
    border: 2px solid rgba(226, 232, 240, 0.9);
    border-radius: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.product-search-input:hover {
    border-color: rgba(148, 163, 184, 0.5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
}

.product-search-input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    background: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 18px;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15), 0 4px 12px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.product-search-input::placeholder {
    color: rgba(148, 163, 184, 0.7);
    font-weight: 400;
}

.search-results-count {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.search-results-count:empty {
    display: none;
}

/* Pagination */
.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
    padding: 30px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.pagination-container[hidden] {
    display: none !important;
}

.pagination-btn {
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 2px solid rgba(226, 232, 240, 0.9);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.04);
    letter-spacing: 0.01em;
}

.pagination-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-color: #4f46e5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25), 0 3px 10px rgba(99, 102, 241, 0.15);
}

.pagination-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-number {
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.pagination-number:hover:not(.active) {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pagination-number.active {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    border-color: #4f46e5;
    font-weight: 700;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3), 0 3px 10px rgba(99, 102, 241, 0.2);
    position: relative;
}

.pagination-number.active::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(79, 70, 229, 0.1));
    z-index: -1;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.pagination-number:active {
    transform: translateY(0) scale(0.98);
}

.pagination-ellipsis {
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(100, 116, 139, 0.6);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Gallery Grid */
.gallery-section {
    padding: 60px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26,32,44,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: var(--light-bg);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(26,32,44,0.18);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 32, 44, 0) 0%,
        rgba(26, 32, 44, 0.5) 50%,
        rgba(26, 32, 44, 0.9) 100%
    );
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    padding: 25px;
    color: var(--white);
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.gallery-info p {
    font-size: 14px;
    opacity: 0.95;
    margin: 0;
    letter-spacing: 0.2px;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(165deg, #151a23 0%, #1a202c 48%, #111827 100%);
    color: var(--white);
    padding: 72px 0 28px;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 35%, rgba(229, 62, 62, 0.35) 65%, transparent 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(229, 62, 62, 0.07) 0%, transparent 68%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 48px 36px;
    margin-bottom: 48px;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-heading);
}

.footer-section:first-child h3 {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.45;
    margin-bottom: 16px;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.96);
}

.footer-section:first-child p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    max-width: 340px;
}

.footer-section h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-section p {
    line-height: 1.75;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.55;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.footer-contact-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.footer-contact li > a {
    flex: 1;
    min-width: 0;
}

.footer-contact li > span:not(.footer-contact-icon) {
    flex: 1;
    min-width: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.42);
    letter-spacing: 0.03em;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Dropdown Navigation */
.nav-menu .dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 30px rgba(26,32,44,0.15);
    border-radius: 8px;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color) !important;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    font-weight: 600;
    font-size: 14px;
}

.dropdown-content a::after {
    display: none !important;
}

.dropdown-content a:hover {
    background: var(--light-bg);
    color: var(--accent-color) !important;
    transform: translateX(0.5px);
}

/* Mobile dropdown */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: var(--light-bg);
        margin-top: 0;
        padding: 0;
        opacity: 1;
        transform: none;
    }
    
    .dropdown-content a {
        padding: 10px 20px 10px 40px;
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 56px 0 48px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .hero-main,
    .hero-aside {
        height: auto;
        min-height: 0;
    }

    .hero-description {
        flex: none;
    }

    .hero-cards {
        margin-top: 0;
    }

    .hero-showcase {
        flex: none;
        aspect-ratio: 16 / 10;
    }

    .hero-main {
        padding: 24px;
    }

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

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-showcase {
        aspect-ratio: 16 / 10;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .about-stats {
        flex-direction: column;
        gap: 30px;
    }

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

    .about-page .about-story-visual {
        min-height: 280px;
    }

    .about-page .about-story-content {
        padding: 32px 28px;
    }

    .about-page .about-goal-panel {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 28px;
    }

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

    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .product-search-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-bottom: 32px;
    }

    .product-search-input {
        max-width: 100%;
        padding: 14px 20px 14px 44px;
        font-size: 14px;
        background-size: 18px;
        background-position: 14px center;
    }

    .search-results-count {
        text-align: center;
        font-size: 13px;
        padding: 6px 14px;
    }

    .pagination-container {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 50px;
        padding: 20px 12px;
        border-radius: 12px;
    }

    .pagination-btn {
        padding: 10px 18px;
        font-size: 13px;
        font-weight: 600;
    }

    .pagination-numbers {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }

    .pagination-number {
        min-width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .pagination-number.active::before {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-image {
        height: 280px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
    }

    .footer-section:first-child p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 44px 0 24px;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-cards {
        grid-template-columns: 1fr;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-main {
        padding: 20px;
    }

    .hero-showcase {
        flex: none;
        aspect-ratio: 4 / 3;
    }

    section {
        padding: 50px 0;
    }

    .about-page .about-story-content h2 {
        font-size: 22px;
    }

    .about-page .about-story-content {
        padding: 28px 20px;
    }

    .about-page .about-goal-panel {
        padding: 28px 20px;
    }

    .about-page .about-goal-header h3 {
        font-size: 20px;
    }

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

    .about-page .renovation-process-header h2 {
        font-size: 24px;
    }

    .product-search-input {
        padding: 12px 16px 12px 40px;
        font-size: 13px;
        background-size: 16px;
        background-position: 12px center;
        border-radius: 10px;
    }

    .search-results-count {
        font-size: 12px;
        padding: 5px 12px;
    }

    .pagination-container {
        gap: 8px;
        padding: 16px 8px;
    }

    .pagination-btn {
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 8px;
    }

    .pagination-number {
        min-width: 34px;
        height: 34px;
        font-size: 12px;
        border-radius: 8px;
    }

    .pagination-numbers {
        gap: 5px;
    }

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

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

    .gallery-image {
        height: 250px;
    }

    .footer {
        padding: 56px 0 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 36px;
    }

    .footer-section:first-child h3 {
        font-size: 16px;
    }
}