/* === HEADER === */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
}

.site-header {
    width: 100%;
    background: #fff;
    padding-top: 20px;
}

.container {
    max-width: 1440px;
    height: 110px;
    margin: auto;
    padding: 0 160px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    width: 49px;
    height: 58.96px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 87px;
    margin: 0;
    padding: 0;
    width: 503px;
    height: 22px;
    align-items: center;
}

.nav-list li {
    display: flex;
    align-items: center;
}

.nav-list li a {
    text-decoration: none;
    color: #333;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 140%;
    letter-spacing: 0;
    transition: color .3s;
    position: relative;
    white-space: nowrap;
}

.nav-list li a:hover {
    color: #617F5B;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 223px;
    height: 46px;
}

.btn-contact {
    width: 133.02px;
    height: 46.01px;
    padding: 12.01px 25.01px;
    border: 1px solid #333;
    border-radius: 32.01px;
    text-decoration: none;
    color: #333;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 140%;
    letter-spacing: 0;
    transition: all .3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
}

.btn-contact:hover {
    background: #617F5B;
    color: #fff;
    border-color: #617F5B;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 140%;
    letter-spacing: 0;
    color: #333;
    cursor: pointer;
}

.lang-switch .earth-icon {
    font-size: 20px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    padding: 5px;
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
        height: 80px;
    }

    .nav-list {
        gap: 40px;
        width: auto;
    }

    .btn-contact {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        height: 70px;
        border-bottom-right-radius: 16px;
        border-bottom-left-radius: 16px;
    }

    .logo {
        width: 40px;
        height: 48px;
    }

    .mobile-menu-toggle {
        display: block;
        order: 3;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        height: auto;
        align-items: flex-start;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list li a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid #f0f0f0;
    }

    .header-right {
        gap: 10px;
        width: auto;
        height: auto;
    }

    .btn-contact {
        width: auto;
        height: auto;
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 20px;
    }

    .lang-switch {
        font-size: 12px;
        gap: 5px;
    }

    .lang-switch .earth-icon {
        font-size: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn-contact {
        padding: 6px 12px;
        font-size: 11px;
    }

    .lang-switch {
        font-size: 11px;
    }
}

/* === HERO SECTION === */

.hero-section {
    position: relative;
    background: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 160px;
    position: relative;
    padding-bottom: 0;
    width: 100%;
    order: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: auto;
    margin-left: 0;
    padding-top: 40px;
    padding-bottom: 320px;
}

.hero-left {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.hero-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    width: 100%;
}

.hero-title .title-dark {
    display: block;
    color: #617F5B;
    margin-bottom: 0;
}

.hero-title .title-light {
    display: block;
    color: #D8D8D8;
    margin-top: -8px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 32px;
    padding-top: 40px;
    width: 100%;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    color: #333;
    margin: 0;
    max-width: 450px;
}

.btn-consult {
    padding: 16px 36px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.btn-consult:hover {
    background: #617F5B;
    color: #fff;
    border-color: #617F5B;
}

/* Stats Section */
.stats-section {
    background: #fff;
    border-radius: 60px;
    padding: 32px 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid #617F5B;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 320px);
    max-width: 1120px;
    height: 136px;
    top: 616px;
    z-index: 10;
}

.stat-item {
    text-align: center;
    padding: 8px 0;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: #617F5B;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 150%;
}

/* Hero Image */
.hero-image {
    position: relative;
    width: 100%;
    height: 700px;
    z-index: 1;
    margin-top: 0;
    order: 2;
    clear: both;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive Hero Section */

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        padding: 60px 40px 0;
    }

    .hero-content {
        gap: 0;
        width: auto;
        height: auto;
        padding-bottom: 140px;
    }

    .hero-title {
        font-size: 48px;
    }

    .stats-section {
        padding: 28px 40px;
        gap: 32px;
        width: calc(100% + 80px);
        height: auto;
        left: 0;
        right: 0;
        margin-left: -40px;
        position: relative;
        top: auto;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
        line-height: 140%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }

    .hero-container {
        padding: 40px 20px 0;
        padding-bottom: 40px;
    }

    .hero-content {
        flex-direction: column;
        gap: 0;
        width: auto;
        height: auto;
        margin-bottom: 0;
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        max-width: 100%;
    }

    .stats-section {
        flex-wrap: wrap;
        padding: 20px 16px;
        gap: 16px 12px;
        width: calc(100% + 40px);
        height: auto;
        left: 0;
        right: 0;
        margin-left: -20px;
        top: auto;
        border-radius: 28px;
        position: relative;
        margin-top: 40px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 6px);
        padding: 0;
    }

    .stat-number {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 10px;
        line-height: 140%;
    }

    .hero-image {
        position: relative;
        height: 300px;
        margin-top: 40px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-container {
        padding: 32px 16px 0;
        padding-bottom: 30px;
    }

    .hero-content {
        padding-bottom: 20px;
        height: auto;
        min-height: auto;
    }

    .hero-right {
        gap: 24px;
    }

    .hero-title {
        font-size: 28px;
        padding: 0 8px;
        line-height: 1.2;
    }

    .hero-title .title-light {
        margin-top: 4px;
    }

    .hero-description {
        font-size: 14px;
        max-width: 100%;
    }

    .btn-consult {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        display: flex;
    }

    .stats-section {
        flex-wrap: wrap;
        flex-direction: row;
        padding: 20px 24px;
        width: calc(100% + 0px);
        height: auto;
        left: 0;
        right: 0;
        margin-left: 0px;
        top: auto;
        border-radius: 24px;
        gap: 16px 12px;
        position: relative;
        margin-top: 30px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 6px);
        padding: 8px 0;
    }

    .stat-number {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 10px;
        line-height: 140%;
    }

    .hero-image {
        height: 250px;
        margin-top: 40px;
    }
}

