/* 
   MM Broilers - Premium Styling Custom Stylesheet
   Theme Colors: HSL Green, Golden Yellow, Deep Black, Soft White
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,600&display=swap');

:root {
    --primary-green: hsl(145, 60%, 18%);
    --primary-green-light: hsl(145, 50%, 25%);
    --accent-yellow: hsl(45, 90%, 52%);
    --accent-yellow-dark: hsl(42, 90%, 45%);
    --bg-dark: hsl(145, 12%, 8%);
    --bg-dark-card: hsl(145, 12%, 12%);
    --bg-light: hsl(45, 20%, 97%);
    --bg-light-card: #ffffff;
    --text-dark: hsl(145, 15%, 15%);
    --text-muted-dark: hsl(145, 8%, 45%);
    --text-light: #ffffff;
    --text-muted-light: hsl(145, 10%, 80%);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-lg: 20px;
    --border-radius-sm: 10px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

/* Base Styles & Smooth Scroll */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-muted-dark);
}

.section-padding {
    padding: 70px 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-yellow);
}

/* Typography Helpers */
.text-gradient-green {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-yellow {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-yellow-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Header Styling */
.section-title-wrapper {
    margin-bottom: 60px;
}
.section-subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-green-light);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(26, 74, 48, 0.08);
    border-radius: 50px;
    margin-bottom: 12px;
}
.section-title {
    font-size: 2.75rem;
    color: var(--primary-green);
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
    margin: 15px auto 0 auto;
}
.text-start .section-title::after {
    margin: 15px 0 0 0;
}

/* Buttons Styling */
.btn-primary-custom {
    background-color: var(--primary-green);
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary-green);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(26, 74, 48, 0.2);
}
.btn-primary-custom:hover {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 161, 20, 0.3);
}

.btn-secondary-custom {
    background-color: var(--accent-yellow);
    color: var(--primary-green);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid var(--accent-yellow);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(230, 161, 20, 0.2);
}
.btn-secondary-custom:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 74, 48, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid var(--text-light);
    transition: var(--transition-smooth);
}
.btn-outline-custom:hover {
    background-color: var(--text-light);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Header & Navbar Customization */
.custom-navbar {
    padding: 20px 0;
    transition: var(--transition-smooth);
    z-index: 1050;
    background-color: transparent;
}
.custom-navbar.scrolled {
    padding: 12px 0;
    background-color: rgba(26, 74, 48, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.navbar-brand-img {
    height: 50px;
    transition: var(--transition-smooth);
}
.custom-navbar.scrolled .navbar-brand-img {
    height: 42px;
}
.navbar-nav .nav-link {
    font-family: var(--font-body);
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    padding: 6px 15px !important;
    position: relative;
    transition: var(--transition-smooth);
    opacity: 0.9;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-yellow) !important;
    opacity: 1;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 18px;
    background-color: var(--accent-yellow);
    transition: var(--transition-smooth);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 36px);
}
/* Hero Section */
.hero-section {
    /* padding-top: 90px; Adjust based on navbar height */
    /* background: rgba(26, 74, 48, 0.95); */
}

/* .hero-section img {
    width: 100%;
    height: auto;
    display: block;
} */
.hero-content {
    animation: fadeInUp 1s ease-in-out;
}
.hero-tagline {
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--accent-yellow);
    font-weight: 700;
    text-transform: uppercase;
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 15px 0 25px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted-light);
    max-width: 600px;
    margin-bottom: 40px;
}
.hero-badge-container {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-badge i {
    font-size: 1.8rem;
    color: var(--accent-yellow);
}
.hero-badge span {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* About Us Section */
.about-section {
    background-color: var(--bg-light);
}
.about-image-wrapper {
    position: relative;
    padding-right: 30px;
}
.about-image-main {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
}
.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--text-light);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 30px rgba(26, 74, 48, 0.3);
    z-index: 3;
    text-align: center;
    border: 2px solid var(--accent-yellow);
}
.about-experience-badge h3 {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 0;
    font-weight: 800;
}
.about-experience-badge p {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0;
}
.about-feature-list {
    margin-top: 30px;
}
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.about-feature-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(26, 74, 48, 0.08);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.about-feature-title {
    font-size: 1.15rem;
    color: var(--primary-green);
    margin-bottom: 4px;
}
.counter-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    border-bottom: 4px solid var(--primary-green);
    transition: var(--transition-smooth);
}
.counter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.counter-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 5px;
}
.counter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Products Section */
.products-section {
    background-color: #ffffff;
}
.filter-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-btn {
    border: none;
    background-color: var(--bg-light);
    color: var(--primary-green);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}
.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-green);
    color: var(--text-light);
}

/* Premium Card Layout matching reference images */
.product-card {
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: visible; /* To allow the food tray overlapping */
    position: relative;
    margin-top: 50px; /* Space for tray overflow */
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 74, 48, 0.12);
}

