:root {
    --brand-primary: #1E9C6B;
    --brand-primary-dark: #157A54;
    --brand-teal: #1BA9B8;
    --brand-lime: #7CC142;
    --brand-yellow: #F2D94E;
    --brand-gradient: linear-gradient(100deg, #1BA9B8 0%, #1E9C6B 35%, #7CC142 72%, #F2D94E 100%);
    --brand-gray: #58595B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f8f6f2;
    color: #222;
    transition: 0.3s;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP BAR */
.top-bar {
    background: var(--brand-primary);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

.top-bar a {
    color: #fff;
    margin-right: 15px;
    cursor: pointer;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* STICKY HEADER + NAV WRAPPER */
.site-header-wrap {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Keeps section headings clear of the sticky header when jumped to via scrollIntoView / anchor links */
#products,
#about,
#certifications,
#contact {
    scroll-margin-top: 130px;
}

/* HEADER */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 16px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.logo h1 {
    font-size: 24px;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo h1 span {
    font-weight: 600;
    color: var(--brand-gray);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    -webkit-text-fill-color: var(--brand-gray);
}

.search-bar {
    flex: 1;
    max-width: 500px;
    display: flex;
    border: 2px solid #e0dcd5;
    border-radius: 40px;
    overflow: hidden;
    background: #fff;
}

.search-bar input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    outline: none;
    font-size: 15px;
}

.search-bar button {
    background: var(--brand-primary);
    color: #fff;
    border: none;
    padding: 0 22px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.search-bar button:hover {
    background: var(--brand-primary-dark);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 20px;
}

.header-icons a {
    color: #333;
    position: relative;
    cursor: pointer;
}

.header-icons a:hover {
    color: var(--brand-primary);
}

.cart-badge {
    background: var(--brand-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 30px;
    position: absolute;
    top: -10px;
    right: -14px;
}

/* NAV */
.nav {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 0;
}

.nav .container {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.nav a {
    padding: 14px 0;
    font-weight: 500;
    font-size: 15px;
    color: #333;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: 0.2s;
}

.nav a:hover,
.nav a.active {
    color: #1E9C6B;
    border-bottom-color: #1E9C6B;
}

.nav .dropdown {
    position: relative;
}

.nav .dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    top: 48px;
    left: 0;
    z-index: 100;
}

.nav .dropdown:hover .dropdown-content {
    display: block;
}

.nav .dropdown-content a {
    display: block;
    padding: 10px 24px;
    border: none;
    font-weight: 400;
    font-size: 14px;
    border-bottom: none;
}

.nav .dropdown-content a:hover {
    background: #f8f6f2;
    color: #1E9C6B;
}

/* HERO */
.hero {
    margin: 24px 0 32px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf6ed 0%, #f8efe4 100%);
    min-height: 260px;
    display: flex;
    align-items: center;
    padding: 40px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1e1e1e;
    line-height: 1.25;
}

.hero-text h2 span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 17px;
    color: #555;
    margin: 16px 0 24px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--brand-gradient);
    color: #fff;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    filter: brightness(0.94);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 156, 107, 0.3);
}

.btn-outline {
    background: transparent;
    color: #1E9C6B;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    border: 2px solid #1E9C6B;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #1E9C6B;
    color: #fff;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 210px;
}

/* SECTION TITLES */
.section-title {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-title a {
    font-size: 15px;
    font-weight: 500;
    color: #1E9C6B;
    cursor: pointer;
}

.section-sub {
    color: #666;
    font-size: 15px;
    margin: -12px 0 24px;
    max-width: 700px;
    line-height: 1.6;
}

/* STATS STRIP */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
    text-align: center;
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px 10px;
    border: 1px solid #f0ede8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.stat-card .num {
    font-size: 34px;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card .label {
    font-size: 14px;
    color: #666;
    margin-top: 6px;
}

/* CATEGORIES */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.category-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 10px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0ede8;
    cursor: pointer;
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: #1E9C6B;
}

.category-card i {
    font-size: 36px;
    color: #1E9C6B;
    margin-bottom: 10px;
}

.category-card h4 {
    font-size: 15px;
    font-weight: 600;
}

.category-card p {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 24px;
    margin: 16px 0 40px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 18px 16px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0ede8;
    text-align: center;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    border-color: #1E9C6B;
}

.product-card .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #1E9C6B;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    z-index: 2;
}

.product-img-box {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    background: #f8f6f2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-img-box i {
    font-size: 38px;
    color: #c9c2b6;
}

.product-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .sub {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
    min-height: 34px;
}

.product-card .pack {
    font-size: 13px;
    font-weight: 600;
    color: #1E9C6B;
    margin-bottom: 14px;
}

.product-card .add-btn {
    margin-top: auto;
    background: #1E9C6B;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.product-card .add-btn:hover {
    background: #157A54;
}

.product-card .add-btn:active {
    transform: scale(0.95);
}

/* INFO / ABOUT SECTION */
.about-flex {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 10px 0 40px;
}

.about-text {
    flex: 1.4;
    min-width: 280px;
}

.about-text p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15.5px;
}

.snapshot-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0ede8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 26px;
}

.snapshot-card h4 {
    color: #1E9C6B;
    margin-bottom: 16px;
    font-size: 17px;
}

.snapshot-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px dashed #eee;
    font-size: 13.5px;
}

