:root {
    --royal-green: #248f4b;
    --royal-green-dark: #145d2e;
    --royal-gold: #ecb613;
    --royal-gold-light: #e6c04a;
    --section-light: #f6f9f6;
    --text-dark: #222a26;
    --text-muted: #6d7873;
    --border-color: #dfe8df;
    --accent-bg: #e8f0e8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--royal-green-dark);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: .875rem;
    line-height: 1.25rem;
}

/* Navbar */
.navbar-toggler {
    padding: 0;
    border: 0;
    box-shadow: unset !important;
}

.navbar-royal {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.navbar-royal .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-royal .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--royal-green);
    line-height: 1.2;
}

.navbar-royal .brand-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.navbar-royal .nav-link {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark) !important;
    transition: color 0.3s;
}

.navbar-royal .nav-link:hover,
.navbar-royal .nav-link.active {
    color: var(--royal-green) !important;
}

/* Buttons */
.btn-royal {
    background: var(--royal-green);
    color: #fff;
    padding: .75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: .875rem;
    line-height: 1.25rem;
}

.btn-royal:hover {
    background: var(--royal-green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 138, 78, 0.35);
}

.btn-royal-outline {
    background: transparent;
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #fff;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-royal-outline:hover {
    background: #fff;
    color: var(--royal-green);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 92, 48, 0.75), rgba(20, 60, 30, 0.55));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.hero-content .subtitle {
    color: var(--royal-gold);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-content h2 {
    color: #fff;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content h2 span {
    color: var(--royal-gold);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.125rem;
}

.hero-section .btn-royal {
    font-size: 1rem;
    line-height: 1.5rem;
}

/* Gold accent */
.gold-accent {
    color: var(--royal-gold);
}

.green-accent {
    color: var(--royal-green);
}

/* Stats */
.stats_sec {
    padding: 4rem 0;
}

.stat-card {
    background: #fff;
    border-radius: 8px;
    padding: 28px 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card .stat-icon {
    font-size: 2.2rem;
    color: var(--royal-green);
    margin-bottom: 12px;
}

.stat-card .stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--royal-green);
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Section light */
.section-light {
    background: var(--section-light);
}

/* Section headers */
.section-subtitle {
    color: var(--royal-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25rem;
}

.section-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 8px;
    margin-bottom: 0;
}

/* About tags */
.about_sec {
    padding: 5rem 0;
}

.about_sec .lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.625;
    font-weight: 400;
}

.about-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--accent-bg);
    color: var(--royal-green-dark);
}

/* Product cards */
.product_sec {
    padding: 5rem 0;
}

.product-card {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 24px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 138, 78, 0.12);
}

.product-card .img-wrap {
    overflow: hidden;
    aspect-ratio: 1/1;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 20px;
    text-align: center;
}

.product-card h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* CTA */
.cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 60, 30, 0.82);
}

.cta-section h2 {
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 36rem;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* Why Choose */
.whychoose_sec {
    padding: 5rem 0;
}

.why-card {
    padding: 32px 20px;
    text-align: center;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(45, 138, 78, 0.12);
}

.why-card .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: var(--royal-green);
}

.why-card h4 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.why-card p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--text-muted);
    margin: 0;
}


/* Footer */
.footer-section {
    background: var(--royal-green-dark);
    color: #fff;
}

.footer-section p {
    line-height: 1.625;
    font-size: 1rem;
}

.footer-section h5 {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 1rem;
}

.footer-section a:hover {
    color: #fff;
    opacity: 1;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    margin-right: 8px;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
}

.contect_info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contect_info li svg {
    width: 20px;
    height: 20px;
}

.contect_info p {
    margin-bottom: 0;
    width: 80%;
}

/* Contact */
.contact_sec {
    padding: 5rem 0;
}

.contact-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 12px; */
    margin-right: 15px;
    font-size: 1.4rem;
    color: var(--royal-green);
}

.contact_sec h4 {
    font-size: 1rem;
    font-weight: 700;
}

.contact_sec p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Product Page */
.breadcrumb_wrap .breadcrumb-item {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.breadcrumb_wrap {
    padding: 2px 0;
    border-bottom: 1px solid #145d2e59;
}

.hero-product {
    --bg-image: url('../images/hero-banner.jpg');
    background: linear-gradient(135deg, rgba(26, 92, 50, 0.85), rgba(45, 138, 78, 0.7)), var(--bg-image) center/cover;
    min-height: 340px;
}

.badge-section {
    display: inline-block;
    background: var(--section-light);
    color: var(--royal-green);
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.info-card {
    background: #fff;
    border-radius: 0.5rem;
    border: 1px solid #e0e8e2;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(45, 138, 78, 0.1);
}

.info-card .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--section-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-royal th {
    background: var(--royal-green);
    color: #fff;
}

.table-royal th,
.table-royal td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}

.table-royal tbody tr:nth-child(even) td {
    background: var(--section-light);
}

.disclaimer-box {
    background: #fefce8;
    border-left: 4px solid var(--royal-gold);
}

ul.guide-list {
    padding-left: 0;
    list-style: none;
}

ul.guide-list>li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

ul.guide-list>li::before {
    content: "✓";
    color: var(--royal-green);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* Responsive */
@media (max-width: 767px) {

    .hero-content h2,
    .cta-section h2 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .stat-card,
    .product-card {
        margin: 10px 0;
    }

    .stat-card .stat-icon {
        margin-bottom: 0;
    }

    .footer-social {
        margin-bottom: 20px;
    }
}