/* =========================================
   EASYDIGIMART - Main Stylesheet
   Bootstrap 5.3 Custom Styles
   ========================================= */

/* =========================================
   1. CSS Variables / Root
   ========================================= */
:root {
    --primary-green: #4A7C4E;
    --primary-green-dark: #3D6640;
    --primary-green-light: #5A9C5E;
    --accent-green: #8BC34A;
    --dark-bg: #2D2D2D;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --danger: #dc3545;
    --warning: #ffc107;
}

/* =========================================
   2. Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* =========================================
   3. Top Bar
   ========================================= */
.top-bar {
    background-color: var(--dark-bg);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a,
.top-bar span {
    color: #fff;
    text-decoration: none;
}

.top-bar .location-select {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar .right-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-select {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

.dark-mode-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-switch {
    width: 40px;
    height: 20px;
    background: #555;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

.toggle-switch::after {
    content: '';
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

.toggle-switch.active::after {
    left: 22px;
}

/* =========================================
   4. Navbar
   ========================================= */
.navbar-main {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
}

.navbar-brand img {
    height: 45px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 20px !important;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s;
}

.search-icon:hover {
    color: var(--primary-green);
}

.btn-login {
    color: var(--danger);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.btn-login:hover {
    color: var(--primary-green-dark);
}

/* =========================================
   5. Hero Section
   ========================================= */
.hero-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
}

.hero-section h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 35px;
    position: relative;
}

/* Search Box */
.search-box {
    background: #fff;
    border-radius: 50px;
    padding: 8px;
    max-width: 750px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.search-box input {
    border: none;
    padding: 12px 20px;
    flex: 1;
    outline: none;
    font-size: 15px;
}

.search-box select {
    border: none;
    border-left: 1px solid #eee;
    padding: 12px 15px;
    outline: none;
    color: var(--text-muted);
    background: transparent;
    cursor: pointer;
}

.search-box .btn-search {
    background: var(--danger);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.search-box .btn-search:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Popular Categories Tags */
.popular-categories {
    position: relative;
}

.popular-categories span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 12px;
    display: block;
}

.category-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tag {
    background: #fff;
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.category-tag:hover {
    background: var(--primary-green);
    color: #fff;
    transform: translateY(-2px);
}

/* =========================================
   6. Section Title
   ========================================= */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.view-all-btn {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
}

/* =========================================
   7. Categories Section
   ========================================= */
.categories-section {
    padding: 60px 0;
}

.category-card {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card .img-wrapper {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.category-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-card:hover .img-wrapper img {
    transform: scale(1.1);
}

.category-card .icon-badge {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-card .icon-badge i {
    color: var(--danger);
    font-size: 18px;
}

.category-card h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 10px;
    font-size: 14px;
}

/* =========================================
   8. How It Works Section
   ========================================= */
.how-it-works {
    background: var(--dark-bg);
    padding: 60px 0;
}

.how-it-works h2 {
    color: #fff;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.step-card {
    background: linear-gradient(145deg, #3a3a3a, #252525);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-card .step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card .step-icon i {
    font-size: 45px;
    color: #fff;
}

.step-card h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================
   9. Vendor Section
   ========================================= */
.vendor-section {
    padding: 60px 0;
}

.vendor-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 15px;
    transition: all 0.3s;
    background: #fff;
}

.vendor-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vendor-card .vendor-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
    border: 3px solid #eee;
}

.vendor-card .vendor-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-card .status-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--danger);
    color: #fff;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 10px;
}

.vendor-card h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.vendor-badge {
    background: var(--danger);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 5px;
}

.vendor-card .btn-visit {
    border: 1px solid #ddd;
    color: var(--text-dark);
    padding: 8px 25px;
    border-radius: 5px;
    font-size: 13px;
    margin-top: 15px;
    transition: all 0.3s;
}

.vendor-card .btn-visit:hover {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
}

/* =========================================
   10. Product Card
   ========================================= */
.product-card {
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    background: #fff;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-card .img-wrapper {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.product-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.product-card .discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--danger);
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
}

.product-card .featured-badge {
    position: absolute;
    top: 45px;
    left: 15px;
    background: var(--primary-green);
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
}

.product-card .wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.product-card .wishlist-btn:hover {
    background: var(--danger);
    color: #fff;
}

.product-card .card-body {
    padding: 20px;
}

.product-card h6 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.product-card .price .original {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 14px;
}

.product-card .price .current {
    color: var(--danger);
    font-weight: 700;
    font-size: 18px;
}

.product-card .location {
    color: var(--text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.product-card .seller-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.product-card .seller-info img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.product-card .seller-info .seller-name {
    font-size: 13px;
    font-weight: 500;
}

.product-card .seller-info .date {
    font-size: 12px;
    color: var(--text-muted);
}

/* =========================================
   11. Featured Section
   ========================================= */
.featured-section {
    padding: 60px 0;
    background: #fff;
}

.featured-left h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-left p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.featured-left .btn-view-all {
    background: var(--danger);
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.featured-left .btn-view-all:hover {
    background: #c82333;
}

/* =========================================
   12. Become Vendor Section
   ========================================= */
.become-vendor {
    padding: 60px 0;
    background: #fff;
}

.become-vendor-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 50px;
}

.become-vendor-card .subtitle {
    color: var(--danger);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.become-vendor-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.become-vendor-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.become-vendor-card .btn-become {
    background: var(--danger);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.become-vendor-card .btn-become:hover {
    background: #c82333;
}

/* =========================================
   13. Top Sellers Section
   ========================================= */
.top-sellers {
    padding: 60px 0;
}

.seller-card {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    background: #fff;
}

.seller-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.seller-card .seller-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    position: relative;
}

.seller-card .seller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-card .verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.seller-card .verified-badge i {
    color: #fff;
    font-size: 10px;
}

.seller-card h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.seller-card .rating {
    color: var(--warning);
    margin-bottom: 10px;
}

.seller-card .stats {
    color: var(--primary-green);
    font-size: 13px;
    margin-bottom: 15px;
}

.seller-card .btn-follow {
    border: 1px solid #ddd;
    color: var(--text-dark);
    padding: 8px 30px;
    border-radius: 5px;
    background: transparent;
    transition: all 0.3s;
    width: 100%;
}

.seller-card .btn-follow:hover {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
}

/* =========================================
   14. Blog Section
   ========================================= */
.blog-section {
    padding: 60px 0;
    background: #fff;
}

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #eee;
    background: #fff;
}

.blog-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-card .img-wrapper {
    height: 200px;
    overflow: hidden;
}

.blog-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .img-wrapper img {
    transform: scale(1.1);
}

.blog-card .card-body {
    padding: 20px;
}

.blog-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--text-dark);
}

.blog-card .meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 13px;
}

/* =========================================
   15. App Section
   ========================================= */
.app-section {
    padding: 60px 0;
}

.app-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.app-section p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* =========================================
   16. Footer
   ========================================= */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 20px;
}

.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 16px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--primary-green);
}

.footer .social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer .social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.footer .social-links a:hover {
    background: var(--primary-green);
}

.footer .app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer .app-buttons img {
    height: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

.footer-bottom a {
    color: var(--primary-green);
    text-decoration: none;
}

/* =========================================
   17. Utility Classes
   ========================================= */
.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* Carousel Controls */
.carousel-nav {
    display: flex;
    gap: 10px;
}

.carousel-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-nav button:hover {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
}

/* Swiper Custom Styles */
.swiper {
    padding: 10px 5px 20px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
    color: var(--text-dark);
}

/* =========================================
   18. Animations
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* =========================================
   19. Responsive Styles
   ========================================= */

/* Tablet */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .search-box {
        flex-wrap: wrap;
        border-radius: 15px;
        padding: 15px;
    }

    .search-box input,
    .search-box select {
        width: 100%;
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .search-box .btn-search {
        width: 100%;
    }

    .featured-left {
        text-align: center;
        margin-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .top-bar .right-menu {
        gap: 10px;
        font-size: 12px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .hero-section h1 {
        font-size: 1.6rem;
    }

    .hero-section p {
        font-size: 0.95rem;
    }

    .category-tags {
        gap: 8px;
    }

    .category-tag {
        padding: 6px 15px;
        font-size: 12px;
    }

    .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .step-card {
        margin-bottom: 20px;
    }

    .become-vendor-card {
        padding: 30px;
    }

    .become-vendor-card h3 {
        font-size: 1.4rem;
    }

    .product-card .img-wrapper {
        height: 160px;
    }

    .product-card .price .current {
        font-size: 16px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer h5 {
        margin-bottom: 15px;
    }

    .footer .social-links {
        justify-content: flex-start;
    }
}

/* Extra Small Devices */
@media (max-width: 575px) {
    .navbar-brand img {
        height: 35px;
    }

    .hero-section h1 {
        font-size: 1.4rem;
    }

    .section-title h2 {
        font-size: 1.2rem;
    }

    .category-card .img-wrapper {
        height: 100px;
    }

    .category-card h6 {
        font-size: 12px;
    }

    .step-card .step-icon {
        width: 80px;
        height: 80px;
    }

    .step-card .step-icon i {
        font-size: 30px;
    }

    .seller-card {
        padding: 15px;
    }

    .seller-card .seller-avatar {
        width: 60px;
        height: 60px;
    }
}

/* =========================================
   20. About Us Page Styles
   ========================================= */

/* Page Header */
.page-header {
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.page-header .page-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

/* About Section */
.about-section {
    padding: 40px 0 60px;
    background: #fff;
}

.about-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: left;
}

/* Connect With Us Section */
.connect-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.connect-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.connect-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s;
}

.connect-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.connect-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.connect-icon i {
    font-size: 20px;
    color: #fff;
}

/* Icon Colors */
.phone-icon {
    background: linear-gradient(135deg, #4A7C4E, #3D6640);
}

.website-icon {
    background: linear-gradient(135deg, #4A7C4E, #3D6640);
}

.facebook-icon {
    background: linear-gradient(135deg, #1877f2, #0d5ecf);
}

.twitter-icon {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.instagram-icon {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.google-icon {
    background: linear-gradient(135deg, #db4437, #c23321);
}

.youtube-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.pinterest-icon {
    background: linear-gradient(135deg, #bd081c, #9a0617);
}

.connect-info h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.connect-info a {
    font-size: 13px;
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s;
}

.connect-info a:hover {
    color: var(--primary-green-dark);
    text-decoration: underline;
}

/* =========================================
   21. Contact Us Page Styles
   ========================================= */

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: #fff;
    min-height: calc(100vh - 300px);
}

.contact-illustration {
    text-align: center;
    padding: 20px;
}

.contact-illustration img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.contact-form-wrapper {
    padding: 30px;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.contact-form label .required {
    color: var(--danger);
    margin-left: 2px;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s;
    outline: none;
}

.contact-form .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 78, 0.1);
}

.contact-form .form-control::placeholder {
    color: #999;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 14px 30px;
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(74, 124, 78, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* =========================================
   22. About & Contact Responsive Styles
   ========================================= */

@media (max-width: 991px) {
    .contact-illustration {
        margin-bottom: 30px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .connect-card {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .page-header .page-title {
        font-size: 1.3rem;
    }

    .about-section {
        padding: 30px 0 40px;
    }

    .about-content p {
        font-size: 14px;
    }

    .connect-section {
        padding: 40px 0;
    }

    .connect-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-form-title {
        font-size: 1.3rem;
        text-align: center;
    }

    .contact-illustration img {
        max-height: 280px;
    }
}

@media (max-width: 575px) {
    .connect-card {
        padding: 12px;
        gap: 12px;
    }

    .connect-icon {
        width: 40px;
        height: 40px;
    }

    .connect-icon i {
        font-size: 16px;
    }

    .connect-info h6 {
        font-size: 13px;
    }

    .connect-info a {
        font-size: 12px;
    }

    .contact-form-wrapper {
        padding: 15px 0;
    }

    .btn-submit {
        padding: 12px 25px;
        font-size: 14px;
    }
}