.snapshot-row:last-child {
    border-bottom: none;
}

.snapshot-row .k {
    font-weight: 700;
    color: #333;
}

.snapshot-row .v {
    color: #666;
    text-align: right;
}

/* VALUE / PROCESS / CERT GRID CARDS */
.value-grid,
.cert-grid,
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin: 10px 0 40px;
}

.value-card,
.cert-card,
.diff-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f0ede8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
}

.value-card:hover,
.cert-card:hover,
.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.value-card .dot,
.diff-card .dot {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--brand-primary);
    margin-bottom: 14px;
}

.value-card h4,
.diff-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
}

.value-card p,
.diff-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.value-card ul {
    padding-left: 18px;
    color: #666;
    font-size: 14px;
    line-height: 1.9;
}

.cert-card i {
    font-size: 26px;
    color: #1E9C6B;
    margin-bottom: 12px;
}

.cert-card h4 {
    font-size: 15.5px;
    margin-bottom: 6px;
}

.cert-card p {
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}

/* PROCESS STEPS */
.process-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 10px 0 30px;
}

.process-step {
    background: #fff;
    border-radius: 16px;
    padding: 22px 16px;
    text-align: center;
    border: 1px solid #f0ede8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.process-step .num-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1E9C6B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 12px;
}

.process-step h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 12.5px;
    color: #777;
    line-height: 1.5;
}

.quality-pledge {
    background: #fdf6ed;
    border: 1px solid #f0e6d2;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 40px;
}

.quality-pledge h4 {
    color: #1e1e1e;
    margin-bottom: 8px;
}

.quality-pledge p {
    color: #555;
    font-size: 14.5px;
    line-height: 1.7;
}

/* TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin: 10px 0 30px;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #f0ede8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.team-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #1E9C6B, #7CC142, #F2D94E);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
}

.team-card h4 {
    font-size: 17px;
    margin-bottom: 2px;
}

.team-card .role {
    color: #1E9C6B;
    font-weight: 600;
    font-size: 13.5px;
    margin-bottom: 10px;
}

.team-card p.desc {
    color: #777;
    font-size: 13.5px;
    line-height: 1.6;
}

.team-note {
    background: #fdf6ed;
    border: 1px solid #f0e6d2;
    border-radius: 16px;
    padding: 20px 26px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* FEATURE BANNER */
.feature-banner {
    background: #1e1e1e;
    border-radius: 20px;
    padding: 40px 50px;
    margin: 30px 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    color: #fff;
}

.feature-banner h3 {
    font-size: 28px;
    font-weight: 700;
}

.feature-banner h3 span {
    color: #F2D94E;
}

.feature-banner p {
    font-size: 16px;
    opacity: 0.8;
    max-width: 440px;
}

.btn-gold {
    background: #F2D94E;
    color: #1e1e1e;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.btn-gold:hover {
    background: #F7E68C;
    transform: scale(1.02);
}

/* CART / ENQUIRY SIDEBAR */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    justify-content: flex-end;
}

.cart-overlay.open {
    display: flex;
}

.cart-sidebar {
    background: #fff;
    width: 440px;
    max-width: 92%;
    height: 100%;
    padding: 30px 25px;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: 0.3s ease-in-out;
}

.cart-overlay.open .cart-sidebar {
    transform: translateX(0);
}

.cart-sidebar h2 {
    margin-bottom: 6px;
    color: #1E9C6B;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-sidebar .hint {
    color: #888;
    font-size: 13px;
    margin-bottom: 20px;
}

