/* ==========================================================================
   MAIN STYLESHEET - Premium Roofing & Sheet Metal Architecture Website
   ==========================================================================
   HOW TO EDIT COLORS:
   - Look for the :root section below
   - Change the color values there to update colors site-wide
   ========================================================================== */

/* --------------------------------------------------------------------------
   TYPOGRAPHY - System fonts only (no CDN, no external dependencies)
   We use Georgia for elegant serif headings and the system sans-serif stack
   for body text. These fonts are available on all devices without loading.
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   CSS VARIABLES (Design Tokens)
   Change these values to update the entire site's colors at once
   -------------------------------------------------------------------------- */
:root {
    /* === MAIN COLORS - CHANGE HERE TO UPDATE SITE COLORS === */
    --color-black:        #0c0c0c;
    --color-dark:         #1a1a1a;        /* Main dark background */
    --color-dark-mid:     #252525;        /* Slightly lighter dark */
    --color-dark-card:    #2a2a2a;        /* Dark card background */
    --color-grey-dark:    #4a4a4a;
    --color-grey:         #6b7280;
    --color-grey-light:   #9ca3af;
    --color-grey-subtle:  #d1d5db;
    --color-border:       #e5e7eb;
    --color-light:        #f8f8f6;        /* Off-white background */
    --color-white:        #ffffff;
    --color-accent:       #8a9fb0;        /* Metallic blue-grey accent */
    --color-accent-light: #c4d0da;        /* Lighter accent */
    --color-gold:         #a8894a;        /* Premium gold accent for headings */

    /* === TYPOGRAPHY - SYSTEM FONTS ONLY, NO EXTERNAL LOADING === */
    --font-heading: Georgia, 'Times New Roman', serif;
    --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Arial, sans-serif;

    /* === SPACING & LAYOUT === */
    --nav-height:       72px;
    --section-padding:  90px;
    --container-max:    1200px;
    --gap-cards:        24px;
    --border-radius:    3px;

    /* === TRANSITIONS === */
    --transition-fast:  0.2s ease;
    --transition-base:  0.3s ease;
    --transition-slow:  0.5s ease;

    /* === SHADOWS === */
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
    --shadow-md:   0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg:   0 8px 32px rgba(0,0,0,0.16);
    --shadow-dark: 0 4px 24px rgba(0,0,0,0.5);
}

/* --------------------------------------------------------------------------
   CSS RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove default list styles */
ul, ol { list-style: none; }

/* Make images responsive by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Clean links */
a {
    color: inherit;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY SCALE
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-grey-dark);
}

/* --------------------------------------------------------------------------
   UTILITY CLASSES
   -------------------------------------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

/* Text alignment */
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* Background colors for sections */
.bg-dark  { background-color: var(--color-dark); }
.bg-light { background-color: var(--color-light); }
.bg-white { background-color: var(--color-white); }

/* Text colors */
.text-white      { color: var(--color-white); }
.text-grey-light { color: var(--color-grey-light); }
.text-gold       { color: var(--color-gold); }

/* Section label / eyebrow text above headings */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

/* Decorative line under section heading */
.section-divider {
    width: 48px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 20px auto 0;
}

.section-divider.left {
    margin: 20px 0 0;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    border-radius: var(--border-radius);
    text-decoration: none;
}

/* Primary button - light on dark backgrounds */
.btn-primary {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.btn-primary:hover {
    background-color: var(--color-grey-subtle);
    transform: translateY(-1px);
    box-shadow: var(--shadow-dark);
}

/* Secondary/outline button */
.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--color-white);
    transform: translateY(-1px);
}

/* Dark button for light backgrounds */
.btn-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.btn-dark:hover {
    background-color: var(--color-dark-mid);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    /* Starts transparent over hero - JS adds .scrolled class */
    background-color: transparent;
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

/* When user scrolls down - JS adds this class */
.site-header.scrolled {
    background-color: var(--color-dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Header is always dark on inner pages (non-hero pages) */
.site-header.header-dark {
    background-color: var(--color-dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* === LOGO / COMPANY NAME ===
   Change the company name in the HTML, not here
   Look for <a class="nav-logo"> in each HTML file */
.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-logo span {
    color: var(--color-accent-light);
}

/* Navigation links list */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--color-accent-light);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

/* Contact button in nav */
.nav-cta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-white);
    background-color: var(--color-accent);
    padding: 10px 22px;
    border-radius: var(--border-radius);
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.nav-cta:hover {
    background-color: var(--color-accent-light);
    color: var(--color-dark);
    transform: translateY(-1px);
}

/* Hamburger menu button - hidden on desktop, shown on mobile */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-base);
}

/* Mobile nav open state */
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile navigation dropdown */
.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 999;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0.03em;
    transition: color var(--transition-fast);
}

