:root {
    --primary-color: #10b981;
    --secondary-color: #111827;
    --accent-color: #8b5cf6;
    --light-bg: #ecfdf5;
    --text-color: #1f2937;
    --danger-color: #f43f5e;

    --primary-dark: #059669;
    --primary-light: #d1fae5;

    --secondary: #1f2937;
    --accent: #7c3aed;

    --dark: #0b1120;
    --light: #ffffff;

    --gradient: linear-gradient(135deg, #10b981 0%, #8b5cf6 100%);
    --primary-gradient: linear-gradient(135deg, #10b981 0%, #8b5cf6 100%);
    --primary-gradient-hover: linear-gradient(135deg, #059669 0%, #6d28d9 100%);

    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #ef4444;

    --border-radius: 16px;
    --border-radius-sm: 8px;

    --transition: all 0.3s ease;

    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.banner {
    width: 100%;
    padding: 60px 8%;
    background: #f8fafc;
    cursor: pointer;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.banner-text {
    flex: 1;
}

.banner-text h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.banner-btn {
    padding: 12px 28px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.banner-btn:hover {
    background: var(--primary-dark);
}

.banner-image {
    flex: 1;
    text-align: center;
    padding-top: 50px;
}

.banner-image img {
    max-width: 100%;
    height: 400px;
}

.section-heading {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-align: left;
    margin-bottom: 1.8rem;
    margin-left: 15px;
    letter-spacing: -1px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-box {
    padding: 30px 20px;
    text-align: center;
    color: white;
    height: 80%;
    width: 270px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    margin: 10px 0px;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-box p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

/* Different background colors for each feature */
.delivery {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.returns {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.quality {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.prices {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

@media (max-width: 768px) {
    .feature-box {
        margin: 5px 0;
        padding: 20px 15px;
    }

    .feature-box i {
        font-size: 2rem;
    }

    .feature-box h4 {
        font-size: 1.1rem;
    }

    .feature-box p {
        font-size: 0.85rem;
    }
}

/* category */
.category {
    cursor: pointer;
    transition: 0.2s ease-out;
    margin-right: 50px;
}

.category:hover {
    transform: translateY(-10px);
}

.category-bg {
    background-color: #00f2fe;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
}

.category-bg img {
    width: 105px;
    height: auto;
    padding: 10px 22px;
}

.category-name {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 15px;
    margin-top: 5px;
}

/* --- Main Wrapper --- */
.product-grid-container {
    padding: 2rem 0;
}

#product-grid {
    margin-top: 1rem;
}

/* --- Horizontal Product Card Design --- */
.vertical-card {
    background: var(--light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.vertical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertical-card:hover::before {
    opacity: 1;
}

.vertical-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* --- Image Section --- */
.vertical-card .card-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--light-bg);
}

.vertical-card .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vertical-card:hover .product-img {
    transform: scale(1.05);
}

.vertical-card .discount-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--danger);
    color: var(--light);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    animation: pulse 2s infinite;
}

/* --- Details Section --- */
.vertical-card .card-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.vertical-card .card-header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-bottom: 15px;
}

.vertical-card .card-actions {
    display: flex;
    gap: 10px;
}

.vertical-card .action-btn {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
    font-size: 1rem;
}

.vertical-card .action-btn:hover {
    background: var(--primary-color);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.vertical-card .action-btn.cart-btn.added {
    background: var(--success);
    color: var(--light);
    cursor: not-allowed;
    animation: success 0.5s ease;
}

.vertical-card .action-btn.wishlist-btn.active i {
    color: var(--danger);
    animation: heartBeat 0.5s ease;
}

.vertical-card .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    transition: color 0.3s ease;
    text-decoration: none;
}

.vertical-card .card-title:hover {
    color: var(--primary-color);
}

.vertical-card .card-description {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vertical-card .card-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 15px;
    margin-top: auto;
}

.vertical-card .price-section {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.vertical-card .current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.vertical-card .old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

/* --- Quick Add Button --- */
.quick-add-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.quick-add-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.quick-add-btn.added {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.quick-add-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .horizontal-card {
        height: 260px;
    }

    .card-image-wrapper {
        max-width: 200px;
    }

    .card-details {
        padding: 20px 25px;
    }
}

@media (max-width: 768px) {
    .horizontal-card {
        flex-direction: column;
        height: auto;
        margin-bottom: 20px;
    }

    .card-image-wrapper {
        max-width: 100%;
        height: 250px;
    }

    .card-details {
        padding: 25px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .current-price {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .card-details {
        padding: 20px;
    }

    .discount-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .action-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .quick-add-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* --- Loading State --- */
.horizontal-card.loading {
    position: relative;
}

.horizontal-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .horizontal-card {
        flex-direction: column;
        height: auto;
    }

    .card-image-wrapper {
        width: 100%;
        height: 250px;
    }

    .card-details {
        padding: 1.5rem;
    }

    .category-bg {
        width: 100px;
        margin: 0 20%;
    }
}

/* Share Modal */
.share-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    backdrop-filter: blur(5px);
}

.share-modal {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.share-modal-header h3 {
    margin: 0;
    color: var(--dark);
}

.share-modal-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #777;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.share-modal-close:hover {
    background: var(--light);
}

.share-modal-body {
    padding: 20px;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.share-option:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-option i {
    font-size: 1.2rem;
    color: var(--primary);
}

/* promo */
.promo-card {
    min-height: 350px;
    border-radius: 25px;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Background Images */
.decor-bg {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent),
        url('/images/banner/promo1.png');
}

.pet-bg {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent),
        url('/images/banner/promo2.png');
}

.personalcare-bg {
    background-image: linear-gradient(to right, rgba(25, 0, 80, 0.7), transparent),
        url('/images/banner/promo3.png');
}

/* UI Elements */
.brand-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: fit-content;
    padding: 5px 20px;
    border-radius: 0 0 15px 0;
    margin: -24px 0 0 -24px;
    /* Align to the very edge of the card */
    font-weight: 700;
}

.brand-tag.dark {
    background: rgba(0, 0, 0, 0.1);
}

.promo-card h2 {
    font-size: 2rem;
    letter-spacing: -1px;
}

.btn-primary {
    background-color: #007bff;
}

/* breadcrumbs */
/* Hero Section */
.hero-section {
    background: var(--gradient);
    padding: 80px 0;
    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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-top: 30px;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
}

/* product detail */
/* Product Detail Section Styles */
.product-detail-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.product-detail-section .container {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-detail-section .container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Breadcrumb & Category Badge */
.category-badge {
    background: var(--gradient);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(37, 117, 252, 0.3);
}

/* Product Image Container */
.img-zoom-container {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.img-zoom-container:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.main-product-image {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.img-zoom-container:hover .main-product-image {
    transform: scale(1.05);
}

/* Product Details */
#prod_detail_wrapper {
    padding: 10px 0;
}

#prod_detail {
    color: #2c3e50;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 10px;
}

#prod_detail::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

/* Price Styling */
#prod_price {
    font-size: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

#prod_old_price {
    font-size: 1.2rem;
    color: #95a5a6;
}

/* Description */
#prod_desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #5d6d7e;
    border-left: 3px solid #e1e8ed;
    padding-left: 15px;
}

/* Buttons */
.add-cart-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.add-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.add-cart-btn:hover::before {
    left: 100%;
}

.add-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 117, 252, 0.3);
}

.btn-primary {
    background: white;
    color: #2575fc;
    border: 2px solid #2575fc;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2575fc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 117, 252, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #prod_detail {
        font-size: 1.5rem;
    }

    #prod_price {
        font-size: 1.5rem;
    }

    .add-cart-btn {
        width: 100%;
    }
}

/* privacy */
.policy-content {
    background: var(--light);
    padding: 40px 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.policy-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 15px;
}

.policy-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 25px;
    margin-bottom: 10px;
}

.policy-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 15px;
}

.policy-content ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    color: #4a5568;
}

.policy-content strong {
    color: var(--dark);
    font-weight: 600;
}

.contact-info {
    background: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-top: 20px;
    /* border-left: 4px solid var(--primary-light); */
}

/* ===================================
           Responsive Design
           =================================== */
@media (max-width: 768px) {
    .policy-content {
        padding: 30px 25px;
    }

    .shape {
        display: none;
    }
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background: var(--light-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background shape */
.about-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary-gradient);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    opacity: 0.05;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

/* --- Section Header --- */
.section-header {
    margin-bottom: 60px;
}


.section-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Features Grid --- */
.features-grid {
    margin-bottom: 70px;
}

.feature-card {
    background: var(--light);
    padding: 40px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* --- Story & Mission Section --- */
.story-mission-section {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.story-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--gradient);
    opacity: 0.2;
}

.content-block {
    padding: 0 20px;
}

.content-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.content-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: var(--gradient);
    border-radius: 3px;
}

.content-block p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .story-mission-section::before {
        display: none;
    }

    .content-block {
        margin-bottom: 40px;
    }

    .content-block:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .section-heading {
        font-size: 2.2rem;
    }

    .story-mission-section {
        padding: 30px 20px;
    }
}

