/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #AB2917;
    --primary-dark: #8A1F12;
    --secondary-color: #FF6B35;
    --text-dark: #2B2D42;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #E9ECEF;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-img {
    width: auto;
    height: 70px;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 17.25px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.btn-shop {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.nav-link.btn-shop:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 140, 90, 0.05) 50%, rgba(255, 255, 255, 1) 100%);
    padding: 6rem 0;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(171, 41, 23, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.375rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(171, 41, 23, 0.25),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(171, 41, 23, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.hero-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.hero-card-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.hero-card-text a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.hero-card-text a:hover {
    opacity: 0.85;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(171, 41, 23, 0.3);
}

/* Ensure any nested text/icons stay readable when buttons turn red on hover */
.btn-primary:hover * ,
.btn-secondary:hover * {
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(171, 41, 23, 0.1);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(171, 41, 23, 0.3);
    border-color: var(--primary-color);
}

/* If a button link is inside a .content-section, keep button hover text white (override generic link hover) */
.content-section a.btn.btn-primary:hover,
.content-section a.btn.btn-secondary:hover {
    color: var(--white);
    text-decoration: none;
}

/* Main Content */
.main-content {
    padding: 2rem 0 4rem;
}

.agates-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 24px;
    margin: 3rem 0;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 750px;
    line-height: 1.7;
    font-weight: 400;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    width: 100%;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    background-color: var(--bg-light);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFE5D9 0%, #FFB88C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 0.875rem;
    text-align: center;
    padding: 1rem;
}

/* Gallery Lightbox */
body.lightbox-open {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.86);
    z-index: 10000;
    padding: 1.5rem 1rem;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-dialog {
    position: relative;
    width: min(92vw, 1100px);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.lightbox-img {
    max-width: 100%;
    max-height: 78vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 75ch;
    padding: 0 1rem;
}

.lightbox-btn {
    appearance: none;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-btn:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.04);
}

.lightbox-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.75);
    outline-offset: 2px;
}

.lightbox-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.5rem;
    line-height: 1;
}

.lightbox-prev {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.75rem;
    line-height: 1;
}

.lightbox-next {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.75rem;
    line-height: 1;
}

/* Content Text */
.content-text {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: left;
}