.nav-mobile a:hover { color: var(--color-white); }

.nav-mobile .nav-cta {
    margin-top: 8px;
    text-align: center;
    padding: 14px;
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;

    /* === CHANGE HERO BACKGROUND IMAGE HERE ===
       Replace the gradient with your actual image:
       background-image: url('../images/hero-background.jpg');
       Keep the gradient as a fallback or overlay */
    background-image:
        linear-gradient(
            160deg,
            rgba(10, 12, 16, 0.92) 0%,
            rgba(20, 25, 35, 0.88) 40%,
            rgba(30, 38, 50, 0.85) 100%
        ),
        linear-gradient(
            135deg,
            #0f0f14 0%,
            #1a1f2e 35%,
            #0d1117 70%,
            #0a0c10 100%
        );
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Subtle metallic texture overlay on hero */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.012) 0px,
            rgba(255,255,255,0.012) 1px,
            transparent 1px,
            transparent 80px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,0.008) 0px,
            rgba(255,255,255,0.008) 1px,
            transparent 1px,
            transparent 80px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 0 24px;
    padding-top: var(--nav-height);
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid rgba(196, 208, 218, 0.3);
    border-radius: 2px;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 24px;
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    line-height: 1.15;
}

.hero h1 span {
    color: var(--color-accent-light);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.7);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator arrow at bottom of hero */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
}

.hero-scroll svg {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Hero with background image class */
.hero-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* --------------------------------------------------------------------------
   PAGE BANNER (for inner pages - not homepage)
   -------------------------------------------------------------------------- */
.page-banner {
    background-color: var(--color-dark);
    padding: 120px 0 60px;
    text-align: center;

    /* === CHANGE PAGE BANNER BACKGROUND IMAGE HERE ===
       background-image: url('../images/banner-bg.jpg');
       background-size: cover; */
    background-image: linear-gradient(135deg, #1a1a1a 0%, #252535 50%, #1a1a1a 100%);
}

.page-banner h1 {
    color: var(--color-white);
    margin-bottom: 12px;
}

.page-banner p {
    color: var(--color-grey-light);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.03em;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--color-white); }

/* --------------------------------------------------------------------------
   SECTION HEADERS (reusable)
   -------------------------------------------------------------------------- */
.section-header {
    margin-bottom: 56px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    max-width: 560px;
}

.section-header.center p {
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   ABOUT / INTRO SECTION (dvigubas valcas explainer on homepage)
   -------------------------------------------------------------------------- */
.intro-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-white);
}

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

.intro-image {
    position: relative;
}

/* === CHANGE INTRO IMAGE HERE ===
   Add src="images/your-image.jpg" to the <img> tag in this section */
.intro-image img,
.intro-image .img-placeholder {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

/* Placeholder shown when image is missing */
.img-placeholder {
    background: linear-gradient(135deg, #2d3241 0%, #3a4257 50%, #2a3040 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

/* Decorative frame behind image */
.intro-image::after {
    content: none;
    position: absolute;
    top: 20px;
    left: -20px;
    right: 20px;
    bottom: -20px;
    border: 2px solid var(--color-accent);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.3;
}

.intro-text h2 {
    margin-bottom: 20px;
}

.intro-text p {
    margin-bottom: 20px;
}

.intro-text p:last-of-type {
    margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   BENEFITS / WHY CHOOSE SECTION
   -------------------------------------------------------------------------- */
.benefits-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

/* Subtle diagonal stripes background on dark sections */
.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.015) 0px,
        rgba(255,255,255,0.015) 1px,
        transparent 1px,
        transparent 40px
    );
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--gap-cards);
    margin-top: 56px;
}

.benefit-card {
    padding: 36px 28px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius);
    transition: border-color var(--transition-base), transform var(--transition-base);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    border-color: rgba(138, 159, 176, 0.4);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
    /* Using emoji icons - replace with SVG icons if preferred */
}

.benefit-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--color-white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.benefit-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   PRODUCT CATEGORIES CARDS (homepage)
   -------------------------------------------------------------------------- */