.product-image-container {
    width: calc(100% - 40px);
    margin: -40px 20px 0 20px;
    height: 180px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
}
.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.product-card:hover .product-image-container img {
    transform: scale(1.1);
}

/* Circular price sticker overlapping */
.product-price-sticker {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: var(--accent-yellow);
    border: 4px solid #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: var(--transition-smooth);
}
.product-card:hover .product-price-sticker {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--primary-green);
    border-color: var(--accent-yellow);
}
.sticker-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 2px;
}
.product-card:hover .sticker-label {
    color: var(--accent-yellow);
}
.sticker-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    font-family: var(--font-body);
}
.product-card:hover .sticker-price {
    color: #ffffff;
}

.product-info-body {
    padding: 30px 25px 25px 25px;
    text-align: left;
}
.product-category-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-yellow-dark);
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}
.product-name {
    font-size: 1.35rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 700;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-description {
    font-size: 0.92rem;
    color: var(--text-muted-dark);
    margin-bottom: 15px;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 15px;
    margin-top: 15px;
}
.product-original-price {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: var(--text-muted-dark);
}
.product-unit-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted-dark);
    background-color: var(--bg-light);
    padding: 3px 10px;
    border-radius: 12px;
}
.product-card-cta {
    width: 100%;
    margin-top: 15px;
}
.btn-whatsapp-order {
    background-color: #25D366;
    color: #ffffff;
    border: none;
    width: 100%;
    font-weight: 600;
    padding: 10px;
    border-radius: 30px;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.15);
}
.btn-whatsapp-order:hover {
    background-color: #128C7E;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(18, 140, 126, 0.3);
}

/* Why Choose Us Section */
.why-choose-section {
      background-color: #e7fae9;
    color: var(--text-dark);
}

/* Image block */
.why-image-block {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}
.why-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    display: block;
}

/* Floating badge bottom-left */
.why-float-badge {
    position: absolute;
    bottom: -20px;
    left: 24px;
    background: var(--primary-green);
    color: #fff;
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(26,74,48,0.25);
    border: 3px solid #fff;
    min-width: 180px;
    z-index: 3;
}
.why-float-badge i {
    font-size: 1.8rem;
    color: var(--accent-yellow);
    flex-shrink: 0;
}
.why-float-badge strong {
    display: block;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}
.why-float-badge span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.75);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Small card top-right */
.why-float-card {
    position: absolute;
    top: 20px;
    right: -18px;
    background: var(--accent-yellow);
    border-radius: 16px;
    padding: 16px 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(230,161,20,0.3);
    border: 3px solid #fff;
    z-index: 3;
}
.why-float-card i {
    font-size: 1.6rem;
    color: var(--primary-green);
    display: block;
    margin-bottom: 6px;
}
.why-float-card p {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    line-height: 1.3;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Right content */
.why-content .section-title {
    color: var(--primary-green);
    font-size: 2.1rem;
    line-height: 1.2;
}
.why-intro-text {
    font-size: 0.98rem;
    color: var(--text-muted-dark);
    margin-top: 14px;
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 520px;
}

/* ── 8-card feature grid ── */
.why-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.why-feat-card {
    background: hsl(145, 18%, 96%);
    border: 1px solid rgba(26,74,48,0.08);
    border-radius: 14px;
    padding: 16px 12px 14px;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: default;
}
.why-feat-card:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(26,74,48,0.18);
}
.why-feat-card:hover .why-feat-icon {
    background: var(--accent-yellow);
    color: var(--primary-green);
}
.why-feat-card:hover span {
    color: #ffffff;
}

/* Highlighted card (last one) always stands out */
.why-feat-card--highlight {
    background: var(--primary-green);
    border-color: var(--primary-green);
}
.why-feat-card--highlight .why-feat-icon {
    background: var(--accent-yellow);
    color: var(--primary-green);
}
.why-feat-card--highlight span {
    color: #ffffff;
}

.why-feat-icon {
    width: 44px;
    height: 44px;
    background: rgba(26,74,48,0.10);
    color: var(--primary-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin: 0 auto 10px auto;
    transition: var(--transition-smooth);
}
.why-feat-card span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-body);
    line-height: 1.3;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: var(--transition-smooth);
}

