/* ===================================
   Holistic Health & God's Way
   Main Stylesheet
   =================================== */

:root {
    /* Color Palette */
    --primary-green: #2e523d;
    --light-green: #a9cbb7;
    --orange-accent: #ffad60;
    --white: #ffffff;
    --light-gray: #f3f3f3;
    --text-dark: #2c2c2c;
    --text-gray: #7a7a7a;
    --teal-accent: #00cea6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
    line-height: 1.6;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background-color: var(--primary-green);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-brand .logo-icon {
    background-color: var(--orange-accent);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: var(--white);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--orange-accent) !important;
}

.contact-info {
    background-color: var(--orange-accent);
    padding: 8px 20px;
    border-radius: 25px;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info:hover {
    background-color: #ff9a48;
    transform: translateY(-2px);
}

/* ===================================
   HERO SECTIONS
   =================================== */
.hero-section {
    min-height: 600px;
    background: linear-gradient(rgba(46, 82, 61, 0.85), rgba(46, 82, 61, 0.85)),
                url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
}

.hero-section.page-hero {
    min-height: 350px;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--orange-accent);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-primary-custom {
    background-color: var(--orange-accent);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: #ff9a48;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 173, 96, 0.4);
    color: var(--white);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--white);
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    color: var(--white);
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
    content: "/";
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 4rem;
}

.section-subtitle {
    color: var(--orange-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   SERVICE CARDS (Portfolio Style)
   =================================== */
.service-card {
    position: relative;
    margin-bottom: 3rem;
    height: 100%;
    perspective: 1000px;
    cursor: pointer;
}

.card-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    background: linear-gradient(135deg, rgba(46, 82, 61, 0.05), rgba(255, 173, 96, 0.05));
    box-shadow:
        0 4px 20px rgba(46, 82, 61, 0.08),
        0 8px 40px rgba(46, 82, 61, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-card:hover .card-image-wrapper {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow:
        0 20px 60px rgba(255, 173, 96, 0.25),
        0 30px 80px rgba(46, 82, 61, 0.15),
        inset 0 1px 0 rgba(255,255,255,1);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.92) contrast(1.05) saturate(1.1);
}

.service-card:hover .card-image {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.1) saturate(1.15);
}

/* Glassmorphism Overlay */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(46, 82, 61, 0.1) 30%,
        rgba(46, 82, 61, 0.85) 100%
    );
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.6s ease;
    backdrop-filter: blur(0px);
}

.service-card:hover .card-overlay {
    background: linear-gradient(
        180deg,
        rgba(255, 173, 96, 0.2) 0%,
        rgba(255, 173, 96, 0.4) 40%,
        rgba(46, 82, 61, 0.95) 100%
    );
    backdrop-filter: blur(8px) saturate(180%);
}

/* Floating Icon with 3D effect */
.icon-circle {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffad60 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow:
        0 8px 24px rgba(255, 173, 96, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 -2px 8px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    z-index: 10;
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.icon-circle::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 173, 96, 0.4);
    animation: ringPulse 3s ease-in-out infinite;
}

.icon-circle::after {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 173, 96, 0.2);
    animation: ringRotate 8s linear infinite;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-card:hover .icon-circle {
    transform: scale(1.15) rotate(360deg) translateY(-5px);
    background: linear-gradient(135deg, #2e523d 0%, #1e3a2a 100%);
    box-shadow:
        0 15px 40px rgba(46, 82, 61, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2),
        inset 0 2px 6px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Modern Label with Glass Effect */
.card-label {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    letter-spacing: 0.3px;
}

.card-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.7s ease;
}

.service-card:hover .card-label {
    background: rgba(255, 173, 96, 0.35);
    backdrop-filter: blur(25px) saturate(200%);
    transform: translateX(8px);
    box-shadow:
        0 12px 40px rgba(255, 173, 96, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.service-card:hover .card-label::before {
    left: 100%;
}

/* Description Text */
.card-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(15px) scale(0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-card:hover .card-description {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0) scale(1);
    margin-top: 0.8rem;
}

/* Bottom Content Section */
.card-text-content {
    padding: 1.8rem 1.2rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    margin: 1rem;
    border-radius: 16px;
    box-shadow:
        0 4px 20px rgba(46, 82, 61, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
}

.service-card:hover .card-text-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 250, 245, 0.95));
    transform: translateY(-8px);
    box-shadow:
        0 8px 30px rgba(255, 173, 96, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.card-text-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-accent), var(--primary-green));
    border-radius: 4px 4px 0 0;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .card-text-content::before {
    width: 80px;
}

.card-text-content::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 173, 96, 0.1) 50%);
    border-radius: 0 0 16px 0;
    transition: all 0.5s ease;
}

.service-card:hover .card-text-content::after {
    background: linear-gradient(135deg, transparent 50%, rgba(255, 173, 96, 0.2) 50%);
}

.card-text-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .card-text-content p {
    color: var(--text-dark);
    font-weight: 500;
}

