/* Why Choose Us Page - Green & Gold Theme */
.pricing-model {
    padding: 80px 0;
    background-color: var(--light); /* Light green background */
}

.pricing-model h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary); /* Deep green */
    position: relative;
}

.pricing-model h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary); /* Gold accent */
}

.model-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.traditional-model,
.our-model {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(42, 92, 61, 0.1), 
                0 2px 4px -1px rgba(42, 92, 61, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.15); /* Gold border */
}

.traditional-model:hover,
.our-model:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(42, 92, 61, 0.15), 
                0 4px 6px -2px rgba(42, 92, 61, 0.1);
}

.model-comparison h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary); /* Deep green */
    font-size: 24px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3); /* Light gold */
}

.model-visual {
    margin-bottom: 30px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.boat {
    background-color: var(--light); /* Light green */
    color: var(--dark); /* Dark green text */
    padding: 15px 30px;
    border-radius: 30px;
    margin: 10px 0;
    position: relative;
    font-weight: 600;
    width: 120px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(42, 92, 61, 0.1);
}

.boat::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--light); /* Matches boat color */
}

.shared-boat {
    background-color: var(--primary); /* Deep green */
    color: white;
    padding: 25px;
    border-radius: 40px;
    width: 200px;
    text-align: center;
    position: relative;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(42, 92, 61, 0.2);
}

.shared-boat::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--primary); /* Matches boat color */
}

.shared-boat span {
    display: inline-block;
    margin: 0 10px;
    color: var(--secondary-light); /* Light gold */
}

.model-comparison ul {
    list-style-position: inside;
    padding-left: 10px;
}

.model-comparison ul li {
    margin-bottom: 12px;
    color: var(--text); /* Dark green text */
    line-height: 1.6;
}

.model-comparison ul li::marker {
    color: var(--secondary); /* Gold bullets */
}

/* Transparency Section */
.transparency-section {
    padding: 80px 0;
    background-color: white;
}

.transparency-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.transparency-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary); /* Deep green */
    position: relative;
    padding-bottom: 15px;
}

.transparency-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--secondary); /* Gold accent */
}

.transparency-content p {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text); /* Dark green text */
    line-height: 1.6;
}

.transparency-content ul {
    margin-bottom: 30px;
    list-style: none;
}

.transparency-content ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text); /* Dark green text */
    line-height: 1.6;
}

.transparency-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary); /* Gold checkmarks */
    font-weight: bold;
}

.transparency-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(42, 92, 61, 0.15), 
                0 10px 10px -5px rgba(42, 92, 61, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2); /* Gold border */
}

.transparency-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.transparency-image:hover img {
    transform: scale(1.03);
}

/* Service Excellence Section */
.service-excellence {
    padding: 80px 0;
    background-color: var(--light); /* Light green background */
}

.service-excellence h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary); /* Deep green */
    position: relative;
}

.service-excellence h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary); /* Gold accent */
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.excellence-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(42, 92, 61, 0.1), 
                0 2px 4px -1px rgba(42, 92, 61, 0.06);
    transition: all 0.3s ease;
    border-top: 3px solid var(--secondary); /* Gold accent */
}

.excellence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(42, 92, 61, 0.15), 
                0 10px 10px -5px rgba(42, 92, 61, 0.08);
}

.excellence-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary); /* Gold icons */
}

.excellence-card h3 {
    margin-bottom: 15px;
    color: var(--primary); /* Deep green */
    font-size: 22px;
}

.excellence-card p {
    color: var(--text-light); /* Soft green text */
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .excellence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .model-comparison {
        grid-template-columns: 1fr;
    }
    
    .transparency-section .container {
        grid-template-columns: 1fr;
    }
    
    .transparency-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .pricing-model h2,
    .transparency-content h2,
    .service-excellence h2 {
        font-size: 30px;
    }
    
    .traditional-model,
    .our-model {
        padding: 30px;
    }
    
    .shared-boat {
        width: 180px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .pricing-model,
    .transparency-section,
    .service-excellence {
        padding: 60px 0;
    }
    
    .excellence-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .excellence-card {
        padding: 30px 20px;
    }
    
    .pricing-model h2,
    .transparency-content h2,
    .service-excellence h2 {
        font-size: 28px;
    }
    
    .transparency-content ul li {
        padding-left: 25px;
    }
}

/* Animation for Why Choose Us Elements */
.model-comparison,
.transparency-section .container,
.excellence-grid {
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.model-comparison.animated,
.transparency-section .container.animated,
.excellence-grid.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for grid items */
.excellence-card:nth-child(1) { transition-delay: 0.1s; }
.excellence-card:nth-child(2) { transition-delay: 0.2s; }
.excellence-card:nth-child(3) { transition-delay: 0.3s; }
.excellence-card:nth-child(4) { transition-delay: 0.4s; }