/* ===========================
   LANGUAGE SWITCHER LAYOUT
   =========================== */

.language-switcher {
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 102;
}

.lang-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.lang-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-sep {
    color: var(--border);
    margin: 0 0.3rem;
}

.header-contact-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-social-icon {
    width: 20px;
    height: 20px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.instagram-btn:hover {
    opacity: 0.7;
}

/* ===========================
   HEADER & NAVIGATION LAYOUT
   =========================== */

.header {
    background-color: var(--primary-navy);
    color: var(--white);
    position: fixed;
    top: 42px;
    width: 100%;
    z-index: 101;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar {
    padding: 0.5rem 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: inline-block;
    height: 100px;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 100%;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* ===========================
   HAMBURGER MENU
   =========================== */

.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 0;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero {
    background: linear-gradient(135deg, rgba(11, 30, 57, 0.65) 0%, rgba(5, 20, 40, 0.65) 100%),
                url('../assets/images/Bangkok1.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 100px 2rem;
    text-align: center;
    background-attachment: fixed;
    border-bottom: 3px solid var(--gold);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================
   STANDARD CONTAINER & SECTIONS
   =========================== */

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* ===========================
   INTRODUCTION SECTION LAYOUT
   =========================== */

.intro-section {
    padding: 80px 2rem;
    background-color: #FAFBFD;
}

.intro-section .section-container {
    max-width: 1200px;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.intro-image {
    display: flex;
    justify-content: center;
}

.profile-photo {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

/* ===========================
   SERVICES SECTION LAYOUT
   =========================== */

.services {
    padding: 80px 2rem;
    background-color: #F5F7FA;
}

.services .section-container {
    max-width: 1200px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* ===========================
   CONTACT SECTION LAYOUT
   =========================== */

.contact-section {
    padding: 80px 2rem;
    background-color: var(--background);
}

.contact-section .section-container {
    max-width: 1200px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.contact-text p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-info-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-info-section:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 2rem;
}

.contact-info-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--sage);
}

.contact-method-text {
    flex: 1;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    display: inline;
}

.contact-label:after {
    content: ": ";
}

.contact-link {
    color: var(--sage);
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline;
}

.contact-link:hover {
    color: var(--gold);
}

.contact-detail {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
    display: inline;
}

.contact-what-happens {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-steps li {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
}

.contact-steps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 900;
    font-size: 1.1rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.4);
}

/* ===========================
   CTA SECTION LAYOUT
   =========================== */

.cta-section {
    background: linear-gradient(135deg, var(--sage) 0%, #5a8478 100%);
    color: var(--white);
    padding: 80px 2rem;
    text-align: center;
    border-top: 2px solid var(--secondary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* ===========================
   SERVICES PAGE SECTIONS
   =========================== */

.services-intro-section {
    padding: 80px 2rem;
    background-color: var(--background);
}

.services-intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-text p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-section {
    padding: 80px 2rem;
    background-color: var(--background);
}

.service-detail-section:nth-child(even) {
    background-color: #FAFBFD;
}

.service-detail-section .section-container {
    max-width: 1200px;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail-image {
    order: 2;
}

.service-detail-text {
    order: 1;
}

.service-detail-reverse .service-detail-content {
    grid-template-columns: 1fr 1fr;
}

.service-detail-reverse .service-detail-image {
    order: -1;
}

.service-detail-text {
    display: flex;
    flex-direction: column;
}

.service-detail-text h3 {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 0.75rem;
}

.service-detail-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--sage);
}

.service-detail-text > p:nth-of-type(1) {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-detail-text > p:nth-of-type(2) {
    margin-bottom: 1.5rem;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-detail-list li {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.service-detail-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 900;
    font-size: 1.2rem;
}

.service-detail-text > p:last-of-type {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-detail-image {
    display: flex;
    justify-content: center;
}

.service-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

/* ===========================
   ABOUT PAGE SECTIONS
   =========================== */

.about-intro-section {
    padding: 80px 2rem;
    background-color: var(--background);
}

.about-intro-section .section-container {
    max-width: 1200px;
}

.about-intro-text {
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro-text p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-experience-section {
    padding: 80px 2rem;
    background-color: #FAFBFD;
}

.about-experience-section .section-container {
    max-width: 1200px;
}

.about-experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-experience-text p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-experience-image {
    display: flex;
    justify-content: center;
}

.about-photo {
    width: 100%;
    max-width: 640px;
    height: auto;
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

/* ===========================
   FOOTER LAYOUT
   =========================== */

.footer {
    background-color: var(--footer-navy);
    color: var(--white);
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-contact-links .social-link {
    color: var(--sage);
}

.header-contact-links .social-link:hover {
    color: var(--gold);
}

.footer-brand .social-link {
    color: var(--white);
}

.footer-brand .social-link:hover {
    color: var(--gold);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    background-color: var(--primary-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}