/* Stagger Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-card {
    animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* ===================================
   PROCESS/HOW IT WORKS SECTION
   =================================== */
.process-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.process-icon {
    width: 75px;
    height: 75px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-right: 1.8rem;
    transition: all 0.3s ease;
}

.process-item:hover .process-icon {
    background-color: var(--orange-accent);
    color: var(--white);
    transform: scale(1.05);
}

.process-content h4 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.process-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   STATS CARDS
   =================================== */
.stats-card {
    background-color: var(--orange-accent);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 173, 96, 0.25);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 173, 96, 0.35);
}

.stats-card .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stats-card h3 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.stats-card p {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.stats-card.white {
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-card.white .icon {
    background-color: var(--orange-accent);
}

.stats-card.white h3 {
    color: var(--text-dark);
}

.stats-card.white p {
    color: var(--text-gray);
}

/* ===================================
   IMAGE COLLAGE
   =================================== */
.image-collage {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.collage-image {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.collage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-large {
    top: 0;
    left: 0;
    width: 55%;
    height: 60%;
    z-index: 2;
}

.collage-small {
    bottom: 0;
    right: 0;
    width: 65%;
    height: 55%;
    z-index: 1;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 173, 96, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin-right: 1.5rem;
    font-weight: 700;
}

.testimonial-info h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.testimonial-info p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--orange-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    font-style: italic;
}

.testimonial-result {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
}

.testimonial-result strong {
    color: var(--primary-green);
    font-weight: 600;
}

/* ===================================
   FORMS
   =================================== */
.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--orange-accent);
    box-shadow: 0 0 0 0.2rem rgba(255, 173, 96, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

textarea.form-control {
    min-height: 150px;
}

/* ===================================
   CALL TO ACTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green), #1e3a2a);
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   PARTNER/SPONSOR SECTION
   =================================== */
.partner-section {
    background-color: var(--primary-green);
    padding: 4rem 0;
    overflow: hidden;
}

.partner-title {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.partner-scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partner-scroll-track {
    display: flex;
    gap: 5rem;
    animation: infiniteScroll 30s linear infinite;
    width: max-content;
}

.partner-scroll-wrapper:hover .partner-scroll-track {
    animation-play-state: paused;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.partner-icon {
    width: 50px;
    height: 50px;
    background-color: var(--orange-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.partner-text {
    display: flex;
    flex-direction: column;
}

.partner-name {
    color: var(--orange-accent);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.partner-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 4rem 0 2rem 0;
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-brand .logo-icon {
    background-color: var(--orange-accent);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--white);
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-phone {
    color: var(--orange-accent);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-top: 1rem;
    text-decoration: none;
}

.footer-phone:hover {
    color: #ff9a48;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--orange-accent);
}

.newsletter-input {
    background-color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    width: 100%;
    margin-bottom: 1rem;
}

.subscribe-btn {
    background-color: var(--orange-accent);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s;
}

.subscribe-btn:hover {
    background-color: #ff9a48;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: var(--orange-accent);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--orange-accent);
}

/* ===================================
   PROGRESS BARS
   =================================== */
.progress-item {
    margin-bottom: 2rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.progress-label span {
    font-weight: 600;
    color: var(--text-dark);
}

.progress-label .percentage {
    color: var(--orange-accent);
}

.progress {
    height: 10px;
    border-radius: 10px;
    background-color: var(--light-gray);
}

.progress-bar {
    background: linear-gradient(90deg, var(--orange-accent), var(--primary-green));
    border-radius: 10px;
}

/* ===================================
   ABOUT IMAGE BOX
   =================================== */
.image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin-bottom: 2rem;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.image-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(46, 82, 61, 0.95));
    padding: 2rem;
    color: var(--white);
}

.image-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.image-box-description {
    font-size: 0.95rem;
    margin: 0;
}

/* ===================================
   COMMITMENT SECTION
   =================================== */
.commitment-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* ===================================
   PRODUCT CARDS
   =================================== */
.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 173, 96, 0.2);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange-accent), #ff8c42);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-card ul {
    list-style: none;
    padding: 0;
}

.product-card li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange-accent);
    font-weight: 700;
}

/* ===================================
   BLOG CARDS
   =================================== */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 173, 96, 0.2);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.blog-category {
    background-color: var(--orange-accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.blog-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h3 a:hover {
    color: var(--orange-accent);
}

.blog-excerpt {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--orange-accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--primary-green);
}

/* ===================================
   CONTACT INFO BOXES
   =================================== */
.contact-info-box {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 173, 96, 0.2);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange-accent), #ff8c42);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-info-box h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-box p {
    color: var(--text-gray);
    margin: 0;
}

.contact-info-box a {
    color: var(--orange-accent);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-box a:hover {
    color: var(--primary-green);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .card-image-wrapper {
        height: 300px;
    }

    .image-collage {
        min-height: 400px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
