:root {
    --primary-green: #8CC63F;
    --bright-yellow: #FFF200;
    --dark-green: #6BA82F;
}
  body {
            font-family: Meiryo UI;
            background-color: var(--light-bg);
            line-height: 1.6;
        }
        

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Top Bar - Modern Style */
.top-bar {
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    font-size: 17px;
    font-weight: 700;
    padding: 8px 0;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.top-bar a:hover {
    color: var(--bright-yellow);
}

.social-links a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    margin: 0 4px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--bright-yellow);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Modern Navbar */
.navbar {
    padding: 0px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background: white !important;
}

.navbar > .container {
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 60px;
    transition: transform 0.3s;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.brand-info h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.brand-info p {
    font-size: 15px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.navbar-brand .brand-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-green);
}

.navbar-brand .brand-subtitle {
    font-size: 14px;
    color: #333;
    font-weight: normal;
}

/* Navbar Toggler Alignment */
.navbar-toggler {
    padding: 8px 10px;
    font-size: 1.25rem;
    line-height: 1;
}

/* Modern Nav Links with Gap */
.navbar-nav {
    gap: 35px; /* Increased gap between nav items */
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 700;
    font-size: 19px;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
    outline: none !important; /* Remove outline */
    box-shadow: none !important; /* Remove any box shadow */
}

/* Remove all focus states that create blue border */
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:focus-visible,
.navbar-nav .dropdown-toggle:focus,
.navbar-nav .dropdown-toggle:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Remove Bootstrap's default focus shadow */
.nav-link:focus,
.dropdown-toggle:focus {
    box-shadow: none !important;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-green);
    transform: translateX(-50%);
    transition: width 0.3s;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 20px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
    background: rgba(140, 198, 63, 0.08);
}

/* Active state for nav link */
.navbar-nav .nav-link.active {
    color: white;
    background: var(--primary-green);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(140, 198, 63, 0.4);
}

.navbar-nav .nav-link.active::before {
    width: 20px;
    background: white;
}

/* Dropdown Toggle - Remove Blue Border */
.navbar-nav .dropdown-toggle {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.navbar-nav .dropdown-toggle:focus,
.navbar-nav .dropdown-toggle:active,
.navbar-nav .dropdown-toggle.show {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    color: var(--primary-green);
}

/* Remove Bootstrap's default dropdown arrow focus */
.dropdown-toggle::after {
    border: none !important;
}

/* Modern Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 5px;
    margin-top: 10px;
}

.dropdown-menu .dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s;
    margin-bottom: 4px;
    outline: none !important;
}

.dropdown-menu .dropdown-item:focus {
    outline: none !important;
    box-shadow: none !important;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--primary-green);
    color: white;
    transform: translateX(5px);
}

/* Active state for dropdown items */
.dropdown-menu .dropdown-item.active {
    background: var(--primary-green);
    color: white;
    font-weight: 700;
}

/* Enquiry Button - Modern Style */
.btn-enquiry,
.btn-warning {
    background: linear-gradient(135deg, var(--bright-yellow) 0%, #FFE600 100%);
    color: #333;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 25px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 242, 0, 0.4);
    transition: all 0.3s;
    outline: none !important;
}

.btn-enquiry:hover,
.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 242, 0, 0.6);
    color: #333;
}

.btn-enquiry:focus,
.btn-warning:focus {
    outline: none !important;
    box-shadow: 0 4px 15px rgba(255, 242, 0, 0.4) !important;
}

