/* ===================================
   Aaradhya Groups - Main Stylesheet
   Theme Color: Lemon (#F4D03F, #F9E79F)
   =================================== */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #F4D03F;
    --primary-dark: #D4AF37;
    --primary-light: #F9E79F;
    --secondary-color: #27AE60;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --text-color: #34495E;
    --white: #FFFFFF;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    position: relative;
}

/* ===== Navigation Bar ===== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background-color: var(--white) !important;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-dark) !important;
    transition: var(--transition);
}

.navbar-brand img {
    width: 36px;
    height: 36px;
    vertical-align: middle;
    display: inline-block;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark) !important;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(244, 208, 63, 0.25);
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* background: linear-gradient(135deg, rgba(244, 208, 63, 0.9), rgba(212, 175, 55, 0.9)), 
                url('../images/hero-bg.jpg') center/cover no-repeat; */
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.9), rgba(212, 175, 55, 0.9));
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

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

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== Buttons ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--dark-color);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-dark);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

/* ===== Features Section ===== */
.features-section {
    padding: 4rem 0;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

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

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-hover);
}

.feature-item h4 {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* ===== Products Section ===== */
.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 208, 63, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
}

.product-features i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* ===== Testimonials ===== */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stars i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin: 1rem 0;
}

.testimonial-author h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: #7F8C8D;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Stats Section ===== */
.stat-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.stat-box p {
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 5rem 0;
    position: relative;
}

.highlight-button {
    position: relative; 
    z-index: 10;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-color);
}

.footer h4, .footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer p {
    color: #BDC3C7;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(244, 208, 63, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #BDC3C7;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: #BDC3C7;
    margin-bottom: 0.75rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

/* ===== Scroll to Top Button ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--dark-color);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* ===== Page Header ===== */
.page-header {
    padding: 150px 0 100px;
    /* background: linear-gradient(135deg, rgba(244, 208, 63, 0.9), rgba(212, 175, 55, 0.9)),
                url('../images/hero-bg.jpg') center/cover no-repeat; */
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.9), rgba(212, 175, 55, 0.9));
    position: relative;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.page-header h1 {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 1rem 0 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-light);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
}

/* ===== About Page ===== */
.mission-card, .vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin: 0 auto 1rem;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
}