.content-paragraph {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.content-paragraph:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer-center {
    display: flex;
    flex-direction: column;
}

.footer-nav {
    margin-bottom: 2rem;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.footer-nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: block;
}

.footer-nav-link:hover {
    color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.footer-logo .logo-img {
    height: 70px;
    width: auto;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.footer .btn-primary {
    margin-bottom: 2rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.payment-icon {
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 0.5rem 1rem;
    background-color: var(--white);
    border-radius: 4px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-icon i {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.payment-icon span {
    display: inline-block;
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* VIP Signup */
.vip-signup {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vip-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.vip-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.vip-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vip-input {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.vip-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-vip {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-vip:hover {
    background-color: #1a1c2e;
}

/* Page Header (for About, FAQs, etc.) */
.page-header {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.page-content.about-page {
    max-width: 1100px;
}

/* About Page Enhancements */
.about-hero {
    margin-bottom: 4rem;
    padding: 0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.25rem;
    align-items: center;
    padding: 2.25rem;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(171, 41, 23, 0.06) 0%, rgba(255, 255, 255, 1) 60%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.about-hero-text h2 {
    margin-top: 0;
}

.about-hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.about-hero-media {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
    background: var(--bg-light);
}

.about-hero-media img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.about-split {
    padding-top: 0;
}

.about-split-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: center;
}

.about-split-media {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.06) 0%, rgba(255, 255, 255, 1) 70%);
}

.about-split-media img {
    width: 100%;
    height: auto;
    max-width: 320px;
    display: block;
}

.about-two-up {
    padding-top: 0;
}

.about-two-up-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.about-card {
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.about-card h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.content-section {
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.content-section:first-of-type {
    padding-top: 0;
}

.content-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Keep primary CTA buttons white even inside .content-section (generic link styles can override otherwise) */
.content-section a.btn.btn-primary,
.cta-section a.btn.btn-primary {
    color: var(--white);
    text-decoration: none;
}

.content-section a.btn.btn-primary *,
.cta-section a.btn.btn-primary * {
    color: var(--white);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(171, 41, 23, 0.2);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0;
    transition: color 0.3s ease;
}

.feature-item:hover h3 {
    color: var(--primary-dark);
}

.feature-item p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: var(--text-light);
}

/* FAQ Preview Section */
.faq-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-preview-item {
    padding: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 107, 53, 0.02) 100%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-preview-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.faq-preview-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-preview-item:hover {
    box-shadow: 0 12px 35px rgba(171, 41, 23, 0.15);
    transform: translateY(-8px);
    border-color: rgba(171, 41, 23, 0.3);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.faq-preview-item:hover::before {
    transform: scaleX(1);
}

.faq-preview-item:hover::after {
    opacity: 1;
}

.faq-preview-item h3 {
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.faq-preview-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* About Agates Section */
.about-agates-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.about-agates-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-agates-header .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.about-agates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-agates-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-agates-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-agates-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(171, 41, 23, 0.15);
    border-color: rgba(171, 41, 23, 0.3);
}

.about-agates-card:hover::before {
    transform: scaleX(1);
}

.about-agates-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.about-agates-card:hover .about-agates-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-agates-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-agates-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* Intro Section */
.intro-section {
    background-color: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 3px solid var(--primary-color);
}

.intro-section p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--text-light);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.blog-card-image {
    text-decoration: none;
    color: inherit;
}

.blog-card-image:focus-visible {
    outline: 3px solid rgba(171, 41, 23, 0.55);
    outline-offset: 3px;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
}

.blog-title a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.blog-title a:focus-visible {
    outline: 3px solid rgba(171, 41, 23, 0.55);
    outline-offset: 3px;
    border-radius: 4px;
}

.blog-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.blog-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 50%, #FFB88C 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-image-placeholder {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    padding: 0 2rem;
    padding-top: 1.5rem;
}

.blog-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    padding: 0 2rem;
}

.btn-read {
    align-self: flex-start;
    margin: 0 2rem 2rem;
    margin-top: auto;
}

/* Blog Post Page Styles */
.blog-post {
    max-width: 800px;
    margin: 2rem auto 4rem;
    padding: 0 1rem;
}

.blog-post-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.back-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-meta {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

.blog-post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-intro {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.blog-post-featured {
    margin: 0 0 2rem 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.blog-post-featured img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Related Posts (Blog Post Pages) */
.related-posts {
    margin-top: 3rem;
    padding: 2.25rem;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(171, 41, 23, 0.05) 0%, rgba(255, 255, 255, 1) 70%);
}

.related-posts-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.related-posts-grid {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.related-post-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
}

.related-post-image {
    display: block;
    height: 140px;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 50%, #FFB88C 100%);
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-image:focus-visible {
    outline: 3px solid rgba(171, 41, 23, 0.55);
    outline-offset: 3px;
}

.related-post-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 50%, #FFB88C 100%);
}

.related-post-title {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: 700;
}

.related-post-link {
    color: var(--text-dark);
    text-decoration: none;
}

.related-post-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.related-post-link:focus-visible {
    outline: 3px solid rgba(171, 41, 23, 0.55);
    outline-offset: 3px;
    border-radius: 6px;
}

.related-post-excerpt {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.975rem;
    flex-grow: 1;
}

.related-post-cta {
    align-self: flex-start;
    margin-top: 0.25rem;
}

@media (max-width: 968px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .related-posts {
        padding: 1.5rem;
    }
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-content {
        font-size: 1rem;
    }
    
    .blog-post-content h2 {
        font-size: 1.75rem;
    }
    
    .blog-post-content h3 {
        font-size: 1.25rem;
    }
    
    .blog-post-footer {
        flex-direction: column;
    }
    
    .blog-post-footer .btn {
        width: 100%;
    }
}

/* FAQ Styles */
.faq-categories-nav {
    margin: 1.75rem 0 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 90, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-categories-nav .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.2);
}

.category-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.faq-item {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.faq-item.hidden {
    display: none;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

.faq-question-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

.faq-question-btn:hover {
    background-color: rgba(255, 107, 53, 0.05);
}

.faq-question-btn[aria-expanded="true"] {
    background-color: rgba(255, 107, 53, 0.08);
}

.faq-question-btn[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 2.5rem;
    text-align: center;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer .btn {
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-top: 3rem;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section .btn {
    margin: 1.5rem 0;
}

.signature {
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-light);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-top.visible {
    display: flex;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-right {
        justify-content: center;
    }
    
    .hero-card {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-center {
        order: 2;
    }
    
    .footer-right {
        order: 3;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        padding: 1.75rem;
    }

    .about-split-grid {
        grid-template-columns: 1fr;
    }

    .about-split-media img {
        max-width: 260px;
    }

    .about-two-up-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-list.active {
        transform: translateX(0);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .faq-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .faq-preview-item {
        padding: 1.5rem;
    }
    
    .about-agates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-agates-section {
        padding: 2.5rem 1.5rem;
    }
    
    .faq-categories-nav {
        padding: 1.15rem;
        margin: 1.25rem 0 1.75rem;
    }
    
    .faq-categories-nav .section-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .category-buttons {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .faq-question {
        font-size: 1.125rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card-image {
        height: 180px;
    }
    
    .blog-title {
        font-size: 1.25rem;
        padding: 0 1.5rem;
        padding-top: 1.25rem;
    }
    
    .blog-excerpt {
        padding: 0 1.5rem;
    }
    
    .btn-read {
        margin: 0 1.5rem 1.5rem;
    }
    
    .faq-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-preview-item {
        padding: 1.25rem;
    }
    
    .about-agates-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .about-agates-section {
        padding: 2rem 1rem;
    }
    
    .about-agates-card {
        padding: 1.75rem;
    }
    
    .about-agates-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.6rem;
    }
    
    .content-paragraph {
        font-size: 1rem;
    }
    
    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        margin-bottom: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.25rem;
    }
    
    .faq-categories-nav {
        padding: 1.25rem;
        margin: 1.5rem 0 2rem;
    }
    
    .faq-categories-nav .section-title {
        font-size: 1.25rem;
    }
    
    .category-buttons {
        gap: 0.75rem;
    }
    
    .category-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .faq-item {
        border-radius: 10px;
    }
    
    .faq-question-btn {
        padding: 1.25rem 1.5rem;
        gap: 0.75rem;
    }
    
    .faq-icon {
        font-size: 1.25rem;
        width: 2rem;
    }
    
    .faq-question {
        font-size: 1.125rem;
    }
    
    .faq-answer {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.5rem;
    }

    .lightbox-btn {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        display: none;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-title {
        font-size: 1.125rem;
    }
    
    .blog-excerpt {
        font-size: 0.9375rem;
    }
}