.cart-sidebar .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #555;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
    gap: 10px;
}

.cart-item .item-name {
    font-weight: 500;
    font-size: 14.5px;
}

.cart-item .item-sub {
    color: #888;
    font-size: 12.5px;
}

.cart-item .remove-item {
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 18px;
}

.cart-item .remove-item:hover {
    color: #1E9C6B;
}

.cart-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cart-actions button {
    flex: 1;
    padding: 14px;
    border-radius: 40px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-checkout {
    background: #1E9C6B;
    color: #fff;
}

.btn-checkout:hover {
    background: #157A54;
}

.btn-clear {
    background: #eee;
    color: #333;
}

.btn-clear:hover {
    background: #ddd;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 40px 0;
}

/* TOAST NOTIFICATION */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1e1e1e;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transform: translateY(100px);
    opacity: 0;
    transition: 0.4s ease;
    font-weight: 500;
    border-left: 6px solid #F2D94E;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* FOOTER */
.footer {
    background: #1e1e1e;
    color: #ddd;
    padding: 50px 0 20px;
    margin-top: 30px;
}

.footer .container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer a {
    display: block;
    color: #aaa;
    margin-bottom: 10px;
    font-size: 14px;
    transition: 0.2s;
    cursor: pointer;
}

.footer a:hover {
    color: #fff;
}

.footer p.addr {
    color: #aaa;
    font-size: 13.5px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer .social i {
    font-size: 22px;
    margin-right: 16px;
    color: #aaa;
    transition: 0.2s;
    cursor: pointer;
}

.footer .social i:hover {
    color: #fff;
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid #333;
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .header .container {
        flex-direction: column;
        align-items: stretch;
    }

    .search-bar {
        max-width: 100%;
    }

    .header-icons {
        justify-content: center;
    }

    .nav .container {
        justify-content: center;
        gap: 16px;
    }

    .feature-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .cart-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 38px;
    }

    .top-bar .container {
        flex-direction: column;
        align-items: center;
        font-size: 12px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hero-text h2 {
        font-size: 26px;
    }

    .stats-strip,
    .process-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer .container {
        grid-template-columns: 1fr;
    }
}

/* ===================== CONTACT PAGE ===================== */

.contact-hero {
    margin: 24px 0 10px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf6ed 0%, #f8efe4 100%);
    padding: 46px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.contact-hero h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1e1e1e;
}

.contact-hero h2 span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    font-size: 16px;
    color: #555;
    max-width: 640px;
    margin: 14px auto 0;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
    margin: 30px 0 50px;
    align-items: start;
}

.contact-form-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0ede8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 30px;
}

.contact-form-card h4 {
    font-size: 18px;
    color: #1E9C6B;
    margin-bottom: 6px;
}

.contact-form-card .form-hint {
    color: #888;
    font-size: 13.5px;
    margin-bottom: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-group .required {
    color: #c0392b;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 2px solid #e0dcd5;
    border-radius: 10px;
    font-size: 14.5px;
    font-family: inherit;
    outline: none;
    transition: 0.2s;
    background: #fff;
    color: #222;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1E9C6B;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-submit-btn {
    background: var(--brand-gradient);
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.form-submit-btn:hover {
    filter: brightness(0.94);
}

.form-note {
    font-size: 12.5px;
    color: #999;
    margin-top: 12px;
    text-align: center;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0ede8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 26px;
    margin-bottom: 20px;
}

.info-card h4 {
    color: #1E9C6B;
    font-size: 16px;
    margin-bottom: 14px;
}

.info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 9px 0;
    border-bottom: 1px dashed #eee;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row i {
    color: #1E9C6B;
    font-size: 15px;
    margin-top: 3px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.info-row .info-text {
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
}

.info-row .info-text strong {
    display: block;
    color: #222;
    font-size: 14px;
    margin-bottom: 2px;
}

.office-card {
    background: #fdf6ed;
    border: 1px solid #f0e6d2;
    border-radius: 16px;
    padding: 20px 22px;
    margin-bottom: 14px;
}

.office-card h5 {
    color: #1e1e1e;
    font-size: 14.5px;
    margin-bottom: 4px;
}

.office-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.office-card {
    transition: 0.2s;
    cursor: pointer;
}

.office-card:hover {
    border-color: #1E9C6B;
    background: #fbeed6;
}