/* === WHY KAYALAND SECTION === */

.why-kayaland-section {
    background: #fff;
    padding: 100px 0 120px;
}

.why-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 160px;
}

.why-title {
    font-size: 24px;
    font-weight: 400;
    color: #617F5B;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.2;
}

.why-title .bullet {
    width: 8px;
    height: 8px;
    background: #617F5B;
    border-radius: 50%;
    display: inline-block;
}

.why-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    color: #333;
    margin: 0 0 60px 0;
    max-width: 1000px;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #333;
    margin: 0;
}

/* Responsive Why Kayaland */

/* Tablet */
@media (max-width: 1024px) {
    .why-kayaland-section {
        padding: 80px 0 100px;
    }

    .why-container {
        padding: 0 40px;
    }

    .why-title {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .why-description {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .why-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon img {
        width: 70px;
        height: 70px;
    }

    .feature-title {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-kayaland-section {
        padding: 60px 0 80px;
    }

    .why-container {
        padding: 0 20px;
    }

    .why-title {
        font-size: 20px;
        margin-bottom: 18px;
        line-height: 1.2;
    }

    .why-description {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .why-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .feature-card {
        gap: 16px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon img {
        width: 60px;
        height: 60px;
    }

    .feature-title {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .why-kayaland-section {
        padding: 50px 0 60px;
    }

    .why-container {
        padding: 0 16px;
    }

    .why-title {
        font-size: 18px;
        margin-bottom: 14px;
        gap: 8px;
        line-height: 1.2;
    }

    .why-title .bullet {
        width: 6px;
        height: 6px;
    }

    .why-description {
        font-size: 13px;
        margin-bottom: 32px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }

    .feature-icon img {
        width: 56px;
        height: 56px;
    }

    .feature-title {
        font-size: 13px;
    }
}

/* === WHY CHOOSE KAYALAND SECTION === */

.why-choose-section {
    background: #617F5B;
    padding: 100px 0;
}

.why-choose-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 160px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 100px;
    align-items: center;
}

.why-choose-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.why-choose-title .bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.why-choose-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    color: #fff;
    margin: 0;
}

/* Responsive Why Choose Kayaland */

/* Tablet */
@media (max-width: 1024px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .why-choose-container {
        padding: 0 40px;
        gap: 60px;
        grid-template-columns: 1fr;
    }

    .why-choose-title {
        font-size: 24px;
    }

    .why-choose-description {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-container {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .why-choose-title {
        font-size: 20px;
    }

    .why-choose-title .bullet {
        margin-top: 8px;
        width: 8px;
        height: 8px;
    }

    .why-choose-description {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .why-choose-section {
        padding: 50px 0;
    }

    .why-choose-container {
        padding: 0 16px;
        gap: 24px;
    }

    .why-choose-title {
        font-size: 18px;
    }

    .why-choose-title .bullet {
        width: 6px;
        height: 6px;
        margin-top: 8px;
    }

    .why-choose-description {
        font-size: 13px;
    }
}

/* === OUR TRUST PILLARS SECTION === */

.trust-pillars-section {
    background: #fff;
    padding: 100px 0;
}

.trust-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 160px;
}

.trust-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    color: #617F5B;
    margin: 0 0 48px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-title .bullet {
    width: 8px;
    height: 8px;
    background: #617F5B;
    border-radius: 50%;
    flex-shrink: 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-card {
    background: #EFF2EF;
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pillar-card:nth-child(4),
.pillar-card:nth-child(5) {
    grid-column: span 1;
}

.pillars-grid {
    grid-auto-flow: dense;
}

.pillar-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.pillar-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 130%;
    color: #333;
    margin: 0;
}

.pillar-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    color: #666;
    margin: 0;
}

/* Responsive Trust Pillars */

/* Tablet */
@media (max-width: 1024px) {
    .trust-pillars-section {
        padding: 80px 0;
    }

    .trust-container {
        padding: 0 40px;
    }

    .trust-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .pillar-card {
        padding: 32px 24px;
    }

    .pillar-icon {
        width: 64px;
        height: 64px;
    }

    .pillar-icon img {
        width: 64px;
        height: 64px;
    }

    .pillar-title {
        font-size: 16px;
    }

    .pillar-description {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .trust-pillars-section {
        padding: 60px 0;
    }

    .trust-container {
        padding: 0 20px;
    }

    .trust-title {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pillar-card {
        padding: 28px 20px;
    }

    .pillar-icon {
        width: 56px;
        height: 56px;
    }

    .pillar-icon img {
        width: 56px;
        height: 56px;
    }

    .pillar-title {
        font-size: 15px;
    }

    .pillar-description {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .trust-pillars-section {
        padding: 50px 0;
    }

    .trust-container {
        padding: 0 16px;
    }

    .trust-title {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .pillars-grid {
        gap: 16px;
    }

    .pillar-card {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .pillar-icon {
        width: 52px;
        height: 52px;
    }

    .pillar-icon img {
        width: 52px;
        height: 52px;
    }

    .pillar-title {
        font-size: 14px;
    }

    .pillar-description {
        font-size: 12px;
    }
}

/* === FEATURED PROJECTS SECTION === */

.featured-projects-section {
    background: #fff;
    padding: 100px 0;
}

.projects-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 160px;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.projects-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    color: #617F5B;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.projects-title .bullet {
    width: 8px;
    height: 8px;
    background: #617F5B;
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-see-all {
    padding: 14px 32px;
    background: transparent;
    color: #333;
    text-decoration: none;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #333;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-see-all:hover {
    background: #333;
    color: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.project-card {
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.project-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
    color: #333;
    margin: 0;
}

.project-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-see-details {
    padding: 12px 28px;
    background: transparent;
    color: #333;
    text-decoration: none;
    border-radius: 32px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #333;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.btn-see-details:hover {
    background: #617F5B;
    color: #fff;
    border-color: #617F5B;
}

/* Responsive Featured Projects */

/* Tablet */
@media (max-width: 1024px) {
    .featured-projects-section {
        padding: 80px 0;
    }

    .projects-container {
        padding: 0 40px;
    }

    .projects-header {
        margin-bottom: 48px;
    }

    .projects-title {
        font-size: 24px;
    }

    .btn-see-all {
        padding: 12px 28px;
        font-size: 15px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .project-image {
        height: 240px;
    }

    .project-content {
        padding: 28px 20px;
    }

    .project-title {
        font-size: 20px;
    }

    .project-description {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .featured-projects-section {
        padding: 60px 0;
    }

    .projects-container {
        padding: 0 20px;
    }

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }

    .projects-title {
        font-size: 20px;
    }

    .btn-see-all {
        width: 100%;
        justify-content: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-image {
        height: 220px;
    }

    .project-content {
        padding: 24px 20px;
    }

    .project-title {
        font-size: 18px;
    }

    .project-description {
        font-size: 13px;
    }

    .btn-see-details {
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .featured-projects-section {
        padding: 50px 0;
    }

    .projects-container {
        padding: 0 16px;
    }

    .projects-header {
        gap: 20px;
        margin-bottom: 32px;
    }

    .projects-title {
        font-size: 18px;
    }

    .btn-see-all {
        padding: 10px 24px;
        font-size: 14px;
    }

    .projects-grid {
        gap: 16px;
    }

    .project-image {
        height: 200px;
    }

    .project-content {
        padding: 20px 16px;
        gap: 12px;
    }

    .project-title {
        font-size: 16px;
    }

    .project-description {
        font-size: 12px;
    }

    .btn-see-details {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* === CTA SECTION (Inside Footer) === */

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
    padding: 100px 0;
    background: #fff;
    margin-left: -160px;
    margin-right: -160px;
    padding-left: 160px;
    padding-right: 160px;
}

.cta-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
    color: #333;
    margin: 0;
}

.cta-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    color: #666;
    margin: 0;
}

.btn-schedule {
    padding: 16px 36px;
    background: #617F5B;
    color: #fff;
    text-decoration: none;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    transition: all 0.3s ease;
    border: 2px solid #617F5B;
}

.btn-schedule:hover {
    background: #506847;
    border-color: #506847;
}

.cta-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive CTA Section */

/* Tablet */
@media (max-width: 1024px) {
    .cta-content {
        gap: 60px;
        margin-bottom: 60px;
        padding: 80px 0;
        margin-left: -40px;
        margin-right: -40px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-description {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
        padding: 60px 0;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .cta-left {
        gap: 24px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 15px;
    }

    .btn-schedule {
        width: 100%;
    }

    .cta-right {
        order: -1;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .cta-content {
        margin-bottom: 40px;
        padding: 50px 0;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .cta-left {
        gap: 20px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-description {
        font-size: 14px;
    }

    .btn-schedule {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* === FOOTER === */

.site-footer {
    background: #617F5B;
    color: #fff;
    padding: 0 0 40px;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 160px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 32px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.footer-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    color: #fff;
    margin: 0;
}

.footer-text a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-text a:hover {
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 64px;
}

.footer-link {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    text-align: left;
}

/* Responsive Footer */

/* Tablet */
@media (max-width: 1024px) {
    .site-footer {
        padding: 0 0 32px;
    }

    .footer-container {
        padding: 0 40px;
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-info {
        grid-column: 1 / -1;
    }

    .footer-nav {
        padding-top: 0;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .footer-label {
        font-size: 14px;
    }

    .footer-text {
        font-size: 13px;
    }

    .footer-link {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 0 0 24px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-info {
        grid-column: auto;
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-label {
        font-size: 13px;
    }

    .footer-text {
        font-size: 12px;
    }

    .footer-nav {
        gap: 16px;
    }

    .footer-link {
        font-size: 15px;
    }

    .footer-bottom {
        padding-top: 24px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .site-footer {
        padding: 0 0 20px;
    }

    .footer-container {
        padding: 0 16px;
    }

    .footer-columns {
        gap: 28px;
        margin-bottom: 24px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-content {
        gap: 16px;
    }

    .footer-section {
        gap: 6px;
    }

    .footer-label {
        font-size: 12px;
    }

    .footer-text {
        font-size: 11px;
    }

    .footer-nav {
        gap: 12px;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

/* === CONTACT PAGE === */

/* Contact Hero Section */
.contact-hero-section {
    background: #fff;
    padding: 80px 0 60px;
}

.contact-hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 160px;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-hero-title .title-green {
    color: #617F5B;
}

.contact-hero-title .title-light {
    color: #D4D4D4;
}

.contact-hero-right {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
}

.contact-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Form Section */
.contact-form-section {
    background: #fff;
    padding: 60px 0 100px;
}

.contact-form-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 160px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #617F5B;
    margin: 0 0 40px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-title .bullet {
    width: 8px;
    height: 8px;
    background: #617F5B;
    border-radius: 50%;
}

.form-success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.form-error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group.full-width {
    grid-column: 2;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #F8F8F8;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #617F5B;
    background: #fff;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn-submit-consultation {
    padding: 16px 40px;
    background: #617F5B;
    color: #fff;
    border: none;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-consultation:hover {
    background: #506847;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(97, 127, 91, 0.3);
}

/* Contact Info Section */
.contact-info-section {
    background: #617F5B;
    padding: 80px 0;
}

.contact-info-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 160px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.contact-map {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-detail-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.contact-detail-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;
    color: #fff;
    margin: 0;
}

/* Responsive Contact Page */

/* Tablet */
@media (max-width: 1024px) {
    .contact-hero-container,
    .contact-form-container,
    .contact-info-container {
        padding: 0 40px;
    }

    .contact-hero-content {
        gap: 60px;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-right {
        height: 350px;
    }

    .form-row {
        gap: 24px;
    }

    .contact-info-grid {
        gap: 40px;
    }

    .contact-details {
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 0 40px;
    }

    .contact-hero-container,
    .contact-form-container,
    .contact-info-container {
        padding: 0 20px;
    }

    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-right {
        height: 300px;
    }

    .contact-form-section {
        padding: 40px 0 60px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group.full-width {
        grid-column: 1;
        grid-row: auto;
    }

    .form-actions {
        justify-content: stretch;
    }

    .btn-submit-consultation {
        width: 100%;
    }

    .contact-info-section {
        padding: 60px 0;
    }

    .contact-info-grid {
        display: flex !important;
        gap: 24px !important;
        align-items: flex-start !important;
        grid-template-columns: unset !important;
    }

    .contact-map {
        width: 120px !important;
        min-width: 120px !important;
        max-width: 120px !important;
        height: auto !important;
        flex-shrink: 0 !important;
        border-radius: 0 !important;
    }

    .contact-map img {
        width: 100% !important;
        max-width: 120px !important;
        height: auto !important;
        max-height: 120px !important;
        object-fit: contain !important;
    }

    .contact-details {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        flex: 1 !important;
        grid-template-columns: unset !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .contact-hero-container,
    .contact-form-container,
    .contact-info-container {
        padding: 0 16px;
    }

    .contact-hero-title {
        font-size: 24px;
    }

    .contact-hero-right {
        height: 250px;
    }

    .form-section-title {
        font-size: 18px;
    }

    .form-group label {
        font-size: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .btn-submit-consultation {
        padding: 14px 32px;
        font-size: 15px;
    }

    .contact-info-grid {
        display: flex !important;
        gap: 16px !important;
        align-items: flex-start !important;
        grid-template-columns: unset !important;
    }

    .contact-map {
        width: 100px !important;
        min-width: 100px !important;
        max-width: 100px !important;
        height: auto !important;
        flex-shrink: 0 !important;
        border-radius: 0 !important;
    }

    .contact-map img {
        width: 100% !important;
        max-width: 100px !important;
        height: auto !important;
        max-height: 100px !important;
        object-fit: contain !important;
    }

    .contact-details {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        flex: 1 !important;
        grid-template-columns: unset !important;
    }

    .contact-detail-title {
        font-size: 16px;
    }

    .contact-detail-text {
        font-size: 14px;
    }
}

/* ===================================
   TranslatePress Language Switcher Custom Styling
   =================================== */
.lang-switch .trp-language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-switch .trp-ls-shortcode-language {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lang-switch .trp-ls-shortcode-current-language {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
}

.lang-switch .trp-ls-shortcode-current-language:before {
    content: "language";
    font-family: 'Material Symbols Outlined';
    font-size: 20px;
}

.lang-switch .trp-ls-shortcode-current-language a {
    color: inherit;
    text-decoration: none;
}

.lang-switch .trp-ls-language-name {
    text-transform: uppercase;
}

/* Dropdown styling for language options */
.lang-switch .trp-ls-shortcode-language ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-switch .trp-ls-shortcode-language ul li {
    padding: 8px 16px;
}

.lang-switch .trp-ls-shortcode-language ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-switch .trp-ls-shortcode-language ul li a:hover {
    color: #617F5B;
}

/* Mobile responsive language switcher */
@media (max-width: 768px) {
    .lang-switch .trp-ls-shortcode-current-language {
        font-size: 14px;
    }

    .lang-switch .trp-ls-shortcode-current-language:before {
        font-size: 18px;
    }
}

/* ===================================
   Custom Language Switcher with Globe Icon
   =================================== */
.custom-lang-switcher {
    position: relative;
    display: inline-block;
}

.custom-lang-switcher .lang-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #333;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.custom-lang-switcher .lang-trigger:hover {
    color: #617F5B;
}

.custom-lang-switcher .lang-trigger .material-symbols-outlined {
    font-size: 20px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.custom-lang-switcher .lang-trigger .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.custom-lang-switcher .current-lang {
    text-transform: capitalize;
}

.custom-lang-switcher .lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.custom-lang-switcher:hover .lang-dropdown,
.custom-lang-switcher .lang-trigger:focus + .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-lang-switcher:hover .lang-trigger .arrow {
    transform: rotate(180deg);
}

.custom-lang-switcher .lang-option {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.custom-lang-switcher .lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.custom-lang-switcher .lang-option:last-child {
    border-radius: 0 0 8px 8px;
}

.custom-lang-switcher .lang-option:hover {
    background: #F5F5F5;
    color: #617F5B;
}

.custom-lang-switcher .lang-option.active {
    background: #EFF2EF;
    color: #617F5B;
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .custom-lang-switcher .lang-trigger {
        font-size: 13px;
    }

    .custom-lang-switcher .lang-trigger .material-symbols-outlined {
        font-size: 18px;
    }

    .custom-lang-switcher .lang-option {
        font-size: 13px;
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .custom-lang-switcher .lang-trigger {
        font-size: 12px;
    }

    .custom-lang-switcher .lang-trigger .material-symbols-outlined {
        font-size: 16px;
    }

    .custom-lang-switcher .current-lang {
        display: none;
    }
}