.categories-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--gap-cards);
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-decoration: none;
    display: block;
    background-color: var(--color-dark-card);
}

/* === CHANGE CATEGORY CARD IMAGES HERE ===
   Add background-image: url('../images/category-name.jpg') to each card's img element */
.category-card-image {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

/* Placeholder background for category cards */
.category-card-image.placeholder-kraigai {
    background: linear-gradient(160deg, #1e2832 0%, #2a3545 60%, #1a2028 100%);
    min-height: 200px;
}
.category-card-image.placeholder-pakalimai {
    background: linear-gradient(160deg, #1a1f26 0%, #2e3540 60%, #1c2228 100%);
    min-height: 200px;
}
.category-card-image.placeholder-parapetai {
    background: linear-gradient(160deg, #21262e 0%, #323a45 60%, #1e2530 100%);
    min-height: 200px;
}
.category-card-image.placeholder-stogai {
    background: linear-gradient(160deg, #1c2028 0%, #28303e 60%, #191e26 100%);
    min-height: 200px;
}

.category-card:hover .category-card-image {
    transform: scale(1.05);
}

.category-card-body {
    padding: 24px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.7) 50%,
        rgba(0,0,0,0) 100%
    );
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.category-card-body h3 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.category-card-body p {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    line-height: 1.5;
}

.category-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    transition: gap var(--transition-fast);
}

.category-card:hover .category-card-arrow {
    gap: 10px;
}

/* --------------------------------------------------------------------------
   GALLERY PREVIEW (homepage teaser)
   -------------------------------------------------------------------------- */
.gallery-preview-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-white);
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 48px;
}

/* === CHANGE GALLERY PREVIEW IMAGES HERE ===
   Replace src="images/..." in the gallery preview section of index.html */
.gallery-preview-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.gallery-preview-item img,
.gallery-preview-item .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-preview-item:hover img,
.gallery-preview-item:hover .img-placeholder {
    transform: scale(1.05);
}

/* Feature image - first item is bigger */
.gallery-preview-grid .gallery-preview-item:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

/* --------------------------------------------------------------------------
   CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(138,159,176,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   ABOUT PAGE - CONTENT BLOCKS
   -------------------------------------------------------------------------- */
.about-content {
    padding: var(--section-padding) 0;
}

.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

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

/* Alternate image position for every other block */
.about-block.reverse {
    direction: rtl;
}
.about-block.reverse > * {
    direction: ltr;
}

.about-block-image img,
.about-block-image .img-placeholder {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.about-block-text h3 {
    margin-bottom: 16px;
    color: var(--color-dark);
}

.about-block-text p {
    margin-bottom: 16px;
}

/* Features list inside about blocks */
.feature-list {
    margin-top: 24px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
    color: var(--color-grey-dark);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
    content: '—';
    color: var(--color-gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: var(--section-padding) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--section-padding);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-grey);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   GALLERY PAGE
   -------------------------------------------------------------------------- */
.gallery-page {
    padding: 60px 0 var(--section-padding);
}

/* Category filter buttons */
.gallery-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.filter-btn {
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-grey);
    cursor: pointer;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
}

/* Gallery category section */
.gallery-category-section {
    margin-bottom: 72px;
}

.gallery-category-section:last-child {
    margin-bottom: 0;
}

.gallery-category-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-dark);
}

.gallery-category-header h2 {
    font-size: 1.8rem;
}

.gallery-category-header .project-count {
    font-size: 0.8rem;
    color: var(--color-grey-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Individual project within a category */
.project-block {
    margin-bottom: 48px;
}

.project-block:last-child {
    margin-bottom: 0;
}

.project-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--color-border);
}

/* Grid of photos within a project */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

/* ============================================================
   SIMPLIFIED GALLERY IMAGES
   Just add <img> tags directly inside .project-gallery.
   No wrapper divs needed. Each img gets hover effect automatically.
   ============================================================ */

/* === CHANGE PROJECT IMAGES ===
   Replace src="images/..." on each <img> tag in galerija.html */
.project-gallery > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    border-radius: var(--border-radius);
    background-color: var(--color-dark-card); /* Shows while loading */
    transition: opacity var(--transition-base), box-shadow var(--transition-base);
}

.project-gallery > img:hover {
    opacity: 0.80;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}

/* Image that failed to load (JS adds this class on error) */
.project-gallery > img.broken {
    opacity: 0.08;
    cursor: default;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   LIGHTBOX
   -------------------------------------------------------------------------- */
#lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#lightbox-overlay.active {
    display: flex;
}