.team-social {
    display: flex;
    gap: 0.5rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.why-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cert-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cert-box i {
    font-size: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-label {
    color: var(--text-color);
    font-weight: 500;
}

/* ===== Products Page ===== */
.product-image-main {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-thumb {
    cursor: pointer;
    transition: var(--transition);
}

.product-thumb:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.product-rating {
    color: var(--text-color);
}

.spec-item {
    padding: 0.75rem;
    background: var(--light-color);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.spec-item i {
    margin-right: 0.5rem;
}

.variant-boxes {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.variant-box {
    background: var(--light-color);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.variant-box:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.variant-box i {
    font-size: 2rem;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.price-table {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #BDC3C7;
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 500;
    color: var(--text-color);
}

.price-value {
    font-weight: 700;
    color: var(--primary-dark);
}

.terms-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-box {
    padding: 2rem;
    transition: var(--transition);
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark-color);
    margin: 0 auto;
    transition: var(--transition);
}

.feature-box:hover .feature-icon-large {
    transform: scale(1.1) rotate(10deg);
}

/* ===== Gallery Page ===== */
.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.gallery-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 208, 63, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: var(--dark-color);
    padding: 1rem;
}

.video-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--dark-color);
}

.video-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder i:hover {
    transform: scale(1.2);
}

.stat-box-gallery {
    text-align: center;
    padding: 2rem;
}

.stat-box-gallery i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-box-gallery h3 {
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

/* ===== Contact Page ===== */
.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin: 0 auto 1.5rem;
}

.form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(244, 208, 63, 0.25);
}

.contact-sidebar {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.business-hours {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #BDC3C7;
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: var(--text-color);
}

.time {
    font-weight: 600;
    color: var(--primary-dark);
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
    color: var(--text-color);
    transition: var(--transition);
}

.social-link-contact:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.social-link-contact.facebook:hover {
    background: #3b5998;
    color: var(--white);
}

.social-link-contact.instagram:hover {
    background: #E1306C;
    color: var(--white);
}

.social-link-contact.linkedin:hover {
    background: #0077b5;
    color: var(--white);
}

.social-link-contact.whatsapp:hover {
    background: #25D366;
    color: var(--white);
}

.social-link-contact.youtube:hover {
    background: #FF0000;
    color: var(--white);
}

.quick-contact-box {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.certification-badge {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.cert-badges .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--light-color);
    color: var(--dark-color);
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--dark-color);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Section Headers ===== */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--dark-color);
    font-weight: 700;
}

.section-header p {
    color: var(--text-color);
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
    .hero-section {
        min-height: 80vh;
        padding-top: 100px;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 10px;
        box-shadow: var(--shadow);
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .feature-item {
        margin-bottom: 2rem;
    }
    
    .stat-box {
        margin-bottom: 1rem;
    }
    
    .team-member {
        margin-bottom: 2rem;
    }
    
    .value-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .variant-boxes {
        justify-content: center;
    }
    
    .price-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .scroll-top-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
    
    .form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-sidebar {
        margin-top: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .page-header {
        padding: 120px 0 80px;
    }
}

@media (max-width: 575px) {
    .social-icons {
        justify-content: center;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .product-actions .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    h1.display-3 {
        font-size: 2rem;
    }
    
    h1.display-4 {
        font-size: 1.75rem;
    }
}

/* ===== About Preview Section ===== */
.about-preview {
    padding: 5rem 0;
}

.about-stats {
    margin-top: 2rem;
}

/* ===== Products Preview Section ===== */
.products-preview {
    padding: 5rem 0;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-item {
    padding: 1rem;
}

/* ===== Company Story Section ===== */
.company-story {
    padding: 5rem 0;
}

/* ===== Mission Vision Section ===== */
.mission-vision {
    padding: 5rem 0;
}

/* ===== Values Section ===== */
.values-section {
    padding: 5rem 0;
}

/* ===== Management Team Section ===== */
.management-team {
    padding: 5rem 0;
}

/* ===== Why Choose Section ===== */
.why-choose {
    padding: 5rem 0;
}

.why-item {
    padding: 1rem;
}

/* ===== Certifications Section ===== */
.certifications {
    padding: 5rem 0;
}

/* ===== Stats Section About Page ===== */
.stats-section {
    padding: 5rem 0;
}

/* ===== Products Intro Section ===== */
.products-intro {
    padding: 3rem 0;
}

/* ===== Product Detail Section ===== */
.product-detail {
    padding: 5rem 0;
}

.product-specs {
    margin-bottom: 2rem;
}

.product-variants {
    margin-bottom: 2rem;
}

.packaging-info {
    margin-bottom: 2rem;
}

.price-info {
    margin-bottom: 2rem;
}

.product-actions {
    margin-top: 2rem;
}

/* ===== Export Terms Section ===== */
.export-terms {
    padding: 5rem 0;
}

.terms-card ul {
    list-style: none;
    padding: 0;
}

.terms-card ul li {
    padding: 0.5rem 0;
    color: var(--text-color);
}

.terms-card ul li::before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ===== Why Products Section ===== */
.why-products {
    padding: 5rem 0;
}

/* ===== Gallery Filter Section ===== */
.gallery-filter {
    padding: 2rem 0;
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: 3rem 0;
}

.gallery-item {
    padding: 0;
}

/* ===== Gallery Stats Section ===== */
.gallery-stats {
    padding: 5rem 0;
}

/* ===== Video Section ===== */
.video-section {
    padding: 5rem 0;
}

.video-info {
    padding: 1rem 0;
}

/* ===== Contact Info Section ===== */
.contact-info {
    padding: 5rem 0 3rem;
}

/* ===== Contact Form Section ===== */
.contact-form-section {
    padding: 3rem 0 5rem;
}

/* ===== Map Section ===== */
.map-section {
    padding: 5rem 0;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 5rem 0;
}

/* ===== Utility Classes ===== */
.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.text-primary-dark {
    color: var(--primary-dark);
}

.shadow-custom {
    box-shadow: var(--shadow);
}

.shadow-hover-custom {
    box-shadow: var(--shadow-hover);
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== Selection Color ===== */
::selection {
    background: var(--primary-color);
    color: var(--dark-color);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--dark-color);
}

/* ===== Print Styles ===== */
@media print {
    .navbar,
    .scroll-top-btn,
    .hero-section,
    .cta-section,
    .footer,
    .social-icons,
    .filter-buttons {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    h1 {
        font-size: 24pt;
    }
    
    h2 {
        font-size: 20pt;
    }
    
    h3 {
        font-size: 16pt;
    }
}