.hero-section {
    background: linear-gradient(rgba(15, 61, 46, 0.85), rgba(43, 43, 43, 0.85)), 
                url('../images/hero.avif') center center/cover no-repeat;
    color: var(--mist-white);
    padding: 120px 0;
    position: relative;
    width: 100%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--mist-white);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(245, 247, 246, 0.9);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: var(--muted-gold);
    border-color: var(--muted-gold);
    color: var(--charcoal-grey);
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    color: var(--muted-gold);
    border-color: var(--muted-gold);
}

.hero-buttons .btn-outline-primary {
    color: var(--mist-white);
    border-color: var(--mist-white);
    background: transparent;
}

.hero-buttons .btn-outline-primary:hover {
    background: var(--mist-white);
    color: var(--charcoal-grey);
    border-color: var(--mist-white);
}

/* WHY CHOOSE SECTION */
.why-choose-section {
    padding: 80px 0;
    background: var(--mist-white);
    position: relative;
    width: 100%;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.why-choose-section .section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--steel-grey);
    font-size: 1.05rem;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

.why-choose-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(15, 61, 46, 0.05);
    border: 1px solid rgba(194, 161, 77, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--muted-gold), var(--deep-forest-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(15, 61, 46, 0.12);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--deep-forest-green), rgba(15, 61, 46, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--muted-gold);
    font-size: 1.8rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(194, 161, 77, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.why-choose-card:hover .why-choose-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--muted-gold), rgba(194, 161, 77, 0.8));
    color: var(--deep-forest-green);
}

.why-choose-card:hover .why-choose-icon::after {
    width: 100%;
    height: 100%;
}

.why-choose-card h4 {
    color: var(--charcoal-grey);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.why-choose-card:hover h4 {
    color: var(--deep-forest-green);
}

.why-choose-card p {
    color: var(--steel-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* TESTIMONIAL SECTION */
.testimonial-section {
    padding: 80px 0;
    background: var(--pure-white);
    position: relative;
    width: 100%;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-section .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--steel-grey);
    font-size: 1.05rem;
}

.testimonial-carousel {
    position: relative;
    padding: 0 40px;
}

.testimonial-slide {
    padding: 20px;
}

.testimonial-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(15, 61, 46, 0.08);
    border: 1px solid rgba(194, 161, 77, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    font-family: serif;
    color: rgba(194, 161, 77, 0.08);
    line-height: 1;
    font-weight: bold;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(15, 61, 46, 0.12);
}

.testimonial-rating {
    color: var(--muted-gold);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-content {
    font-style: italic;
    color: var(--steel-grey);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(194, 161, 77, 0.2);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--muted-gold);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    color: var(--charcoal-grey);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author-info p {
    color: var(--steel-grey);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--deep-forest-green);
    border: none;
    border-radius: 50%;
    color: var(--pure-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.testimonial-nav:hover {
    background: var(--muted-gold);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(194, 161, 77, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--muted-gold);
    transform: scale(1.3);
}

.testimonial-dot:hover:not(.active) {
    background: rgba(194, 161, 77, 0.5);
}

/* SECTION COMMON STYLES */
.section-title {
    color: var(--charcoal-grey);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--muted-gold);
}

.section-title.center {
    text-align: center;
}

.section-title.center:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--steel-grey);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    line-height: 1.6;
}

/* BUTTON STYLES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-primary {
    background: var(--muted-gold);
    color: var(--charcoal-grey) !important;
    border-color: var(--muted-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--muted-gold) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(194, 161, 77, 0.2);
}

.btn-outline-primary {
    color: var(--muted-gold);
    border-color: var(--muted-gold);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--muted-gold);
    color: var(--charcoal-grey) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(194, 161, 77, 0.2);
}

/* RESPONSIVE DESIGN */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .testimonial-carousel {
        padding: 0 60px;
    }
    
    .testimonial-nav {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel {
        padding: 0 80px;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1400px) {
    .hero-section {
        padding: 140px 0 100px;
    }
    
    .hero-content,
    .why-choose-container,
    .testimonial-container {
        max-width: 1320px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-content,
    .why-choose-container,
    .testimonial-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .why-choose-section,
    .testimonial-section {
        padding: 60px 0;
    }
    
    .why-choose-section .section-subtitle,
    .testimonial-section .section-subtitle {
        margin-bottom: 30px;
        font-size: 0.95rem;
    }
    
    .why-choose-card {
        padding: 30px 20px;
    }
    
    .why-choose-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .testimonial-carousel {
        padding: 0 30px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-content {
        font-size: 0.95rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-nav.prev {
        left: 5px;
    }
    
    .testimonial-nav.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-carousel {
        padding: 0 20px;
    }

    
}