.lightbox-container {
    position: relative;
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast), transform var(--transition-fast);
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--color-white);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-white);
    font-size: 1.5rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

#lightbox-prev { left: 16px; }
#lightbox-next { right: 16px; }

.lightbox-footer {
    margin-top: 16px;
    text-align: center;
}

#lightbox-caption {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

#lightbox-counter {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-page {
    padding: var(--section-padding) 0;
}

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

/* Contact info card */
.contact-info {
    background-color: var(--color-dark);
    padding: 48px;
    border-radius: var(--border-radius);
}

.contact-info h3 {
    color: var(--color-white);
    margin-bottom: 32px;
    font-size: 1.4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item-text .label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 4px;
}

/* === CHANGE PHONE, EMAIL, ADDRESS IN index.html AND kontaktai.html ===
   Look for the contact-item elements and update the text there */
.contact-item-text .value {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
}

.contact-item-text .value a {
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.contact-item-text .value a:hover {
    color: var(--color-accent-light);
}

/* Contact Form */
.contact-form-wrap h3 {
    margin-bottom: 8px;
}

.contact-form-wrap > p {
    margin-bottom: 32px;
    color: var(--color-grey);
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-grey-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-dark);
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(138, 159, 176, 0.15);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 0.9rem;
}

/* Form success message */
.form-success {
    display: none;
    padding: 16px 20px;
    background-color: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: var(--border-radius);
    color: #065f46;
    font-size: 0.95rem;
    margin-top: 16px;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-black);
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* === CHANGE FOOTER COMPANY INFO ===
   Find the footer section in each HTML file and update text there */
.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-brand .footer-contact {
    margin-top: 24px;
}

.footer-brand .footer-contact p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
}

.footer-brand .footer-contact a {
    color: var(--color-accent-light);
    transition: color var(--transition-fast);
}

.footer-brand .footer-contact a:hover {
    color: var(--color-white);
}

.footer-col h5 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 16px;
    flex-wrap: wrap;
}

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

/* --------------------------------------------------------------------------
   COMPARISON SECTION (apie.html — tradicinis vs click tipo valcas)
   -------------------------------------------------------------------------- */

.about-intro-text {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
}

.about-intro-text p {
    font-size: 1.1rem;
    color: var(--color-grey-dark);
    line-height: 1.8;
}

.about-transition {
    text-align: center;
    margin: 72px 0 56px;
    padding-top: 56px;
    border-top: 1px solid var(--color-border);
}

.about-transition h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-dark);
    margin-bottom: 16px;
}