/* Mobile Menu Styling */
@media (max-width: 991px) {
    /* Hide top bar completely on mobile */
    .top-bar {
        display: none !important;
    }
    
    .social-links {
        display: none !important;
    }
    
    .navbar > .container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .navbar-brand {
        flex: 0 1 auto;
        max-width: calc(100% - 60px);
        margin-right: 10px;
    }
    
    .navbar-toggler {
        flex: 0 0 auto;
        position: relative;
        z-index: 10;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 10px;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 12px;
        z-index: 999;
        transform: translateX(-100%);
        opacity: 0;
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    }
    
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        transform: translateX(0);
        opacity: 1;
    }
    
    .navbar-collapse.collapsing {
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
        height: auto !important;
    }
    
    .navbar-nav {
        gap: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 16px;
        margin-bottom: 5px;
    }
    
    .navbar-nav .nav-link::before {
        display: none;
    }
    
    .navbar-nav .nav-link.active::before {
        display: none;
    }
    
    .dropdown-menu {
        background: white;
        border: 1px solid #e0e0e0;
        margin-top: 5px;
        min-width: 100% !important;
    }
    
    .dropdown-menu .row {
        display: flex;
        flex-direction: row;
    }
    
    .dropdown-menu .col-6 {
        width: 50%;
        flex: 0 0 50%;
    }
    
    .btn-enquiry,
    .btn-warning {
        width: 100%;
        margin-top: 10px;
    }
    
    .brand-info h1 {
        font-size: 18px;
        line-height: 1.1;
    }
    
    .brand-info p {
        font-size: 9px;
        line-height: 1.2;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .navbar-brand {
        gap: 8px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .brand-info h1 {
        font-size: 18px;
    }
    
    .brand-info p {
        font-size: 12px;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .navbar-toggler {
        padding: 6px 8px;
        font-size: 1.1rem;
    }
    
    .dropdown-menu .dropdown-item {
        font-size: 13px;
        padding: 8px 12px;
    }
}



 /* BANNER */
        .banner {
            padding: 0;
            min-height: auto;
            width: 100%;
            overflow: hidden;
        }

        .banner .carousel-item img {
            height: 625px;
            width: 100%;
            object-fit: cover;
            object-position: center;
        }

        .banner .carousel-control-prev,
        .banner .carousel-control-next {
            width: 5%;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .banner .carousel-control-prev:hover,
        .banner .carousel-control-next:hover {
            opacity: 1;
        }

        .banner .carousel-control-prev-icon,
        .banner .carousel-control-next-icon {
            width: 3rem;
            height: 3rem;
            background-color: rgba(0, 0, 0, 0.6);
            border-radius: 50%;
            padding: 10px;
        }

        .banner .carousel-indicators {
            margin-bottom: 1.5rem;
        }

        .banner .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .banner .carousel-indicators button.active {
            opacity: 1;
        }

        /* Tablet Responsive */
        @media (max-width: 992px) {
            .banner .carousel-item img {
                height: 500px;
            }

            .banner .carousel-control-prev-icon,
            .banner .carousel-control-next-icon {
                width: 2.5rem;
                height: 2.5rem;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .banner .carousel-item img {
                height: 400px;
            }

            .banner .carousel-control-prev,
            .banner .carousel-control-next {
                width: 8%;
            }

            .banner .carousel-control-prev-icon,
            .banner .carousel-control-next-icon {
                width: 2rem;
                height: 2rem;
                padding: 8px;
            }

            .banner .carousel-indicators {
                margin-bottom: 1rem;
            }

            .banner .carousel-indicators button {
                width: 10px;
                height: 10px;
                margin: 0 3px;
            }
        }

        /* Small Mobile Responsive */
        @media (max-width: 576px) {
            .banner .carousel-item img {
                height: 300px;
            }

            .banner .carousel-control-prev-icon,
            .banner .carousel-control-next-icon {
                width: 1.5rem;
                height: 1.5rem;
                padding: 6px;
            }

            .banner .carousel-indicators button {
                width: 8px;
                height: 8px;
                margin: 0 2px;
            }

            .banner .carousel-indicators {
                margin-bottom: 0.5rem;
            }
        }

        /* Extra Small Mobile */
        @media (max-width: 400px) {
            .banner .carousel-item img {
                height: 250px;
            }
        }





        





 /* Introduction Section */
        .intro-section {
            padding: 80px 0;
            background: #ffffff;
            position: relative;
        }

        .intro-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Left Side - Image */
        .intro-images {
            position: relative;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .intro-images img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        /* Contact Badge */
        .contact-badge {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            text-align: center;
            position: relative;
        }

        .badge-dots {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 60px;
            height: 60px;
            background-image: radial-gradient(circle, #ffb6c1 2px, transparent 2px);
            background-size: 12px 12px;
            opacity: 0.3;
        }

        .contact-badge h3 {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .phone-contact {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 15px;
        }

        .phone-icon {
            width: 40px;
            height: 40px;
            background: #e8f5e9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .phone-icon svg {
            width: 20px;
            height: 20px;
            color: #4caf50;
        }

        .phone-contact span {
            font-size: 20px;
            font-weight: 700;
            color: #4caf50;
        }

        /* Right Side - Content */
        .intro-content {
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #28a745;
            margin-bottom: 25px;
        }

        .intro-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #4a4a4a;
            margin-bottom: 20px;
            text-align: justify;
        }

        .intro-text .highlight-text {
            color: #1a1a1a;
            font-weight: 500;
        }

        .intro-text .text-black {
            color: #333333;
        }

        .know-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #28a745;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 32px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            width: fit-content;
        }

        .know-more-btn:hover {
            background: #218838;
            transform: translateX(5px);
        }

        .know-more-btn svg {
            transition: transform 0.3s ease;
        }

        .know-more-btn:hover svg {
            transform: translateX(5px);
        }

        /* Tablet Responsive */
        @media (max-width: 991px) {
            .intro-section {
                padding: 60px 0;
            }

            .intro-images {
                margin-bottom: 40px;
            }

            .section-title {
                font-size: 42px;
            }

            .contact-badge h3 {
                font-size: 20px;
            }

            .phone-contact span {
                font-size: 18px;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .intro-section {
                padding: 50px 0;
            }

            .intro-images {
                margin-bottom: 30px;
            }

            .contact-badge {
                padding: 25px 20px;
                margin-top: 20px;
            }

            .contact-badge h3 {
                font-size: 18px;
                margin-bottom: 15px;
            }

            .phone-contact span {
                font-size: 16px;
            }

            .phone-icon {
                width: 35px;
                height: 35px;
            }

            .section-title {
                font-size: 36px;
                margin-bottom: 20px;
            }

            .intro-text p {
                font-size: 15px;
                line-height: 1.7;
            }

            .know-more-btn {
                padding: 12px 28px;
                font-size: 15px;
            }
        }

        /* Small Mobile Responsive */
        @media (max-width: 576px) {
            .intro-section {
                padding: 40px 0;
            }

            .intro-wrapper {
                padding: 0 10px;
            }

            .intro-images {
                margin-bottom: 25px;
            }

            .contact-badge {
                padding: 20px 15px;
                margin-top: 15px;
            }

            .contact-badge h3 {
                font-size: 16px;
            }

            .phone-contact {
                gap: 8px;
            }

            .phone-contact span {
                font-size: 15px;
            }

            .phone-icon {
                width: 32px;
                height: 32px;
            }

            .section-title {
                font-size: 32px;
            }

            .intro-text p {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 15px;
            }

            .know-more-btn {
                padding: 10px 24px;
                font-size: 14px;
            }
        }

        /* Extra Small Mobile */
        @media (max-width: 400px) {
            .section-title {
                font-size: 28px;
            }

            .intro-text p {
                font-size: 13px;
            }

            .contact-badge h3 {
                font-size: 15px;
            }

            .phone-contact span {
                font-size: 14px;
            }
        }








/* PRODUCTS INDEX */

/* Modal Style Product Card */
.product-card-modal {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.product-card-modal:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Product Image Section - FIXED HEIGHT */
.product-image-section {
    padding: 30px 20px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    height: 220px; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    max-width: 150px;
    max-height: 160px; /* Maximum height constraint */
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card-modal:hover .product-image {
    transform: scale(1.1);
}

/* Product Badge */
.product-badge {
    background: var(--primary-green);
    padding: 12px 25px;
    margin: -15px auto 0;
    position: relative;
    z-index: 2;
    display: inline-block;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(140, 198, 63, 0.4);
    min-width: 150px; /* Minimum width for consistency */
}

.badge-text {
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Content - FIXED HEIGHT */
.product-content {
    padding: 25px 20px;
    flex-grow: 1;
    min-height: 110px; /* Minimum height for description area */
    display: flex;
    align-items: center;
}

.product-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Product Buttons */
.product-buttons {
    padding: 0 20px 25px;
    display: flex;
    gap: 10px;
}

.btn-modal-primary,
.btn-modal-secondary {
    flex: 1;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.btn-modal-primary {
    background: #2196F3;
    color: white;
    border-color: #2196F3;
}

.btn-modal-primary:hover {
    background: #1976D2;
    border-color: #1976D2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.btn-modal-secondary {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.btn-modal-secondary:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(140, 198, 63, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .product-card-modal {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }
    
    .products-section .section-title h2 {
        font-size: 32px;
    }
    
    .product-image-section {
        height: 180px;
        padding: 20px 15px 15px;
    }
    
    .product-image {
        max-width: 120px;
        max-height: 140px;
    }
    
    .badge-text {
        font-size: 14px;
    }
    
    .product-content {
        min-height: 100px;
    }
    
    .product-description {
        font-size: 13px;
    }
    
    .product-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-modal-primary,
    .btn-modal-secondary {
        font-size: 11px;
        padding: 10px 12px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-modal {
    animation: fadeInUp 0.6s ease-out;
}



/* under products */

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
     background: linear-gradient(180deg, #023507 0%, #05540d 100%);
}

.feature-box {
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(140, 198, 63, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 36px;
    color: white;
}
/* Product Categories Section */
.product-categories {
    padding: 80px 0;
    background: linear-gradient(180deg, #023507 0%, #05540d 100%);
}

/* Veterinary Category Card */
.vet-category-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 3px solid transparent;
}

/* Different color themes for each category */
.vet-category-card.liver {
    border-color: #ff6b6b;
}

.vet-category-card.immunity {
    border-color: #4ecdc4;
}

.vet-category-card.growth {
    border-color: #ffe66d;
}

.vet-category-card.respiratory {
    border-color: #95e1d3;
}

.vet-category-card.reproductive {
    border-color: #ff9ff3;
}

.vet-category-card.electrolyte {
    border-color: #74b9ff;
}

/* Pattern Background */
.category-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(140, 198, 63, 0.05) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.vet-category-card:hover .category-pattern {
    opacity: 1;
}

/* Hover Effect */
/* .vet-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(140, 198, 63, 0.25);
}

.vet-category-card.liver:hover {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(59, 58, 58, 0.05), white);
}

.vet-category-card.immunity:hover {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05), white);
}

.vet-category-card.growth:hover {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(255, 230, 109, 0.05), white);
}

.vet-category-card.respiratory:hover {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(149, 225, 211, 0.05), white);
}

.vet-category-card.reproductive:hover {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(255, 159, 243, 0.05), white);
}

.vet-category-card.electrolyte:hover {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.05), white);
} */

/* Category Content */
.category-content {
    position: relative;
    z-index: 2;
}

/* Icon Circle */
.category-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(140, 198, 63, 0.3);
    transition: all 0.4s;
}

.vet-category-card:hover .category-icon-circle {
    transform: rotate(360deg) scale(1.1);
}

.category-icon-circle i {
    font-size: 36px;
    color: white;
}

/* Category Title */
.category-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

/* Category Description */
.category-description {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Benefit Tags */
.category-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(140, 198, 63, 0.1);
    color: var(--dark-green);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.benefit-tag i {
    margin-right: 8px;
    color: var(--primary-green);
    font-size: 12px;
}

.vet-category-card:hover .benefit-tag {
    background: var(--primary-green);
    color: white;
}

.vet-category-card:hover .benefit-tag i {
    color: var(--bright-yellow);
}

/* Animal Icon Watermark */
.category-animal-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 120px;
    color: rgba(140, 198, 63, 0.05);
    z-index: 1;
    transition: all 0.4s;
}

.vet-category-card:hover .category-animal-icon {
    color: rgba(140, 198, 63, 0.12);
    transform: scale(1.1) rotate(-10deg);
}

/* Responsive */
@media (max-width: 768px) {
    .product-categories {
        padding: 60px 0;
    }
    
    .vet-category-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .category-icon-circle {
        width: 65px;
        height: 65px;
    }
    
    .category-icon-circle i {
        font-size: 28px;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .category-description {
        font-size: 13px;
    }
    
    .category-animal-icon {
        font-size: 80px;
        bottom: -10px;
        right: -10px;
    }
}
/* Animal Types Section */
.animal-types {
    padding: 80px 0;
}

.animal-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
}

.animal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(140, 198, 63, 0.25);
}

.animal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.animal-info {
    padding: 20px;
}







/* ========================================
   PRODUCTS SLIDER SECTION STYLES - COMPLETE & FIXED
======================================== */

/* Root Variables */
:root {
    --primary-color: #0056b3;
    --primary-hover: #003d82;
    --primary-light: #cce5ff;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --success-light: #d1e7dd;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
    --text-dark: #212529;
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Section Styling */
.products-slider-section {
    background: #f5f5f5;
    overflow: hidden;
    position: relative;
    padding: 5rem 0;
}

/* Section Title */
.section-title {
    animation: fadeInUp 0.8s ease;
}

.bg-success-light {
    background-color: var(--success-light) !important;
    color: var(--success-color);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.15);
}

.display-4 {
    font-weight: 800 !important;
    color: var(--text-dark);
    line-height: 1.2;
    font-size: 2.5rem;
}

.text-success {
    color: var(--success-color) !important;
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #6c757d;
}

/* Slider Container */
.slider-container {
    margin: 0 auto;
    padding: 2rem 0;
    max-width: 100%;
    position: relative;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 0;
    padding: 0;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    gap: 1.5rem;
    padding: 1.5rem 0;
    will-change: transform;
}

/* Product Slide - FIXED */
.product-slide {
    flex: 0 0 20%;
    max-width: 20%;
    min-width: 220px;
    padding: 0;
    box-sizing: border-box;
}

/* Product Card */
.product-card-slider {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 3px solid #e0e0e0;
}

.product-card-slider:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: #c0c0c0;
}

/* Product Image */
.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    border-bottom: none;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card-slider:hover .product-img {
    transform: scale(1.08);
}

/* Green Bottom Bar with Product Name */
.product-name-bar {
    background: linear-gradient(180deg, #076110 0%, #066710 100%);
    padding: 1rem 1rem;
    text-align: center;
    border-top: 3px solid #054d0d;
}

.product-name-text {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

/* Product Content - Description - HIDDEN */
.product-content-slider {
    padding: 0;
    flex-grow: 0;
    background: var(--white);
    min-height: 0;
    display: none;
}

.product-desc {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    display: none;
    text-align: center;
}

/* Product Actions - Buttons - HIDDEN */
.product-actions {
    padding: 0;
    display: none;
    gap: 0.5rem;
    flex-direction: column;
    background: var(--white);
}

.btn-slider-primary,
.btn-slider-secondary {
    padding: 0.7rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-fast);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-slider-primary {
    background: linear-gradient(180deg, #076110 0%, #066710 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 3px 8px rgba(25, 135, 84, 0.25);
}

.btn-slider-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.35);
    background: linear-gradient(135deg, #157347 0%, #1ab386 100%);
}

.btn-slider-secondary {
    background: var(--white);
    color: var(--success-color);
    border: 2px solid var(--success-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.btn-slider-secondary:hover {
    background: var(--success-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.25);
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid #076110;
    color: #076110;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
    background: #076110;
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(7, 97, 16, 0.3);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(1.0);
}

.slider-arrow-left {
    left: 10px;
}

.slider-arrow-right {
    right: 10px;
}

.slider-arrow i {
    font-size: 1.2rem;
    font-weight: 900;
}

/* Progress Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c0c0c0;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider-dot:hover {
    background: #076110;
    transform: scale(1.25);
    box-shadow: 0 3px 8px rgba(7, 97, 16, 0.3);
}

.slider-dot.active {
    background: linear-gradient(180deg, #076110 0%, #066710 100%);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(7, 97, 16, 0.4);
}

/* Play/Pause Button */
#playPauseBtn {
    padding: 0.8rem 2.25rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--transition-medium);
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(25, 135, 84, 0.2);
}

#playPauseBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(25, 135, 84, 0.3);
}

#playPauseBtn i {
    margin-right: 0.5rem;
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN - FIXED
======================================== */

/* Large Desktop (1400px+) - 5 slides */
@media (min-width: 1400px) {
    .product-slide {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Desktop (1200px - 1399px) - 4 slides */
@media (max-width: 1399px) {
    .product-slide {
        flex: 0 0 25%;
        max-width: 25%;
        min-width: 200px;
    }
    
    .product-image-wrapper {
        height: 220px;
        padding: 1.75rem 1.25rem;
    }
    
    .product-name-text {
        font-size: 0.85rem;
    }
}

/* Tablet Landscape (992px - 1199px) - 3 slides */
@media (max-width: 1199px) {
    .product-slide {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        min-width: 200px;
    }
    
    .slider-track {
        gap: 1.25rem;
    }
    
    .product-image-wrapper {
        height: 200px;
        padding: 1.5rem 1rem;
    }
    
    .display-4 {
        font-size: 2.25rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}

/* Tablet Portrait (768px - 991px) - 2 slides */
@media (max-width: 991px) {
    .products-slider-section {
        padding: 4rem 0;
    }
    
    .product-slide {
        flex: 0 0 50%;
        max-width: 50%;
        min-width: 220px;
    }
    
    .slider-wrapper {
        padding: 0;
    }
    
    .slider-track {
        gap: 1rem;
        padding: 1.25rem 0;
    }
    
    .product-image-wrapper {
        height: 200px;
        padding: 1.5rem 1rem;
    }
    
    .product-name-bar {
        padding: 0.9rem 0.9rem;
    }
    
    .product-name-text {
        font-size: 0.85rem;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    .slider-arrow i {
        font-size: 1.1rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .bg-success-light {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
    }
}

/* Mobile Landscape (576px - 767px) - 1 slide */
@media (max-width: 767px) {
    .products-slider-section {
        padding: 3.5rem 0;
    }
    
    .product-slide {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
    }
    
    .slider-wrapper {
        padding: 0;
    }
    
    .slider-track {
        gap: 0.75rem;
        padding: 1rem 0;
    }
    
    .product-card-slider {
        border-width: 2px;
    }
    
    .product-image-wrapper {
        height: 250px;
        padding: 1.75rem 1.25rem;
    }
    
    .product-name-bar {
        padding: 1rem 0.875rem;
        border-top-width: 2px;
    }
    
    .product-name-text {
        font-size: 1rem;
    }
    
    .slider-arrow {
        width: 42px;
        height: 42px;
    }
    
    .slider-arrow-left {
        left: 5px;
    }
    
    .slider-arrow-right {
        right: 5px;
    }
    
    .slider-arrow i {
        font-size: 1rem;
    }
    
    .slider-dots {
        gap: 0.6rem;
        margin-top: 1.5rem;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 28px;
    }
    
    .display-4 {
        font-size: 1.85rem;
    }
    
    .lead {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .bg-success-light {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
}

/* Mobile Portrait (481px - 575px) */
@media (max-width: 575px) {
    .products-slider-section {
        padding: 3rem 0;
    }
    
    .product-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .slider-track {
        gap: 0.5rem;
        padding: 0.75rem 0;
    }
    
    .product-image-wrapper {
        height: 220px;
        padding: 1.5rem 1rem;
    }
    
    .product-name-bar {
        padding: 0.9rem 0.75rem;
    }
    
    .product-name-text {
        font-size: 0.95rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow-left {
        left: 3px;
    }
    
    .slider-arrow-right {
        right: 3px;
    }
    
    .slider-arrow i {
        font-size: 0.95rem;
    }
    
    .slider-dots {
        gap: 0.5rem;
        margin-top: 1.25rem;
    }
    
    .slider-dot {
        width: 9px;
        height: 9px;
    }
    
    .slider-dot.active {
        width: 24px;
    }
    
    .display-4 {
        font-size: 1.65rem;
        line-height: 1.3;
    }
    
    .lead {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .bg-success-light {
        font-size: 0.65rem;
        padding: 0.45rem 0.875rem;
    }
    
    #playPauseBtn {
        padding: 0.7rem 1.75rem;
        font-size: 0.8rem;
    }
}

/* Small Mobile (376px - 480px) */
@media (max-width: 480px) {
    .products-slider-section {
        padding: 2.5rem 0;
    }
    
    .product-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .product-image-wrapper {
        height: 200px;
        padding: 1.25rem 0.875rem;
    }
    
    .product-name-bar {
        padding: 0.85rem 0.625rem;
    }
    
    .product-name-text {
        font-size: 0.9rem;
        letter-spacing: 0.2px;
    }
    
    .slider-arrow {
        width: 38px;
        height: 38px;
    }
    
    .slider-arrow i {
        font-size: 0.9rem;
    }
    
    .display-4 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 0.85rem;
    }
    
    .bg-success-light {
        font-size: 0.6rem;
        padding: 0.4rem 0.75rem;
    }
}

/* Extra Small Mobile (320px - 375px) */
@media (max-width: 375px) {
    .products-slider-section {
        padding: 2rem 0;
    }
    
    .product-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .product-image-wrapper {
        height: 180px;
        padding: 1rem 0.75rem;
    }
    
    .product-name-bar {
        padding: 0.8rem 0.5rem;
    }
    
    .product-name-text {
        font-size: 0.85rem;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    .slider-arrow i {
        font-size: 0.85rem;
    }
    
    .slider-dots {
        gap: 0.4rem;
        margin-top: 1rem;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dot.active {
        width: 20px;
    }
    
    .display-4 {
        font-size: 1.35rem;
    }
    
    .lead {
        font-size: 0.8rem;
    }
    
    .bg-success-light {
        font-size: 0.55rem;
        padding: 0.35rem 0.65rem;
    }
    
    #playPauseBtn {
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
    }
    
    #playPauseBtn i {
        font-size: 0.8rem;
    }
}

/* Landscape Mode Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .products-slider-section {
        padding: 2rem 0;
    }
    
    .product-image-wrapper {
        height: 150px;
        padding: 0.75rem 0.5rem;
    }
    
    .product-name-bar {
        padding: 0.7rem 0.5rem;
    }
    
    .slider-arrow {
        width: 34px;
        height: 34px;
    }
    
    .display-4 {
        font-size: 1.5rem;
    }
}








/* Testimonials Section */
.testimonials {
    padding: 80px 0;
         background: linear-gradient(180deg, #023507 0%, #05540d 100%);

}

.testimonial-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(140, 198, 63, 0.2);
}

.quote-icon i {
    font-size: 36px;
    color: var(--primary-green);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author h6 {
    color: #333;
    margin-top: 15px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: white;
}

.cta-box {
    padding: 20px;
}

.cta-section .btn-light {
    background: white;
    color: var(--primary-green);
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s;
}

.cta-section .btn-light:hover {
    background: var(--bright-yellow);
    color: #333;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-us,
    .product-categories,
    .animal-types,
    .testimonials {
        padding: 60px 0;
    }
    
    .cta-box .col-lg-4 {
        margin-top: 20px;
        text-align: center !important;
    }
    
    .cta-section .btn-light {
        width: 100%;
    }
}








/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--bright-yellow), var(--primary-green));
}

/* Footer Main Area */

.footer-main-area {
  padding: 10px;
}

/* Footer Widget 
.footer-widget {
    padding-right: 20px;
}*/

.footer-logo .brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
}

.footer-desc {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Certification Badges */
.footer-certifications {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cert-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

/* Footer Titles */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--bright-yellow);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 8px;
    color: var(--primary-green);
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--bright-yellow);
    transform: translateX(5px);
}

.footer-links.compact li {
    margin-bottom: 8px;
}

.footer-links.compact a {
    font-size: 13px;
}

/* Contact Info */
.contact-info {
    margin-bottom: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    
    color: #b0b0b0;
}

.contact-item i {
    color: var(--primary-green);
    font-size: 18px;
    margin-right: 9px;
    margin-top: 5px;
    min-width: 2px;
}

.contact-item span {
    font-size: 14px;
    
}

.contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--bright-yellow);
}

/* Footer Map */
.footer-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Social Section */
.footer-social-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    border-radius: 15px;
    margin-top: 20px;
}

.social-heading {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 18px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(140, 198, 63, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: #b0b0b0;
    margin: 0;
    font-size: 14px;
}

.copyright-text strong {
    color: var(--primary-green);
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--bright-yellow);
}

.footer-bottom-links .separator {
    color: #666;
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main-area {
        padding: 60px 0 30px;
    }
    
    .footer-widget {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-social-section {
        text-align: center;
    }
    
    .social-heading {
        margin-bottom: 20px;
    }
    
    .footer-map iframe {
        height: 200px;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
    }
}










/* FIRST PAGE CATTLE.PHP CSS  */
/* Cattle Page Specific Styles - DO NOT override topbar, header, or global styles */
        
        /* Ensure no body/html overrides */
        body.cattle-page {
            margin: 0 !important;
            padding: 0 !important;
        }

        /* DO NOT add any styles for .top-bar, .social-links, .navbar, or header elements */
        /* These are controlled by css/style.css */

        /* Hero Banner Section - Scoped to cattle page only */
        body.cattle-page section.hero-banner {
            position: relative;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%);
            padding: 100px 0 80px;
            overflow: hidden;
            margin-top: 0;
        }

        body.cattle-page section.hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/cattlebanne.jpeg') center/cover;
            opacity: 0.15;
            z-index: 0;
        }

        body.cattle-page section.hero-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, transparent, #f8f9fa);
            z-index: 1;
        }

        body.cattle-page .hero-content {
            position: relative;
            z-index: 2;
        }

        body.cattle-page .hero-badge {
            display: inline-block;
            background: rgba(40, 167, 69, 0.9);
            color: white;
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        body.cattle-page .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        body.cattle-page .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        body.cattle-page .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        body.cattle-page .stat-item {
            text-align: center;
            color: white;
        }

        body.cattle-page .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            color: #28a745;
        }

        body.cattle-page .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Section Header */
        body.cattle-page .section-header {
            margin-bottom: 60px;
            text-align: center;
        }

        body.cattle-page .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        body.cattle-page .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        body.cattle-page .section-title .highlight {
            color: #28a745;
            position: relative;
        }

        body.cattle-page .section-description {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Products Section */
        body.cattle-page section.products-section {
            background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
            padding: 80px 0;
        }

        body.cattle-page .product-card {
           background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
        }

        body.cattle-page .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(40, 167, 69, 0.2);
        }

        body.cattle-page .product-card-header {
            padding: 25px 20px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        body.cattle-page .product-card-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.1);
            transform: rotate(45deg);
            transition: all 0.5s;
        }

        body.cattle-page .product-card:hover .product-card-header::before {
            right: -100%;
        }

        body.cattle-page .product-card-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 1;
            letter-spacing: 1px;
        }

        body.cattle-page .product-card-body {
              padding: 30px 25px;
    text-align: left;
    flex: 1;
        }

        body.cattle-page .product-card-body img {
            width: 100%;
            max-height: 200px;
            object-fit: contain;
            margin-bottom: 20px;
            border-radius: 10px;
        }

        body.cattle-page .product-card-body h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        body.cattle-page .product-card-body p {
            font-size: 0.95rem;
            color: #6c757d;
            margin-bottom: 12px;
            line-height: 1.6;
        }

        body.cattle-page .product-card-body p strong {
            color: #2c3e50;
            font-weight: 600;
        }

        body.cattle-page .product-card-body ul {
            list-style: none;
            padding: 0;
            margin-bottom: 15px;
        }

        body.cattle-page .product-card-body ul li {
            font-size: 0.9rem;
            color: #495057;
            margin-bottom: 10px;
            position: relative;
            padding-left: 28px;
            line-height: 1.5;
        }

        body.cattle-page .product-card-body ul li:before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #28a745;
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 1.1rem;
        }

        body.cattle-page .product-card-actions {
             padding: 20px 25px 30px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #f8f9fa;
    margin-top: auto;
        }

        body.cattle-page .btn-custom-primary {
            background: linear-gradient(135deg, #28a745, #218838);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            margin-right: 10px;
            transition: all 0.3s;
            display: inline-block;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
            border: none;
        }

        body.cattle-page .btn-custom-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
            color: white;
        }

        body.cattle-page .btn-custom-secondary {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
            border: none;
        }

        body.cattle-page .btn-custom-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
            color: white;
        }

        /* Contact Section - Scoped */
        body.cattle-page section.contact-social {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
            color: white;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        body.cattle-page section.contact-social::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50L50 100L0 50z" fill="rgba(255,255,255,0.03)"/></svg>');
            background-size: 100px 100px;
            opacity: 0.5;
        }

        body.cattle-page section.contact-social .container {
            position: relative;
            z-index: 1;
        }

        body.cattle-page section.contact-social h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        body.cattle-page .btn-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 30px;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            border: none;
        }

        body.cattle-page .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
            color: white;
        }

        /* Contact Section Social Links - Different from topbar */
        body.cattle-page section.contact-social .social-links {
            margin-top: 20px;
            display: block !important; /* Override any hide rules */
        }

        body.cattle-page section.contact-social .social-links a {
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
            margin: 0 10px;
            text-align: center;
            font-size: 1.2rem;
        }

        body.cattle-page section.contact-social .social-links a:hover {
            background: #28a745;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
            color: white;
        }

        body.cattle-page section.contact-social .social-links a i {
            line-height: 50px;
            vertical-align: middle;
        }

        @media (max-width: 768px) {
            body.cattle-page .hero-title {
                font-size: 2.5rem;
            }

            body.cattle-page .hero-subtitle {
                font-size: 1.1rem;
            }

            body.cattle-page .section-title {
                font-size: 2rem;
            }

            body.cattle-page .btn-custom-primary,
            body.cattle-page .btn-custom-secondary {
                display: block;
                margin: 10px auto;
                width: 90%;
            }

            /* Keep contact section social visible on mobile */
            body.cattle-page section.contact-social .social-links {
                display: block !important;
            }
        }















        /*SECOND PAGE POULTRY-SWINE.PHP CSS PART  */


         /* Poultry-Swine Page Specific Styles - DO NOT override topbar, header, or global styles */
        
        /* Ensure no body/html overrides */
        body.poultry-swine-page {
            margin: 0 !important;
            padding: 0 !important;
        }

        /* Hero Banner Section - Scoped to poultry-swine page only */
        body.poultry-swine-page section.hero-banner {
            position: relative;
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #fbb034 100%);
            padding: 100px 0 80px;
            overflow: hidden;
            margin-top: 0;
        }

        body.poultry-swine-page section.hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/poultr.jpeg') center/cover;
            opacity: 0.15;
            z-index: 0;
        }

        body.poultry-swine-page section.hero-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, transparent, #f8f9fa);
            z-index: 1;
        }

        body.poultry-swine-page .hero-content {
            position: relative;
            z-index: 2;
        }

        body.poultry-swine-page .hero-badge {
            display: inline-block;
            background: rgba(255, 107, 53, 0.9);
            color: white;
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        body.poultry-swine-page .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        body.poultry-swine-page .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        body.poultry-swine-page .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        body.poultry-swine-page .stat-item {
            text-align: center;
            color: white;
        }

        body.poultry-swine-page .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            color: #fff;
        }

        body.poultry-swine-page .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Section Header */
        body.poultry-swine-page .section-header {
            margin-bottom: 60px;
            text-align: center;
        }

        body.poultry-swine-page .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        body.poultry-swine-page .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        body.poultry-swine-page .section-title .highlight {
            color: #ff6b35;
            position: relative;
        }

        body.poultry-swine-page .section-description {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Products Section */
        body.poultry-swine-page section.products-section {
            background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
            padding: 80px 0;
        }

    body.poultry-swine-page .product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

        body.poultry-swine-page .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
        }

        body.poultry-swine-page .product-card-header {
            padding: 25px 20px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        body.poultry-swine-page .product-card-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.1);
            transform: rotate(45deg);
            transition: all 0.5s;
        }

        body.poultry-swine-page .product-card:hover .product-card-header::before {
            right: -100%;
        }

        body.poultry-swine-page .product-card-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 1;
            letter-spacing: 1px;
        }

        body.poultry-swine-page .product-card-body {
        padding: 30px 25px;
        text-align: left;
        flex: 1;
}

        body.poultry-swine-page .product-card-body img {
            width: 100%;
            max-height: 200px;
            object-fit: contain;
            margin-bottom: 20px;
            border-radius: 10px;
        }

        body.poultry-swine-page .product-card-body h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        body.poultry-swine-page .product-card-body p {
            font-size: 0.95rem;
            color: #6c757d;
            margin-bottom: 12px;
            line-height: 1.6;
        }

        body.poultry-swine-page .product-card-body p strong {
            color: #2c3e50;
            font-weight: 600;
        }

        body.poultry-swine-page .product-card-body ul {
            list-style: none;
            padding: 0;
            margin-bottom: 15px;
        }

        body.poultry-swine-page .product-card-body ul li {
            font-size: 0.9rem;
            color: #495057;
            margin-bottom: 10px;
            position: relative;
            padding-left: 28px;
            line-height: 1.5;
        }

        body.poultry-swine-page .product-card-body ul li:before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #ff6b35;
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 1.1rem;
        }

        body.poultry-swine-page .product-card-actions {
            padding: 20px 25px 30px;
            text-align: center;
            border-top: 1px solid rgba(0,0,0,0.05);
            background: #f8f9fa;
            margin-top: auto;
}

        body.poultry-swine-page .btn-custom-primary {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            margin-right: 10px;
            transition: all 0.3s;
            display: inline-block;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            border: none;
        }

        body.poultry-swine-page .btn-custom-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
            color: white;
        }

        body.poultry-swine-page .btn-custom-secondary {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
            border: none;
        }

        body.poultry-swine-page .btn-custom-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
            color: white;
        }

        /* Contact Section - Scoped */
        body.poultry-swine-page section.contact-social {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
            color: white;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        body.poultry-swine-page section.contact-social::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50L50 100L0 50z" fill="rgba(255,255,255,0.03)"/></svg>');
            background-size: 100px 100px;
            opacity: 0.5;
        }

        body.poultry-swine-page section.contact-social .container {
            position: relative;
            z-index: 1;
        }

        body.poultry-swine-page section.contact-social h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        body.poultry-swine-page .btn-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 30px;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            border: none;
        }

        body.poultry-swine-page .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
            color: white;
        }

        /* Contact Section Social Links - Different from topbar */
        body.poultry-swine-page section.contact-social .social-links {
            margin-top: 20px;
            display: block !important;
        }

        body.poultry-swine-page section.contact-social .social-links a {
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
            margin: 0 10px;
            text-align: center;
            font-size: 1.2rem;
        }

        body.poultry-swine-page section.contact-social .social-links a:hover {
            background: #ff6b35;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
            color: white;
        }

        body.poultry-swine-page section.contact-social .social-links a i {
            line-height: 50px;
            vertical-align: middle;
        }

        @media (max-width: 768px) {
            body.poultry-swine-page .hero-title {
                font-size: 2.5rem;
            }

            body.poultry-swine-page .hero-subtitle {
                font-size: 1.1rem;
            }

            body.poultry-swine-page .section-title {
                font-size: 2rem;
            }

            body.poultry-swine-page .btn-custom-primary,
            body.poultry-swine-page .btn-custom-secondary {
                display: block;
                margin: 10px auto;
                width: 90%;
            }

            body.poultry-swine-page section.contact-social .social-links {
                display: block !important;
            }
        }














        /*THIRD PAGE  PET.PHP CSS PART  */

 /* Pet Page Specific Styles - DO NOT override topbar, header, or global styles */
        
        /* Ensure no body/html overrides */
        body.pet-page {
            margin: 0 !important;
            padding: 0 !important;
        }

        /* Hero Banner Section - Scoped to pet page only */
        body.pet-page section.hero-banner {
            position: relative;
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
            padding: 100px 0 80px;
            overflow: hidden;
            margin-top: 0;
        }

        body.pet-page section.hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/dogss.png') center/cover;
            opacity: 0.15;
            z-index: 0;
        }

        body.pet-page section.hero-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, transparent, #f8f9fa);
            z-index: 1;
        }

        body.pet-page .hero-content {
            position: relative;
            z-index: 2;
        }

        body.pet-page .hero-badge {
            display: inline-block;
            background: rgba(139, 92, 246, 0.9);
            color: white;
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        body.pet-page .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        body.pet-page .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        body.pet-page .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        body.pet-page .stat-item {
            text-align: center;
            color: white;
        }

        body.pet-page .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            color: #fff;
        }

        body.pet-page .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Section Header */
        body.pet-page .section-header {
            margin-bottom: 60px;
            text-align: center;
        }

        body.pet-page .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
            color: white;
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        body.pet-page .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        body.pet-page .section-title .highlight {
            color: #8b5cf6;
            position: relative;
        }

        body.pet-page .section-description {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Products Section */
        body.pet-page section.products-section {
            background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
            padding: 80px 0;
        }

        body.pet-page .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
        }

        body.pet-page .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
        }

        body.pet-page .product-card-header {
            padding: 25px 20px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        body.pet-page .product-card-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.1);
            transform: rotate(45deg);
            transition: all 0.5s;
        }

        body.pet-page .product-card:hover .product-card-header::before {
            right: -100%;
        }

        body.pet-page .product-card-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 1;
            letter-spacing: 1px;
        }

        body.pet-page .product-card-body {
            padding: 30px 25px;
            text-align: left;
            flex: 1;
        }

        body.pet-page .product-card-body img {
            width: 100%;
            max-height: 200px;
            object-fit: contain;
            margin-bottom: 20px;
            border-radius: 10px;
        }

        body.pet-page .product-card-body h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        body.pet-page .product-card-body p {
            font-size: 0.95rem;
            color: #6c757d;
            margin-bottom: 12px;
            line-height: 1.6;
        }

        body.pet-page .product-card-body p strong {
            color: #2c3e50;
            font-weight: 600;
        }

        body.pet-page .product-card-body ul {
            list-style: none;
            padding: 0;
            margin-bottom: 15px;
        }

        body.pet-page .product-card-body ul li {
            font-size: 0.9rem;
            color: #495057;
            margin-bottom: 10px;
            position: relative;
            padding-left: 28px;
            line-height: 1.5;
        }

        body.pet-page .product-card-body ul li:before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #8b5cf6;
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 1.1rem;
        }

        body.pet-page .product-card-actions {
            padding: 20px 25px 30px;
            text-align: center;
            border-top: 1px solid rgba(0,0,0,0.05);
            background: #f8f9fa;
            margin-top: auto;
        }

        body.pet-page .btn-custom-primary {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            margin-right: 10px;
            transition: all 0.3s;
            display: inline-block;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
            border: none;
        }

        body.pet-page .btn-custom-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
            color: white;
        }

        body.pet-page .btn-custom-secondary {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
            border: none;
        }

        body.pet-page .btn-custom-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
            color: white;
        }

        /* Contact Section - Scoped */
        body.pet-page section.contact-social {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
            color: white;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        body.pet-page section.contact-social::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50L50 100L0 50z" fill="rgba(255,255,255,0.03)"/></svg>');
            background-size: 100px 100px;
            opacity: 0.5;
        }

        body.pet-page section.contact-social .container {
            position: relative;
            z-index: 1;
        }

        body.pet-page section.contact-social h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        body.pet-page .btn-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 30px;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            border: none;
        }

        body.pet-page .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
            color: white;
        }

        /* Contact Section Social Links - Different from topbar */
        body.pet-page section.contact-social .social-links {
            margin-top: 20px;
            display: block !important;
        }

        body.pet-page section.contact-social .social-links a {
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
            margin: 0 10px;
            text-align: center;
            font-size: 1.2rem;
        }

        body.pet-page section.contact-social .social-links a:hover {
            background: #8b5cf6;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
            color: white;
        }

        body.pet-page section.contact-social .social-links a i {
            line-height: 50px;
            vertical-align: middle;
        }

        @media (max-width: 768px) {
            body.pet-page .hero-title {
                font-size: 2.5rem;
            }

            body.pet-page .hero-subtitle {
                font-size: 1.1rem;
            }

            body.pet-page .section-title {
                font-size: 2rem;
            }

            body.pet-page .btn-custom-primary,
            body.pet-page .btn-custom-secondary {
                display: block;
                margin: 10px auto;
                width: 90%;
            }

            body.pet-page section.contact-social .social-links {
                display: block !important;
            }
        }




















        /* 4TH PAGE AQUA.PHP CSS PART */ 

         /* Aqua Page Specific Styles - DO NOT override topbar, header, or global styles */
        
        /* Ensure no body/html overrides */
        body.aqua-page {
            margin: 0 !important;
            padding: 0 !important;
        }

        /* Hero Banner Section - Scoped to aqua page only */
        body.aqua-page section.hero-banner {
            position: relative;
            background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #67e8f9 100%);
            padding: 100px 0 80px;
            overflow: hidden;
            margin-top: 0;
        }

        body.aqua-page section.hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/fish.jpg') center/cover;
            opacity: 0.15;
            z-index: 0;
        }

        body.aqua-page section.hero-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, transparent, #f8f9fa);
            z-index: 1;
        }

        body.aqua-page .hero-content {
            position: relative;
            z-index: 2;
        }

        body.aqua-page .hero-badge {
            display: inline-block;
            background: rgba(8, 145, 178, 0.9);
            color: white;
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        body.aqua-page .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        body.aqua-page .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        body.aqua-page .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        body.aqua-page .stat-item {
            text-align: center;
            color: white;
        }

        body.aqua-page .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            color: #fff;
        }

        body.aqua-page .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Section Header */
        body.aqua-page .section-header {
            margin-bottom: 60px;
            text-align: center;
        }

        body.aqua-page .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #0891b2, #06b6d4);
            color: white;
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        body.aqua-page .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        body.aqua-page .section-title .highlight {
            color: #0891b2;
            position: relative;
        }

        body.aqua-page .section-description {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Products Section */
        body.aqua-page section.products-section {
            background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
            padding: 80px 0;
        }

        body.aqua-page .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
        }

        body.aqua-page .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(8, 145, 178, 0.2);
        }

        body.aqua-page .product-card-header {
            padding: 25px 20px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        body.aqua-page .product-card-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.1);
            transform: rotate(45deg);
            transition: all 0.5s;
        }

        body.aqua-page .product-card:hover .product-card-header::before {
            right: -100%;
        }

        body.aqua-page .product-card-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 1;
            letter-spacing: 1px;
        }

        body.aqua-page .product-card-body {
            padding: 30px 25px;
            text-align: left;
            flex: 1;
        }

        body.aqua-page .product-card-body img {
            width: 100%;
            max-height: 200px;
            object-fit: contain;
            margin-bottom: 20px;
            border-radius: 10px;
        }

        body.aqua-page .product-card-body h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        body.aqua-page .product-card-body p {
            font-size: 0.95rem;
            color: #6c757d;
            margin-bottom: 12px;
            line-height: 1.6;
        }

        body.aqua-page .product-card-body p strong {
            color: #2c3e50;
            font-weight: 600;
        }

        body.aqua-page .product-card-body ul {
            list-style: none;
            padding: 0;
            margin-bottom: 15px;
        }

        body.aqua-page .product-card-body ul li {
            font-size: 0.9rem;
            color: #495057;
            margin-bottom: 10px;
            position: relative;
            padding-left: 28px;
            line-height: 1.5;
        }

        body.aqua-page .product-card-body ul li:before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #0891b2;
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 1.1rem;
        }

        body.aqua-page .product-card-actions {
            padding: 20px 25px 30px;
            text-align: center;
            border-top: 1px solid rgba(0,0,0,0.05);
            background: #f8f9fa;
            margin-top: auto;
        }

        body.aqua-page .btn-custom-primary {
            background: linear-gradient(135deg, #0891b2, #0a7ea4);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            margin-right: 10px;
            transition: all 0.3s;
            display: inline-block;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
            border: none;
        }

        body.aqua-page .btn-custom-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(8, 145, 178, 0.4);
            color: white;
        }

        body.aqua-page .btn-custom-secondary {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
            border: none;
        }

        body.aqua-page .btn-custom-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
            color: white;
        }

        /* Contact Section - Scoped */
        body.aqua-page section.contact-social {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
            color: white;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        body.aqua-page section.contact-social::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50L50 100L0 50z" fill="rgba(255,255,255,0.03)"/></svg>');
            background-size: 100px 100px;
            opacity: 0.5;
        }

        body.aqua-page section.contact-social .container {
            position: relative;
            z-index: 1;
        }

        body.aqua-page section.contact-social h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        body.aqua-page .btn-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 30px;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            border: none;
        }

        body.aqua-page .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
            color: white;
        }

        /* Contact Section Social Links - Different from topbar */
        body.aqua-page section.contact-social .social-links {
            margin-top: 20px;
            display: block !important;
        }

        body.aqua-page section.contact-social .social-links a {
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
            margin: 0 10px;
            text-align: center;
            font-size: 1.2rem;
        }

        body.aqua-page section.contact-social .social-links a:hover {
            background: #0891b2;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(8, 145, 178, 0.4);
            color: white;
        }

        body.aqua-page section.contact-social .social-links a i {
            line-height: 50px;
            vertical-align: middle;
        }

        @media (max-width: 768px) {
            body.aqua-page .hero-title {
                font-size: 2.5rem;
            }

            body.aqua-page .hero-subtitle {
                font-size: 1.1rem;
            }

            body.aqua-page .section-title {
                font-size: 2rem;
            }

            body.aqua-page .btn-custom-primary,
            body.aqua-page .btn-custom-secondary {
                display: block;
                margin: 10px auto;
                width: 90%;
            }

            body.aqua-page section.contact-social .social-links {
                display: block !important;
            }
        }










        /* 4TH PAGE  EQUINE.PHP CSS PART */

         /* Equine Page Specific Styles - DO NOT override topbar, header, or global styles */
        
        /* Ensure no body/html overrides */
        body.equine-page {
            margin: 0 !important;
            padding: 0 !important;
        }

        /* Hero Banner Section - Scoped to equine page only */
        body.equine-page section.hero-banner {
            position: relative;
            background: linear-gradient(135deg, #92400e 0%, #b45309 50%, #d97706 100%);
            padding: 100px 0 80px;
            overflow: hidden;
            margin-top: 0;
        }

        body.equine-page section.hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/cattlebanner.png') center/cover;
            opacity: 0.15;
            z-index: 0;
        }

        body.equine-page section.hero-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, transparent, #f8f9fa);
            z-index: 1;
        }

        body.equine-page .hero-content {
            position: relative;
            z-index: 2;
        }

        body.equine-page .hero-badge {
            display: inline-block;
            background: rgba(146, 64, 14, 0.9);
            color: white;
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        body.equine-page .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        body.equine-page .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        body.equine-page .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        body.equine-page .stat-item {
            text-align: center;
            color: white;
        }

        body.equine-page .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            color: #fcd34d;
        }

        body.equine-page .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Section Header */
        body.equine-page .section-header {
            margin-bottom: 60px;
            text-align: center;
        }

        body.equine-page .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #92400e, #b45309);
            color: white;
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        body.equine-page .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        body.equine-page .section-title .highlight {
            color: #92400e;
            position: relative;
        }

        body.equine-page .section-description {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Products Section */
        body.equine-page section.products-section {
            background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
            padding: 80px 0;
        }

        body.equine-page .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
        }

        body.equine-page .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(146, 64, 14, 0.2);
        }

        body.equine-page .product-card-header {
            padding: 25px 20px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        body.equine-page .product-card-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.1);
            transform: rotate(45deg);
            transition: all 0.5s;
        }

        body.equine-page .product-card:hover .product-card-header::before {
            right: -100%;
        }

        body.equine-page .product-card-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 1;
            letter-spacing: 1px;
        }

        body.equine-page .product-card-body {
            padding: 30px 25px;
            text-align: left;
            flex: 1;
        }

        body.equine-page .product-card-body img {
            width: 100%;
            max-height: 200px;
            object-fit: contain;
            margin-bottom: 20px;
            border-radius: 10px;
        }

        body.equine-page .product-card-body h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        body.equine-page .product-card-body p {
            font-size: 0.95rem;
            color: #6c757d;
            margin-bottom: 12px;
            line-height: 1.6;
        }

        body.equine-page .product-card-body p strong {
            color: #2c3e50;
            font-weight: 600;
        }

        body.equine-page .product-card-body ul {
            list-style: none;
            padding: 0;
            margin-bottom: 15px;
        }

        body.equine-page .product-card-body ul li {
            font-size: 0.9rem;
            color: #495057;
            margin-bottom: 10px;
            position: relative;
            padding-left: 28px;
            line-height: 1.5;
        }

        body.equine-page .product-card-body ul li:before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #92400e;
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 1.1rem;
        }

        body.equine-page .product-card-actions {
            padding: 20px 25px 30px;
            text-align: center;
            border-top: 1px solid rgba(0,0,0,0.05);
            background: #f8f9fa;
            margin-top: auto;
        }

        body.equine-page .btn-custom-primary {
            background: linear-gradient(135deg, #92400e, #78350f);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            margin-right: 10px;
            transition: all 0.3s;
            display: inline-block;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(146, 64, 14, 0.3);
            border: none;
        }

        body.equine-page .btn-custom-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(146, 64, 14, 0.4);
            color: white;
        }

        body.equine-page .btn-custom-secondary {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
            border: none;
        }

        body.equine-page .btn-custom-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
            color: white;
        }

        /* Contact Section - Scoped */
        body.equine-page section.contact-social {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
            color: white;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        body.equine-page section.contact-social::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50L50 100L0 50z" fill="rgba(255,255,255,0.03)"/></svg>');
            background-size: 100px 100px;
            opacity: 0.5;
        }

        body.equine-page section.contact-social .container {
            position: relative;
            z-index: 1;
        }

        body.equine-page section.contact-social h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        body.equine-page .btn-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 30px;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            border: none;
        }

        body.equine-page .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
            color: white;
        }

        /* Contact Section Social Links - Different from topbar */
        body.equine-page section.contact-social .social-links {
            margin-top: 20px;
            display: block !important;
        }

        body.equine-page section.contact-social .social-links a {
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
            margin: 0 10px;
            text-align: center;
            font-size: 1.2rem;
        }

        body.equine-page section.contact-social .social-links a:hover {
            background: #92400e;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(146, 64, 14, 0.4);
            color: white;
        }

        body.equine-page section.contact-social .social-links a i {
            line-height: 50px;
            vertical-align: middle;
        }

        @media (max-width: 768px) {
            body.equine-page .hero-title {
                font-size: 2.5rem;
            }

            body.equine-page .hero-subtitle {
                font-size: 1.1rem;
            }

            body.equine-page .section-title {
                font-size: 2rem;
            }

            body.equine-page .btn-custom-primary,
            body.equine-page .btn-custom-secondary {
                display: block;
                margin: 10px auto;
                width: 90%;
            }

            body.equine-page section.contact-social .social-links {
                display: block !important;
            }
        }