/* ==================== CONTACT SECTION ==================== */
/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: var(--secondary-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background element */
.contact-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-gradient);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    opacity: 0.1;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

/* --- Main Contact Card --- */
.contact-card {
    background: var(--light);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.contact-card-header {
    padding: 40px 40px 20px 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.contact-card .section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.section-subtitle {
    color: var(--text-color);
    font-size: 1rem;
    margin: 0;
}

/* --- Card Body --- */
.contact-card-body {
    display: flex;
    flex-wrap: wrap;
}

.contact-info-panel,
.contact-form-panel {
    flex: 1 1 100%;
    padding: 40px;
}

@media (min-width: 992px) {
    .contact-info-panel {
        flex: 1 1 40%;
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }

    .contact-form-panel {
        flex: 1 1 60%;
    }
}

/* --- Info Panel Styling --- */
.panel-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.panel-description {
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.contact-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: var(--light);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

/* --- Form Panel Styling --- */
.contact-form-panel .form-group {
    margin-bottom: 25px;
}

.contact-form-panel .form-control {
    background: rgba(0, 0, 0, 0.03);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    color: var(--secondary-color);
    transition: var(--transition);
    width: 100%;
}

.contact-form-panel .form-control:focus {
    background: var(--light);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    outline: none;
}

.contact-form-panel .form-control::placeholder {
    color: #aaa;
}

.btn-submit {
    background: var(--primary-gradient);
    color: var(--light);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* ==================== ALERT BOX ==================== */
.alert-box {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #36b9cc 0%, #1cc88a 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
    max-width: 350px;
    border-left: 5px solid white;
}

.alert-box.show {
    display: block;
    animation: slideIn 0.5s forwards;
}

.alert-box .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.alert-box .btn-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {

    .about-section,
    .contact-section {
        padding: 60px 0;
        margin: 40px 0;
    }

    .about-content {
        padding: 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .alert-box {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {

    .about-section,
    .contact-section {
        padding: 40px 0;
        margin: 30px 0;
        border-radius: 15px;
    }

    .about-content h3,
    .contact-info h4,
    .contact-form h4 {
        font-size: 20px;
    }

    .btn-submit {
        padding: 12px 30px;
        font-size: 14px;
    }

    .contact-form .form-control {
        padding: 12px;
        font-size: 14px;
    }
}