.about-transition p {
    color: var(--color-grey);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.comparison-section {
    margin-bottom: 0;
    padding-bottom: 0;
}

.comparison-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.comparison-section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.comparison-section-header p {
    color: var(--color-grey);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.comparison-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.comparison-photo-col {
    display: flex;
    flex-direction: column;
}

.comparison-photo-col .comparison-img img,
.comparison-photo-col .comparison-img .img-placeholder {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.comparison-col-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.badge-premium {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.badge-standard {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.comparison-col-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.comparison-col-desc {
    font-size: 0.95rem;
    color: var(--color-grey-dark);
    line-height: 1.7;
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 40px;
    font-size: 0.95rem;
}

.comparison-table th {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 14px 20px;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-grey-dark);
    vertical-align: top;
    line-height: 1.5;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
    background-color: var(--color-light);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--color-dark);
    white-space: nowrap;
}

.comparison-table td.td-winner {
    color: var(--color-dark);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   RESPONSIVE - TABLET (max 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 64px;
        --gap-cards: 20px;
    }

    .intro-grid {
        gap: 48px;
    }

    .about-block {
        gap: 40px;
    }

    .contact-grid {
        gap: 48px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .stats-row {
        gap: 16px;
    }
}

/* --------------------------------------------------------------------------
   RESPONSIVE - MOBILE (max 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --section-padding: 52px;
        --nav-height: 64px;
    }

    /* Hide desktop nav links, show hamburger */
    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    /* Hero adjustments */
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Stack grids to single column */
    .intro-grid,
    .about-block,
    .about-block.reverse,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }

    /* Hide decorative image frame on mobile */
    .intro-image::after {
        display: none;
    }

    /* Gallery preview 2 columns on mobile */
    .gallery-preview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-preview-grid .gallery-preview-item:first-child {
        grid-row: auto;
    }

    /* Footer single column */
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

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

    /* Contact info padding */
    .contact-info {
        padding: 32px 24px;
    }

    /* Stats row 3 columns still, but smaller */
    .stats-row {
        padding: 40px 0;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    /* Form row stack */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Comparison section */
    .comparison-photos {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .comparison-table td:first-child {
        white-space: normal;
    }

    /* Lightbox nav buttons */
    #lightbox-prev { left: 8px; }
    #lightbox-next { right: 8px; }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Project gallery: 2 columns on tablet/small screens */
    .project-gallery {
        grid-template-columns: 1fr 1fr;
    }

    /* Gallery filter scroll */
    .gallery-filter {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 12px;
    }

    .filter-btn {
        white-space: nowrap;
    }
}

/* --------------------------------------------------------------------------
   RESPONSIVE - SMALL MOBILE (max 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

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

    /* Project gallery: 1 column on small phones */
    .project-gallery {
        grid-template-columns: 1fr;
    }

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

    .stats-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* --------------------------------------------------------------------------
   ANIMATIONS & SCROLL EFFECTS
   -------------------------------------------------------------------------- */
/* Fade in from below on scroll - JS adds .visible class */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for grid items */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* --------------------------------------------------------------------------
   MISCELLANEOUS
   -------------------------------------------------------------------------- */
/* Horizontal divider line */
.hr-line {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 40px 0;
}

.hr-line.dark {
    border-color: rgba(255,255,255,0.08);
}

/* Quote / highlight block */
.highlight-block {
    border-left: 3px solid var(--color-gold);
    padding: 20px 24px;
    background-color: var(--color-light);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 24px 0;
}

.highlight-block p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-grey-dark);
}

/* Skip to main content - accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    padding: 8px 16px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 0.875rem;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* Selection color */
::selection {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   GALLERY CATEGORY OVERVIEW PAGE (galerija.html)
   Grid of category cards with image preview, title, count, and link
   -------------------------------------------------------------------------- */
.gallery-overview {
    padding: var(--section-padding) 0;
    background-color: var(--color-white);
}

/* 3-column grid, collapses to 2 then 1 on smaller screens */
.gallery-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

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

@media (max-width: 560px) {
    .gallery-cat-grid {
        grid-template-columns: 1fr;
    }
}

/* Individual category card */
.gallery-cat-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
    text-decoration: none;
    color: inherit;
}

.gallery-cat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--color-accent);
}

/* Preview image mosaic: big image left, two small right */
.gallery-cat-preview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 110px 110px;
    gap: 3px;
    background-color: var(--color-dark-card);
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.gallery-cat-preview img:first-child {
    grid-row: 1 / 3; /* spans both rows */
}

.gallery-cat-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: var(--color-dark-card);
}

/* When a card has only one preview image, it spans all columns */
.gallery-cat-preview.single-img {
    grid-template-columns: 1fr;
    grid-template-rows: 220px;
}

.gallery-cat-preview.single-img img {
    grid-row: 1;
}

/* Card text body */
.gallery-cat-body {
    padding: 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gallery-cat-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-dark);
    margin: 0;
}

.gallery-cat-body .cat-count {
    font-size: 0.82rem;
    color: var(--color-grey);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gallery-cat-body .cat-link {
    margin-top: auto;
    padding-top: 14px;
    font-size: 0.875rem;
    color: var(--color-accent);
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.gallery-cat-card:hover .cat-link {
    color: var(--color-gold);
    gap: 10px;
}

/* "Coming soon" badge on empty categories */
.cat-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background-color: var(--color-dark-card);
    color: var(--color-grey-light);
    padding: 2px 8px;
    border-radius: 2px;
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   CATEGORY SUB-PAGE BACK LINK & HEADER
   -------------------------------------------------------------------------- */
.cat-page-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cat-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--color-grey);
    text-decoration: none;
    transition: color var(--transition-fast);
    padding: 4px 0;
}

.cat-back-link:hover {
    color: var(--color-accent);
}

.cat-back-link::before {
    content: '←';
}

/* Notice banner (reusable) */
.notice-banner {
    background: var(--color-light);
    border-left: 3px solid var(--color-gold);
    padding: 14px 20px;
    margin-bottom: 40px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-size: 0.9rem;
    color: var(--color-grey-dark);
    line-height: 1.6;
}

.notice-banner strong {
    color: var(--color-dark);
}
