:root {
    --brand-green: #074B3C;
    --brand-green-deep: #043B2F;
    --brand-cream: #FFF9F2;
    --brand-sand: #FBE7D0;
    --brand-coral: #FF6F61;
    --brand-gold: #FFC857;
    --brand-mint: #7ED6A0;
    --text-primary: #153f35;
    --text-muted: #5c6f6a;
    --surface: #fffdf9;
    --shadow: 0 18px 45px rgba(7, 75, 60, 0.10);
    --radius: 22px;
}

body {
    background: linear-gradient(180deg, var(--brand-cream) 0%, #fff4e8 45%, #fffdf9 100%);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--brand-green-deep);
}

p {
    color: var(--text-muted);
    line-height: 1.75;
}

section {
    position: relative;
}

section:not(.footer-con):not(.banner-con) {
    padding-top: 90px;
    padding-bottom: 90px;
}

@media (max-width: 768px) {
    section:not(.footer-con):not(.banner-con) {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.header {
    background: linear-gradient(90deg, #fff8eb 0%, #ffe8c6 100%);
    box-shadow: 0 8px 24px rgba(7, 75, 60, 0.08);
}

.navbar-nav .nav-link,
.navbar-nav .nav-item a {
    color: var(--brand-green) !important;
    font-weight: 600 !important;
}

.all_button,
.button a,
.button {
    background: linear-gradient(90deg, var(--brand-coral) 0%, var(--brand-gold) 100%);
    color: #ffffff !important;
    border-radius: 999px;
    padding: 14px 28px;
    box-shadow: 0 14px 34px rgba(255, 111, 97, 0.24);
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.15s ease;
    text-transform: none !important;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.all_button:hover,
.all_button:focus,
.button a:hover,
.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(255, 111, 97, 0.26);
    text-decoration: none;
    opacity: 0.98;
}

.categories-box,
.best-box,
.blog-box,
.follow-con .image,
.shop-detail-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 249, 242, 0.96) 100%);
    border: 1px solid rgba(7, 75, 60, 0.08);
    border-radius: 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-con .contact_form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 249, 242, 0.96) 100%);
    border: 1px solid rgba(7, 75, 60, 0.08);
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 28px;
    max-width: 760px;
    margin: 0 auto;
    overflow: hidden;
}

.contact-con .contact_form form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-con .contact_form .form-group {
    flex: 0 0 calc(50% - 8px);
    margin-bottom: 0;
}

.contact-con .contact_form .input1,
.contact-con .contact_form .message {
    float: none;
    margin-right: 0;
}

.contact-con .contact_form .message,
.contact-con .contact_form .submit_now {
    flex: 0 0 100%;
}

.contact-con .contact_form input,
.contact-con .contact_form textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.journey_wrapper,
.mission_wrapper {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.journey_wrapper .journey-image img,
.mission_wrapper .mission-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.categories-box:hover,
.best-box:hover,
.blog-box:hover,
.follow-con .image:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(7, 75, 60, 0.16);
}

.categories_content h2,
.follow_content h2,
.relive_content h2,
.journey_content h2,
.mission_content h2,
.contact_content h2,
.blogpage-section h2,
.sub_banner .sub_banner_content h1 {
    color: var(--brand-green-deep);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.categories-box .content,
.blog-box .lower-portion,
.contact_form,
.best-box .best-content,
.blog-box .button-portion {
    background: rgba(255, 250, 244, 0.95);
}

.footer-con {
    background: linear-gradient(90deg, #fdf3e6 0%, #fff9f2 100%);
    border-top: 1px solid rgba(7, 75, 60, 0.08);
    padding: 24px 0;
}

.footer-con p,
.footer-con a,
.footer-con,
.footer-con .social-icons i,
.footer-con i {
    color: #074B3C !important;
}

.sub_banner {
    background: linear-gradient(90deg, #fff7ed 0%, #ffeacc 100%);
    border-bottom: 1px solid rgba(7, 75, 60, 0.06);
}

.sub_banner .box {
    background: rgba(255, 247, 237, 0.92) !important;
    background-image: none !important;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 10px;
    box-shadow: none !important;
}

.sub_banner .box a,
.sub_banner .box span {
    color: #074B3C;
}

@media (max-width: 576px) {
    .categories-box,
    .best-box,
    .blog-box,
    .contact_form {
        border-radius: 20px;
    }
}