/* ── Stats bar ── */
.why-stats-bar {
    margin-top: 70px;
    background: hsl(145, 18%, 96%);
    border-radius: 20px;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid rgba(26,74,48,0.07);
}
.why-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 130px;
}
.why-stat-item > i {
    font-size: 1.8rem;
    color: var(--primary-green);
    opacity: 0.75;
    flex-shrink: 0;
}
.why-stat-item strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-green);
    font-family: var(--font-body);
    line-height: 1.1;
}
.why-stat-item span {
    font-size: 0.78rem;
    color: var(--text-muted-dark);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.why-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(26,74,48,0.12);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .why-main-img { height: 360px; }
    .why-float-card { right: 10px; }
    .why-image-block { margin-bottom: 50px; }
    .why-stats-bar { padding: 24px; }
    .why-stat-divider { display: none; }
    .why-features-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 575.98px) {
    .why-main-img { height: 260px; }
    .why-float-badge { left: 12px; min-width: 150px; }
    .why-stats-bar { flex-direction: column; align-items: flex-start; }
    .why-stat-item { min-width: unset; }
    .why-content .section-title { font-size: 1.7rem; }
    .why-features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Wholesale Section */
.wholesale-section {
    background: linear-gradient(rgba(26, 74, 48, 0.9), rgba(26, 74, 48, 0.9)), url('https://images.unsplash.com/photo-1516467508483-a7212febe31a?q=80&w=1600&auto=format&fit=crop') center center/cover no-repeat fixed;
    color: var(--text-light);
}
.wholesale-section .section-title {
    color: #ffffff;
}
.wholesale-section .section-subtitle {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--accent-yellow);
}
.wholesale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.wholesale-item {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}
.wholesale-item:hover {
    background-color: var(--accent-yellow);
    transform: translateY(-5px);
}
.wholesale-item i {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}
.wholesale-item:hover i {
    color: var(--primary-green);
}
.wholesale-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
    transition: var(--transition-smooth);
}
.wholesale-item:hover h4 {
    color: var(--primary-green);
}

/* Gallery Section */
.gallery-section {
    background-color: #ffffff;
}
.gallery-card {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    height: 250px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    cursor: pointer;
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 74, 48, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}
.gallery-card:hover img {
    transform: scale(1.1);
}
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}
.gallery-overlay p {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}
.gallery-card:hover .gallery-overlay i,
.gallery-card:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Lightbox Modal custom styling */
.lightbox-modal .modal-content {
    background-color: transparent;
    border: none;
}
.lightbox-img-wrapper {
    position: relative;
}
.lightbox-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--bg-light);
}
.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
}
.testimonial-item {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    position: relative;
}
.testimonial-item::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3rem;
    color: rgba(26, 74, 48, 0.05);
    position: absolute;
    top: 25px;
    left: 40px;
}
.testimonial-rating {
    color: var(--accent-yellow);
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    border: 3px solid var(--accent-yellow);
}
.testimonial-author-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 2px;
}
.testimonial-author-role {
    font-size: 0.85rem;
    color: var(--text-muted-dark);
    font-weight: 500;
    text-transform: uppercase;
}

/* Contact Us Section matching the shared design (Image 1) */
.contact-section {
    background-color: #ffffff;
}
.contact-form-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}
.contact-info-widget {
    background-color: var(--primary-green);
    color: var(--text-light);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(26, 74, 48, 0.15);
}
.widget-title {
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 20px;
    position: relative;
}
.widget-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--accent-yellow);
    margin-top: 8px;
}
.contact-widget-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}
.contact-widget-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.08);
    color: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.contact-widget-content h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #ffffff;
}
.contact-widget-content p {
    color: var(--text-muted-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.contact-widget-content a {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 500;
}
.contact-widget-content a:hover {
    color: #ffffff;
}

/* Map Section Container */
.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    margin-top: 50px;
}

/* Footer Section */
.footer-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 5px solid var(--primary-green);
}
.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}
.footer-brand span {
    color: var(--accent-yellow);
}
.footer-description {
    color: var(--text-muted-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
}
.footer-social-links {
    display: flex;
    gap: 15px;
}
.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    text-decoration: none;
}
.footer-social-icon:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-green);
    transform: translateY(-3px);
}
.footer-heading {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--accent-yellow);
    bottom: 0;
    left: 0;
}
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-list li {
    margin-bottom: 12px;
}
.footer-links-list a {
    color: var(--text-muted-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}
.footer-links-list a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    margin-top: 60px;
}
.copyright-text {
    font-size: 0.9rem;
    color: var(--text-muted-light);
}

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

/* CSS Form Styles for neat look (Image 1 reference) */
.contact-form-card .form-group {
    margin-bottom: 25px;
}
.contact-form-card .form-control {
    background-color: #ffffff;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 12px 18px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
}
.contact-form-card .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 6px 15px rgba(26, 74, 48, 0.08);
    background-color: #ffffff;
    color: var(--text-dark);
}
.contact-form-card label {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
    font-size: 0.92rem;
}
/*.custom-navbar {*/
/*        background-color: var(--primary-green);*/
        
/*    }*/
/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .about-image-wrapper {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .about-experience-badge {
        bottom: -20px;
    }
    .custom-navbar {
        background-color: var(--primary-green);
        padding: 15px 0;
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-badge-container {
        flex-direction: column;
        gap: 15px;
    }
    .section-padding {
        padding: 60px 0;
    }
    .contact-form-card {
        padding: 25px;
    }
}
