/* DM Serif Display Font Face Declarations */
@font-face {
    font-family: 'DMSerifDisplay';
    src: url('/img/fonts/DMSerifDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Override main.css font for partner page */
body, html, body * {
    font-family: 'DMSerifDisplay', serif !important;
}

/* Partner Hero Section */
.partner-hero-section {
    background: linear-gradient(to bottom, #00843e 0%, #00843e 40%, #007f79 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    font-family: 'DMSerifDisplay', serif;
}

.partner-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100%;
}

.partner-hero-content {
    display: grid;
    grid-template-columns: 32% 80%;
    gap: 0;
    align-items: stretch;
    min-height: 80vh;
    position: relative;
}

/* Hero Text Section */
.partner-hero-text {
    background: linear-gradient(to bottom, #00843e 0%, #00843e 40%, #007f79 100%);
    color: white;
    padding: 20px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.partner-hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    width: 208%;
    margin: 0 0 8px 0;
    font-family: 'DMSerifDisplay', serif;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    padding-top: 40px;
    margin-bottom: 30px;
}

.partner-hero-description {
    font-size: 3.3rem;
    color: white;
    /* line-height: 1.5; */
    margin: 0 0 10px 0;
    font-weight: 500;
    opacity: 0.95;
    width: 229%;
}

.btn-hero-cta {
    display: inline-block;
    background: #ffd100;
    color: #0d3542;
    padding: 18px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    width: 68%;
    font-size: 1.4em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 209, 0, 0.3);
    border: 2px solid transparent;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    margin-top: 90px;
    align-self: flex-start;
}

.btn-hero-cta:hover {
    background: #e6bc00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 209, 0, 0.4);
    color: #0d3542;
}

.partner-hero-slogan {
    
    font-size: 2.1rem;
    color: white;
    font-weight: 500;
    width: 111%;
    opacity: 0.9;
    margin-top: 50px;
    white-space: nowrap;
    /* font-style: italic; */
}


/* Hero Image Section */
.partner-hero-image-container {
    position: relative;
    display: flex
;
    justify-content: flex-end;
    align-items: center;
    background: #00843e;
    max-width: 3000;
    border-radius: 20%;
    overflow: hidden;
    right: -392px;
    /* clip-path: polygon(15% 0, 100% 0, 100% 100%, 10% 100%, 0 80%, 10% 50%, 0 20%); */
}


.partner-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    min-height: 80vh;
    border-radius: 20%;
    position: relative;
    right: 0px;
    background: linear-gradient(to bottom, #00843e 0%, #00843e 40%, #007f79 100%);
}

/* Statistics Section */
.partner-stats-section {
    background: linear-gradient(to bottom, #00843e 0%, #007f79 100%);
    padding: 80px 0;
    position: relative;
    color: white;
}

.partner-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.partner-stats-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 80px 0;
    font-family: 'DMSerifDisplay', serif;
    line-height: 1.2;
}

.partner-stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.partner-stats-section .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-stats-section .stat-icon {
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-stats-section .testimonial-rating {
    display: flex;
    gap: 2px;
}

.partner-stats-section .star {
    font-size: 3rem;
    color: #ddd;
    transition: color 0.2s ease;
}

.partner-stats-section .star.filled {
    color: #ffec99;
}

.partner-stats-section .star.half {
    color: #ffec99;
    position: relative;
}

.partner-stats-section .star.half::after {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #ddd;
}


.partner-stats-section .stat-number {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    margin-bottom: 59px;
    font-family: 'DMSerifDisplay', serif;
}

.partner-stats-section .stat-label {
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.partner-stats-section .app-rating-label {
    margin-top: -31px;
}

.btn-stats-cta {
    display: inline-block;
    background: #ffd100;
    position: relative;
    color: #0d3542;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    right: 30%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 209, 0, 0.3);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-top: 20px;
}

.btn-stats-cta:hover {
    background: #e6bc00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 209, 0, 0.4);
    color: #0d3542;
}

.btn-stats-cta:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Marketing Opportunities Section */
.partner-marketing-section {
    background: white;
    padding: 80px 0;
    position: relative;
}

.partner-marketing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.marketing-header {
    text-align: left;
    margin-bottom: 60px;
}

.marketing-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ea5a3d;
    margin: 0 0 20px 0;
    font-family: 'DMSerifDisplay', serif;
    line-height: 1.2;
}

.marketing-subtitle {
    font-size: 1.5rem;
    color: #007f7b;
    margin: 0;
    font-weight: 600;
}

.marketing-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.phones-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phones-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    left: 12%;
    position: relative;
    /* top: 109%; */
    z-index: 10;
    /* transform: rotate(1deg); */
}

.phone-descriptions {
    position: absolute;
    top: -34%;
    left: -9%;
    width: 100%;
    height: 100%;
    z-index: 11;
    pointer-events: none;
}

.marketing-benefits {
    padding-left: 40px;
    position: relative;
    width: 100%;
    top: -37%;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    font-size: 1.3rem;
    color: #1a3d3e;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.benefits-list li::before {
    content: "•";
    color: #1a3d3e;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;}

.brand-mission-box {
    background: #007f7b;
    padding: 40px 30px;
    border-radius: 12px;
    max-width: 700px;
    width: 116%;
    position: relative;
    z-index: 3;
    margin-left: -6px;
    left: -105%;
    margin-top: 50px;
    top: 8%;
    box-shadow: 0 8px 30px rgba(0, 127, 123, 0.3);
}

.brand-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.brand-text {
    font-size: 1.7rem;
    color: white;
    margin: 0 0 10px 0;
    font-weight: 700;
    max-width: 700px;
    width: 90%;
    line-height: 1.4;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.brand-text:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Marketing Section */
@media (max-width: 1024px) {
    .marketing-content {
        grid-template-columns: 1fr;
        gap: 30px;
    text-align: center;
    }
    
    .marketing-benefits {
        padding-left: 0;
    }
    
    .brand-mission-box {
        margin-left: 0;
        margin-top: 30px;
    }
    
    .phones-image {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .partner-marketing-section {
        padding: 60px 0;
    }
    
    .partner-marketing-container {
        padding: 0 15px;
    }
    
    .marketing-title {
        font-size: 2.5rem;
    }
    
    .marketing-subtitle {
        font-size: 1.2rem;
    }
    
    .phones-image {
        max-width: 400px;
    }
    
    .benefits-list li {
        font-size: 1.1rem;
    }
    
    .brand-mission-box {
        padding: 30px 20px;
    }
    
    .brand-title {
        font-size: 1.8rem;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .marketing-title {
        font-size: 2rem;
    }
    
    .phones-image {
        max-width: 300px;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
    
    .brand-mission-box {
        padding: 25px 15px;
    }
    
    .brand-title {
        font-size: 1.6rem;
    }
    
    .brand-text {
        font-size: 1rem;
    }
}

/* Responsive Design for Statistics */
@media (max-width: 1024px) {
    .partner-stats-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partner-stats-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .partner-stats-section {
        padding: 60px 0;
    }
    
    .partner-stats-container {
        padding: 0 15px;
    }
    
    .partner-stats-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .partner-stats-section .stat-number {
        font-size: 2.5rem;
    }
    
    .partner-stats-section .stat-label {
        font-size: 0.9rem;
    }
    
    .btn-stats-cta {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .partner-stats-section {
        padding: 40px 0;
    }
    
    .partner-stats-title {
        font-size: 1.6rem;
    }
    
    .partner-stats-section .stat-number {
        font-size: 2rem;
    }
    
    .partner-stats-section .stat-label {
        font-size: 0.8rem;
    }
    
    .btn-stats-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Shared Platform Section */
.partner-platform-section {
    background: #dff4f4;
    padding: 80px 0;
    position: relative;
}

.partner-platform-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.platform-text {
    padding-right: 40px;
}

.platform-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ea5a3d;
    margin: 0 0 30px 0;
    font-family: 'DMSerifDisplay', serif;
    line-height: 1.2;
}

.platform-description {
    font-size: 1.7em;
    color: #03817d;
    line-height: 1.6;
    margin: 0 0 40px 0;
    font-weight: 700;
}

.platform-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #ea5a3d;
    margin: 0 0 30px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-column {
    display: flex;
    flex-direction: column;
}

.benefit-heading {
    font-size: 1.7rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    font-size: 1.3rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.benefit-list li::before {
    content: "•";
    color: #000000;
    font-weight: bolder;
    position: absolute;
    left: 0;
}

.btn-platform-cta {
    display: inline-block;
    background: #ea5a3d;
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 90, 61, 0.3);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.btn-platform-cta:hover {
    background: #d14a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 90, 61, 0.4);
    color: white;
}

.platform-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-map {
    position: absolute;
    right: -38%;
    top: 25.5%;
    transform: translateY(-50%);
    width: 130%;
    height: auto;
    z-index: 1;
}

.platform-phone {
    position: absolute;
    right: 59%;
    top: 68%;
    transform: translateY(-50%) rotate(11deg);
    width: 200px;
    height: auto;
    z-index: 2;
}

.platform-tech {
    position: absolute;
    right: 30%;
    bottom: 3%;
    width: 244px;
    height: auto;
    z-index: 3;
}

/* Process Flow Section */
.partner-process-section {
    background: white;
    padding: 10px 0;
    position: relative;
}

.partner-process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-content {
    display: flex;
    flex-direction: column;
    gap: -300px;
}

.process-text {
    text-align: left;
    max-width: 1000px;
    margin: 0;
}

.process-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ea5a3e;
    margin: 0 0 8px 0;
    margin-top: 30px;
    font-family: 'DMSerifDisplay', serif;
    line-height: 1.2;
}

.process-description {
    font-size: 1.8em;
    color: #007f7b;
    line-height: 1.6;
    margin: 0;
    font-weight: 700;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.process-visual {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    top: -152px;
}

.process-svg {
    width: 172%;
    max-width: 2000px;
    height: auto;
    position: relative;
    object-fit: contain;
    left: -16%;
}

.process-circles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    max-width: 1000px;
}

.process-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    border: 3px solid #0d3542;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-circle:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.circle-blue {
    background: #a0dddd;
}

.circle-yellow {
    background: #dae782;
}

.circle-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a3d3e; /* Dark color for WCAG compliance */
    line-height: 1.3;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-connector {
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.connector-line {
    width: 40px;
    height: 3px;
    background: #1a3d3e;
    position: relative;
    border-radius: 2px;
}

.connector-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid #1a3d3e;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.process-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.process-image {
    width: 700px;
    height: 700px;
    border-radius: 50%;
    position: relative;
    object-fit: cover;
    object-position: center;
    right: -52%;
    z-index: 2;
}       


/* Analytics Section */
.partner-analytics-section {
    background: white;
    padding: 0px 0;
    position: relative;
    margin-top: -300px;
}

.partner-analytics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.analytics-content {
    flex: 1;
    position: relative;
    right: 10%;
}

.analytics-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ea5a3e; /* Reddish-orange color for WCAG compliance */
    margin: 0 0 5px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
    line-height: 1.2;
}

.analytics-description {
    font-size: 1.7rem;
    color: #007f7b; /* Dark teal/green color for WCAG compliance */
    line-height: 1.6;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.btn-analytics-cta {
    display: inline-block;
    background: #ea5a3d;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 209, 0, 0.3);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.btn-analytics-cta:hover {
    background: #d14a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 90, 61, 0.4);
    color: #ffffff;
}

.btn-analytics-cta:focus {
    outline: 3px solid rgba(234, 90, 61, 0.5);
    outline-offset: 2px;
}

.analytics-chart {
    width: 300px;
    height: 200px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analytics-graph {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: contain;
    left: -96%;
    top: -17%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partner-hero-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .partner-hero-text {
        padding: 60px 40px;
        text-align: center;
    }
    
    .partner-hero-title {
        font-size: 3rem;
    }
    
    .partner-hero-image {
        min-height: 50vh;
    }
    
    .btn-hero-cta {
        align-self: center;
    }
    
    .process-visual {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .process-circles {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .process-circle {
        width: 180px;
        height: 180px;
    }
    
    .circle-text {
        font-size: 0.9rem;
    }
    
    .process-image {
        width: 400px;
        height: 400px;
    }
    
    .partner-analytics-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .partner-hero-section {
        min-height: auto;
    }
    
    .partner-hero-text {
        padding: 40px 20px;
    }
    
    .partner-hero-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .partner-hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .btn-hero-cta {
        padding: 15px 30px;
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .partner-hero-slogan {
        font-size: 1rem;
    }
    
    .partner-hero-image {
        min-height: 40vh;
    }
    
    .partner-process-section {
        padding: 60px 0;
    }
    
    .partner-process-container {
        padding: 0 15px;
    }
    
    .process-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    
    .process-description {
        font-size: 1.1rem;
    }
    
    .process-circles {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-circle {
        width: 160px;
        height: 160px;
    }
    
    .circle-text {
        font-size: 0.8rem;
    }
    
    .process-connector {
        transform: rotate(90deg);
    }
    
    .connector-line {
        width: 30px;
    }
    
    .process-image {
        width: 300px;
        height: 300px;
    }
    
    .partner-analytics-section {
        padding: 60px 0;
    }
    
    .partner-analytics-container {
        padding: 0 15px;
    }
    
    .analytics-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .analytics-description {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .btn-analytics-cta {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .analytics-chart {
        width: 250px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .partner-hero-section {
        padding: 80px 0 40px 0;
    }
    
    .partner-hero-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .partner-hero-description {
        font-size: 1rem;
    }
    
    .partner-hero-image {
        min-height: 30vh;
    }
    
    .partner-process-section {
        padding: 40px 0;
    }
    
    .process-circle {
        width: 140px;
        height: 140px;
    }
    
    .circle-text {
        font-size: 0.75rem;
    }
    
    .partner-analytics-section {
        padding: 40px 0;
    }
    
    .analytics-title {
        font-size: 1.8rem;
    }
    
    .analytics-description {
        font-size: 1rem;
    }
    
    .btn-analytics-cta {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .analytics-chart {
        width: 200px;
        height: 120px;
    }
}

/* Value Section */
.partner-value-section {
    background: #dff4f4;
    padding: 80px 0;
    position: relative;
}

.partner-value-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.value-text {
    padding-right: 40px;
    max-width: 700px;
    width: 99%;
}

.value-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ea5a3d;
    margin: 0 0 40px 0;
    font-family: 'DMSerifDisplay', serif;
    line-height: 1.2;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-list li {
    font-size: 2rem;
    color: #123946;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
    font-weight: 500;
}

.value-list li::before {
    content: "•";
    color: #123946;
    font-weight: bold;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: 0;
}

.value-image-container {
    position: relative;
    height: auto;
    width: 159%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    left: -74%;
    border-radius: 12px;
}

.value-image {
    width: 120%;
    max-width: none;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    position: relative;
    right: -50%;
    z-index: 2;
}

/* Responsive Design for Value Section */
@media (max-width: 1024px) {
    .value-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .value-text {
        padding-right: 0;
    }
    
    .value-image {
        right: 0;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .partner-value-section {
        padding: 60px 0;
    }
    
    .partner-value-container {
        padding: 0 15px;
    }
    
    .value-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .value-list li {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .value-image {
        width: 100%;
        right: 0;
    }
}

@media (max-width: 480px) {
    .value-title {
        font-size: 2rem;
    }
    
    .value-list li {
        font-size: 1.4rem;
    }
    
    .value-image {
        width: 100%;
        right: 0;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .value-image {
        transition: none;
    }
}

@media (prefers-contrast: high) {
    .value-list li::before {
        color: #000;
    }
    
    .value-list li {
        color: #000;
    }
}

/* Focus visible for better keyboard navigation */
.value-list li:focus-visible {
    outline: 2px solid #ea5a3d;
    outline-offset: 2px;
}

/* Tour Types Section */
.tour-types {
    padding: 100px 0;
    background: #f8f9fa;
}

.tour-types-title {
    font-size: 42px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
    color: #ea5a3d;
    margin-left: 16%;
}

.tour-types-subtitle {
    font-size: 42px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 80px;
    color: #ea5a3d;
    margin-left: 16%;
}

.tour-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-type-item {
    padding: 0;
    text-align: center;
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 380px;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.tour-type-item:hover,
.tour-type-item:focus {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.tour-type-item:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Flip Card Styles */
.flip-card {
    perspective: 1000px;
    background: transparent;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 30px;
    border-radius: 12px;
    min-height: 380px;
    text-align: center;
}

.flip-card-front {
    background: inherit;
}

.flip-card-back {
    background: inherit;
    transform: rotateY(180deg);
}

.flip-card-back .tour-type-title {
    margin-bottom: 20px;
}

.flip-card-back .tour-type-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    text-align: left;
}

.tour-type-item.scenic {
    background: linear-gradient(135deg, #228B22 0%, #20B2AA 100%);
}

.tour-type-item.culture {
    background: linear-gradient(135deg, #20B2AA 0%, #2C5F73 100%);
}

.tour-type-item.natural {
    background: linear-gradient(135deg, #2C5F73 0%, #1a4a54 100%);
}

.tour-type-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.tour-type-icon img {
    max-width: 75px;
    max-height: 75px;
    width: auto;
    height: auto;
}

/* Add click hint */
.tour-type-item::after {
    content: "Click to flip";
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    opacity: 0.7;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.tour-type-item:hover::after,
.tour-type-item:focus::after {
    opacity: 1;
}

.tour-type-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    letter-spacing: 1px;
}

.tour-type-description {
    font-size: 16px;
    font-weight: 400;
    color: white;
    line-height: 1.5;
    opacity: 0.95;
}

/* Responsive Design for Tour Types */
@media (max-width: 768px) {
    .tour-types {
        padding: 60px 0;
    }
    
    .tour-types-title {
        font-size: 32px;
    }
    
    .tour-types-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tour-type-item {
        padding: 0;
        min-height: 320px;
    }
    
    .flip-card-front, .flip-card-back {
        padding: 40px 25px;
        min-height: 320px;
    }
    
    .tour-type-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tour-types {
        padding: 60px 0;
    }
    
    .tour-types-title {
        font-size: 28px;
    }
    
    .tour-types-grid {
        gap: 20px;
    }
    
    .tour-type-item {
        padding: 0;
        min-height: 280px;
    }
    
    .flip-card-front, .flip-card-back {
        padding: 30px 20px;
        min-height: 280px;
    }
    
    .tour-type-title {
        font-size: 18px;
    }
    
    .tour-type-description {
        font-size: 14px;
    }
}

/* What Our Partners Say Section */
.partners-testimonials-section {
    background: white;
    padding: 80px 0;
    position: relative;
}

.partners-testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-testimonials-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ea5a3d;
    margin: 0 0 60px 0;
    font-family: 'DMSerifDisplay', serif;
    text-align: left;
    line-height: 1.2;
}

/* Partners Testimonials Carousel */
.partners-testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: visible;
    gap: 3%;
}

.partners-testimonials-nav {
    background: #0d3542;
    color: white;
    border: none;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.partners-testimonials-nav:hover {
    background: #1a4a54;
    transform: scale(1.05);
}

.partners-testimonials-nav:focus {
    outline: 3px solid rgba(0, 127, 123, 0.5);
    outline-offset: 2px;
}

.partners-testimonials-nav:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.partners-testimonials-track {
    flex: 1;
    overflow: visible;
    position: relative;
}

.partners-testimonials-slides {
    display: flex;
    transition: transform 0.5s ease;
    gap: 6%;
}

.partners-testimonial-card {
    background: white;
    border: 2px solid black;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 14px);
    min-width: 300px;
    max-width: 350px;
    position: relative;
}

.partners-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.partners-testimonial-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.partners-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.partners-testimonial-card:hover .partners-testimonial-image img {
    transform: scale(1.05);
}

.partners-testimonial-content {
    padding: 20px;
}

.partners-testimonial-text {
    font-size: 1rem;
    color: #1a3d3e;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
    font-style: italic;
}

.partners-testimonial-attribution {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.partners-testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a3d3e;
    margin: 0 0 5px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.partners-testimonial-title {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

/* Responsive Design for Partners Testimonials */
@media (max-width: 1024px) {
    .partners-testimonials-section {
        padding: 60px 0;
    }
    
    .partners-testimonials-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .partners-testimonial-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .partners-testimonials-section {
        padding: 40px 0;
    }
    
    .partners-testimonials-container {
        padding: 0 15px;
    }
    
    .partners-testimonials-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .partners-testimonials-carousel {
        gap: 15px;
    }
    
    .partners-testimonials-nav {
        width: 40px;
        height: 40px;
    }
    
    .partners-testimonial-card {
        flex: 0 0 calc(100% - 10px);
        min-width: 260px;
    }
    
    .partners-testimonial-image {
        height: 180px;
    }
    
    .partners-testimonial-content {
        padding: 16px;
    }
    
    .partners-testimonial-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .partners-testimonials-title {
        font-size: 1.8rem;
    }
    
    .partners-testimonials-nav {
        width: 36px;
        height: 36px;
    }
    
    .partners-testimonial-card {
        min-width: 240px;
    }
    
    .partners-testimonial-image {
        height: 160px;
    }
    
    .partners-testimonial-content {
        padding: 14px;
    }
    
    .partners-testimonial-text {
        font-size: 0.85rem;
    }
}

/* Accessibility Enhancements for Partners Testimonials */
@media (prefers-reduced-motion: reduce) {
    .partners-testimonial-card,
    .partners-testimonials-nav,
    .partners-testimonial-image img {
        transition: none;
    }
    
    .partners-testimonial-card:hover {
        transform: none;
    }
    
    .partners-testimonials-nav:hover {
        transform: none;
    }
    
    .partners-testimonial-image img:hover {
        transform: none;
    }
}

/* High contrast mode support for Partners Testimonials */
@media (prefers-contrast: high) {
    .partners-testimonial-card {
        border: 2px solid #000;
    }
    
    .partners-testimonials-nav {
        border: 2px solid #000;
    }
}

/* Focus visible for better keyboard navigation for Partners Testimonials */
.partners-testimonials-nav:focus-visible {
    outline: 3px solid rgba(0, 127, 123, 0.8);
    outline-offset: 3px;
}

/* Our Services Section */
.services-accordion-section {
    background: #dff4f4;
    padding: 100px 0;
}

.services-accordion-header {
    text-align: left;
    margin-bottom: 40px;
    margin-left: 16%;
}

.services-accordion-header .features-title {
    margin-bottom: 10px;
    color: #ea5a3d;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'DMSerifDisplay', serif;
    line-height: 1.2;
}

.services-accordion-header .features-subtitle {
    color: #007f7b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.services-accordion-summary {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    /* margin: 0 auto; */
    text-align: left;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.services-accordion-flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 45px;
    border-radius: 12px;
    /* border: antiquewhite; */
}


.services-accordion-columns {
    display: flex;
    gap: 20px;
    flex: 0 0 50%;
    position: relative;
}

.services-accordion-columns::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ddd;
}

.services-accordion-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-tab {
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.services-accordion-list-left .service-tab {
    color: #228B22;
    border-color: #228B22;
}

.services-accordion-list-right .service-tab {
    color: #20B2AA;
    border-color: #20B2AA;
}

.services-accordion-list-right .service-tab:nth-child(3) {
    color: #2C5F73;
    border-color: #2C5F73;
}

.services-accordion-list-left .service-tab:nth-child(3) {
    color: #2C5F73;
    border-color: #2C5F73;
}

.service-tab:hover {
    box-shadow: 0 4px 16px rgba(34,139,34,0.08);
    background: #f6faf6;
}

.service-tab.active {
    background: #228B22;
    border-color: #228B22 !important;
    color: white;
}

.services-accordion-list-right .service-tab.active {
    background: #20B2AA;
    border-color: #20B2AA !important;
}

.services-accordion-list-right .service-tab.active:nth-child(3) {
    background: #2C5F73;
    border-color: #2C5F73 !important;
}

.services-accordion-list-left .service-tab.active:nth-child(3) {
    background: #2C5F73;
    border-color: #2C5F73 !important;
}

.services-accordion-details {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 40px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail {
    display: none;
    text-align: center;
}

.service-detail[style*="display:block"] {
    display: block;
}

.service-detail .feature-icon {
    margin-bottom: 24px;
}

.service-detail .feature-icon {
    display: none;
}

.service-detail .feature-title {
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
    font-weight: 700;
}

.service-detail .feature-description {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

/* FAQ Button */
.services-accordion-section .faq-button {
    display: inline-block;
    background: #ea5a3d;
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 90, 61, 0.3);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    margin-top: 40px;
    text-align: center;
    position: relative;
    left: -24%;
}

.services-accordion-section .faq-button:hover {
    background: #d14a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 90, 61, 0.4);
    color: white;
}

/* Responsive Design for Our Services */
@media (max-width: 900px) {
    .services-accordion-columns {
        gap: 30px;
    }
    .services-accordion-details {
        padding: 32px 10px;
    }
}

@media (max-width: 600px) {
    .services-accordion-columns {
        flex-direction: column;
        gap: 20px;
    }
    .services-accordion-list {
        min-width: 180px;
        width: 100%;
    }
    .service-tab {
        font-size: 16px;
        padding: 14px 10px;
    }
    .services-accordion-details {
        padding: 18px 2px;
        min-height: 0;
    }
    .services-accordion-summary {
        font-size: 1rem;
    }
}

.services-accordion-flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-accordion-columns {
    display: flex;
    gap: 20px;
    flex: 0 0 50%;
    position: relative;
}

.services-accordion-columns::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ddd;
}

.services-accordion-columns {
  border-right: none;
}

@media (max-width: 900px) {
  .services-accordion-flex {
    flex-direction: column;
    gap: 30px;
  }
  .services-accordion-columns {
    flex: none;
    width: 100%;
  }
  .services-accordion-columns::after {
    display: none;
  }
  .services-accordion-details {
    flex: none;
    width: 100%;
  }
}

/* Who We Work With Section */
.partners-section {
    background: #dff4f4;
    padding: 100px 0;
    position: relative;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.partners-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.partners-text {
    text-align: left;
}

.partners-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ea5a3d;
    margin: 0 0 20px 0;
    font-family: 'DMSerifDisplay', serif;
    line-height: 1.2;
}

.partners-description {
    font-size: 1.5rem;
    color: #333;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.partners-subtitle {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.partners-stat {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners-logos .partners-stat {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    min-height: auto;
    min-width: auto;
}

.partners-logos .partners-stat:hover {
    transform: none;
    box-shadow: none;
}

.partners-circle {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    margin: 40px 0;
    overflow-x: auto;
}

.partner-logo {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    min-width: 150px;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    max-width: 120px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partners-cta {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.case-studies-button {
    display: inline-block;
    background: #ea5a3d;
    color: white;
    LEFT: -208%;
    position: relative;
    top: 68%;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: -23%;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 90, 61, 0.3);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.case-studies-button:hover {
    background: #d14a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 90, 61, 0.4);
    color: white;
}

.case-studies-button:focus {
    outline: 3px solid rgba(234, 90, 61, 0.5);
    outline-offset: 2px;
}

/* Responsive Design for Partners Section */
@media (max-width: 1024px) {
    .partners-header {
        text-align: center;
    }
    
    .partners-text {
        text-align: center;
    }
    
    .partners-logos {
        gap: 30px;
    }
    
    .partners-logos .partners-stat {
        min-width: auto;
        min-height: auto;
    }
    
    .partner-logo {
        min-width: 130px;
        min-height: 90px;
    }
    
    .partner-logo img {
        max-width: 100px;
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 80px 0;
    }
    
    .partners-container {
        padding: 0 15px;
    }
    
    .partners-content {
        gap: 50px;
    }
    
    .partners-title {
        font-size: 2.5rem;
    }
    
    .partners-description {
        font-size: 1.2rem;
    }
    
    .partners-subtitle {
        font-size: 1.1rem;
    }
    
    .partners-logos .partners-stat {
        padding: 0;
        min-width: auto;
        min-height: auto;
    }
    
    .partners-circle {
        width: 150px;
        height: 150px;
    }
    
    .partners-logos {
        gap: 20px;
        margin: 30px 0;
    }
    
    .partner-logo {
        padding: 15px;
        min-width: 110px;
        min-height: 80px;
    }
    
    .partner-logo img {
        max-width: 80px;
        max-height: 60px;
    }
    
    .case-studies-button {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-content {
        gap: 40px;
    }
    
    .partners-title {
        font-size: 2rem;
    }
    
    .partners-description {
        font-size: 1rem;
    }
    
    .partners-subtitle {
        font-size: 0.9rem;
    }
    
    .partners-logos .partners-stat {
        padding: 0;
        min-width: auto;
        min-height: auto;
    }
    
    .partners-circle {
        width: 120px;
        height: 120px;
    }
    
    .partners-logos {
        gap: 15px;
        margin: 25px 0;
    }
    
    .partner-logo {
        padding: 12px;
        min-width: 90px;
        min-height: 70px;
    }
    
    .partner-logo img {
        max-width: 70px;
        max-height: 50px;
    }
    
    .case-studies-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}


