:root {
    --primary: #FF6B21;
    --primary-hover: #e55a16;
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-card: #1e1e1e;
    --bg-light: #ffffff;
    --bg-light-gray: #f8f9fa;
    --text-white: #ffffff;
    --text-light-gray: #cccccc;
    --text-dark: #333333;
    --text-gray: #666666;
    --border-light: #eaeaea;
    --border-dark: #333333;
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Kanit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 strong, h2 strong, h3 strong {
    color: var(--primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 33, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-outline-white:hover {
    background-color: var(--text-white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--text-white);
    color: var(--primary);
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.btn-dark:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-white);
    transition: var(--transition);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

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

.brand-name {
    display: flex;
    font-family: 'Kanit', sans-serif;
    letter-spacing: -0.5px;
    font-weight: 500;
}

.brand-white {
    color: #FFFFFF;
}

.brand-orange {
    color: #FF6B21;
}


.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-white);
    font-weight: 400;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    background-color: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
}

.lang-btn {
    padding: 5px 15px;
    font-size: 0.85rem;
    color: var(--text-white);
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: inherit;
}

.lang-btn.active {
    background-color: var(--primary);
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light-gray);
    padding: 60px 0 20px;
    border-top: 5px solid var(--primary);
}

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

.footer-col h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-decoration: none;
}

.logo-icon.scale-down {
    width: 40px;
    height: 40px;
}


.footer-desc {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: var(--bg-card);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.social-icon.fb { background-color: #1877F2; }
.social-icon.tiktok { background-color: #000000; }
.social-icon.line { background-color: #00B900; }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Page Header Structure for inner pages */
.page-header {
    padding: 120px 0 60px;
    background-color: var(--bg-light-gray);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.page-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-title strong {
    color: var(--primary);
}

.page-subtitle {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--text-gray);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links, .nav-actions .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.95)), url('images/hero-1.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

@media (max-width: 768px) {
    .hero {
        background: linear-gradient(to bottom, rgba(18, 18, 18, 0.2) 0%, rgba(18, 18, 18, 0.95) 100%), url('images/hero-Phone.webp') top center/100% auto no-repeat #121212;
    }
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-white);
}
.tag {
    display: inline-block;
    padding: 5px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: var(--text-white);
    backdrop-filter: blur(5px);
}
.hero-title {
    font-size: 3.8rem;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    max-width: 700px;
    margin: 0 auto;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}
.stat-text {
    font-size: 0.95rem;
    color: var(--text-light-gray);
}

/* Principles */
.principles {
    background-color: var(--bg-light);
}
.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.principle-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}
.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background-color: rgba(255, 107, 33, 0.1);
    border-radius: 50%;
}
.principle-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}
.principle-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.95)), url('images/why-choose-us-bg.png') center/cover no-repeat;
    color: var(--text-white);
    padding: 100px 0;
}
.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.section-badge {
    color: var(--text-light-gray);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}
.section-badge::before, .section-badge::after {
    content: '';
    height: 1px;
    width: 30px;
    background-color: var(--text-gray);
}
.why-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.why-title strong {
    color: var(--primary);
}
.why-desc {
    color: var(--text-light-gray);
    margin-bottom: 30px;
    font-size: 1.05rem;
}
.why-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.why-list i {
    color: var(--primary);
    font-size: 1.3rem;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.dark-stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}
.dark-stat-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}
.hero-phone-stat {
    border-color: rgba(255, 107, 33, 0.4);
    background-color: rgba(255, 107, 33, 0.08);
}
.hero-phone-stat:hover {
    background-color: rgba(255, 107, 33, 0.2) !important;
    border-color: var(--primary) !important;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 30px rgba(255, 107, 33, 0.25);
}
.dark-stat-card.highlight {
    background-color: rgba(255, 107, 33, 0.05);
    border-color: rgba(255, 107, 33, 0.3);
}
.dark-stat-card .stat-number {
    font-size: 3rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
}
.dark-stat-card .plus {
    color: var(--primary);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 80px 0;
}
.cta-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}
.cta-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}
.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.cta-contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}
.cta-contact-info a:hover {
    opacity: 0.8;
}

/* Responsive specific to sections */
@media (max-width: 992px) {
    .principles-grid { grid-template-columns: 1fr 1fr; }
    .why-container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 12px; align-items: center; border-top:none; }
    .principles-grid { grid-template-columns: 1fr; }
    .why-stats { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .cta-contact-info { flex-direction: column; gap: 15px; }
    .hero-stats .dark-stat-card,
    .hero-stats .hero-phone-stat {
        padding: 12px 20px !important;
        width: 100%;
        max-width: 260px;
    }
    .hero-stats .stat-number {
        font-size: 1.15rem !important;
    }
    .hero-stats .stat-text {
        font-size: 0.85rem;
    }
}

/* Services Page */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}
.service-image {
    height: 240px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-image img {
    transform: scale(1.1);
}
.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}
.service-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.service-tags span {
    background-color: var(--bg-light-gray);
    color: var(--text-gray);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--border-light);
}

/* About Page */
.about-section {
    background-color: var(--bg-light);
}
.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--primary);
    border-radius: var(--border-radius);
    z-index: -1;
}
.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.about-content h2 strong {
    color: var(--primary);
}
.about-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Contact Page */
.contact-section {
    background-color: var(--bg-light-gray);
}
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-light);
    display: flex;
    gap: 20px;
    transition: var(--transition);
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--primary);
}
.cc-icon {
    font-size: 2.5rem;
    color: var(--primary);
    background-color: rgba(255, 107, 33, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.cc-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.cc-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.contact-sidebar {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-light);
    text-align: center;
}
.social-channels-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.social-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.5rem;
    transition: var(--transition);
}
.btn-social.fb { background-color: #1877F2; }
.btn-social.tiktok { background-color: #000000; }
.btn-social.line { background-color: #00B900; }
.btn-social:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: var(--text-white);
}

.qr-box {
    background-color: var(--bg-light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px dashed var(--border-light);
}
.qr-box p {
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-dark);
}
.qr-box img {
    border-radius: 8px;
    width: 150px;
    margin: 0 auto;
}

/* Margin utilities */
.mb-50 {
    margin-bottom: 50px;
}
.scale-down {
    transform: scale(0.8);
}

@media (max-width: 992px) {
    .service-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .service-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-light-gray);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}
.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    z-index: 10;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Updates for Service cards layout based on user feedback */
.service-content {
    display: flex;
    flex-direction: column;
}
.service-target {
    margin-top: auto;
    border-top: 1px solid var(--border-light);
    padding-top: 15px;
    margin-bottom: 20px;
}
.target-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
}
.service-tags span {
    background-color: var(--bg-light-gray);
    color: var(--text-gray);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    border: none;
}
.service-action {
    margin-top: 10px;
}
.btn.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    padding: 8px 25px;
    border-radius: 4px;
    font-size: 0.95rem;
    display: inline-block;
}
.btn.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-white);
}

/* Mission & Vision Section (About Page) */
.mv-section {
    background-color: var(--bg-light-gray);
    padding: 80px 0;
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.mv-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 60px 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}
.mv-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 60px;
    bottom: 60px;
    width: 4px;
    background-color: var(--primary);
    border-radius: 0 4px 4px 0;
}
.mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 33, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 30px;
}
.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}
.mv-card p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .mv-grid { grid-template-columns: 1fr; }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Center everything with flexbox */
    align-items: center;
    justify-content: center;
}

/* JS sets display:block — override to flex */
.lightbox[style*="display: block"],
.lightbox[style*="display:block"] {
    display: flex !important;
}

.lightbox-content {
    display: block;
    max-width: min(90vw, 900px);
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255,255,255,0.05);
    animation: lightboxZoom 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxZoom {
    from { transform: scale(0.75); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10000;
    user-select: none;
}

.lightbox-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1) rotate(90deg);
}


.gallery-item {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '\f287'; /* Phosphor MagnifyingGlassPlus icon code */
    font-family: 'Phosphor-Fill' !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(255, 107, 33, 0.8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* About Story Section */
.about-story {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('images/about-story-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-badge {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-badge .line {
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.story-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.story-title strong {
    color: var(--primary-color);
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.story-stat-item .num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
}

.story-stat-item .lbl {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-title {
        font-size: 2.2rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
}



/* Comprehensive Services Sections */
.comprehensive-services {
    background-color: var(--bg-light-gray);
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}
.feature-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 33, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}
.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}
@media (max-width: 992px) {
    .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .feature-grid { grid-template-columns: 1fr; }
}

/* Gallery Section */
.gallery-section {
    background-color: #2C2C2C;
    padding: 60px 0;
}
.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}
.gallery-subtitle {
    color: #FFDE59;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.gallery-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.gallery-item {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.8);
    background-color: #f1f1f1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Contact Page Redesign */
.contact-layout-new {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
    justify-content: space-between;
}
.contact-info-list {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-map-wrap {
    flex: 1.2;
    min-width: 320px;
    display: flex;
    flex-direction: column;
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 1rem;
    color: #333333;
    font-weight: 500;
    line-height: 1.5;
}
.info-item > i {
    font-size: 1.4rem;
    color: #444;
    margin-right: 15px;
    margin-top: 2px;
}
.info-item.highlight {
    color: #111111;
}
.info-item.highlight > i {
    color: #111111;
}
.info-item.highlight a {
    color: #111111;
    text-decoration: none;
    transition: var(--transition);
}
.info-item.highlight a:hover {
    color: var(--primary);
    opacity: 1;
}
.info-item.share-row {
    align-items: center;
    margin-bottom: 35px;
}
.social-share-links {
    display: flex;
    gap: 12px;
    align-items: center;
}
.social-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.15rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    overflow: hidden;
}
.social-circle:hover {
    transform: scale(1.12);
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.social-circle.line { background: #06C755; }
.social-circle.fb { background: #1877F2; }
.social-circle.tiktok { background: #010101; }

.btn-outline-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #df4428;
    color: #df4428;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    font-size: 0.95rem;
}
.btn-outline-brand:hover {
    background: #df4428;
    color: white;
}
.download-btn {
    align-self: flex-start;
    margin-left: 36px;
}

.map-inner {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.map-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.map-buttons .btn-outline-brand {
    padding: 10px 30px;
    min-width: 140px;
}

@media (max-width: 991px) {
    .contact-layout-new {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .contact-layout-new {
        flex-direction: column-reverse;
    }
    .download-btn {
        margin-left: 0;
        align-self: center;
        width: 100%;
    }
    .map-buttons {
        flex-direction: row;
        width: 100%;
    }
    .map-buttons .btn-outline-brand {
        flex: 1;
        padding: 10px;
    }
    .info-item {
        font-size: 0.95rem;
    }
}

/* Mobile FAB Speed Dial Menu */
.fab-menu {
    display: none;
    position: fixed;
    right: 18px;
    bottom: 24px;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 1100;
}

.fab-menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    pointer-events: none;
}

.fab-menu-items .mobile-fab {
    opacity: 0;
    transform: translateY(20px) scale(0.7);
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    pointer-events: none;
}

.fab-menu.open .fab-menu-items {
    pointer-events: auto;
}

.fab-menu.open .fab-menu-items .mobile-fab {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Stagger delays */
.fab-menu.open .fab-menu-items .mobile-fab:nth-child(1) { transition-delay: 0.12s; }
.fab-menu.open .fab-menu-items .mobile-fab:nth-child(2) { transition-delay: 0.08s; }
.fab-menu.open .fab-menu-items .mobile-fab:nth-child(3) { transition-delay: 0.04s; }
.fab-menu.open .fab-menu-items .mobile-fab:nth-child(4) { transition-delay: 0s;    }

/* Close stagger (no delay on open → reverse on close) */
.fab-menu:not(.open) .fab-menu-items .mobile-fab:nth-child(1) { transition-delay: 0s;    }
.fab-menu:not(.open) .fab-menu-items .mobile-fab:nth-child(2) { transition-delay: 0.04s; }
.fab-menu:not(.open) .fab-menu-items .mobile-fab:nth-child(3) { transition-delay: 0.08s; }
.fab-menu:not(.open) .fab-menu-items .mobile-fab:nth-child(4) { transition-delay: 0.12s; }

.mobile-fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white !important;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.mobile-fab:active {
    transform: scale(0.9) !important;
}

.mobile-fab.fb {
    background: #1877F2;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
    border: none;
}

.mobile-fab.tiktok {
    background: #000000;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: none;
}

.mobile-fab.line {
    background: #06C755;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
    border: none;
}

.mobile-fab.phone {
    background: var(--primary);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(255, 107, 33, 0.4);
    border: none;
}

/* Main Toggle Button */
.fab-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(255, 107, 33, 0.5);
    transition: transform 0.3s ease, background 0.3s ease;
    animation: pulse-fab 2.5s infinite;
    position: relative;
    z-index: 10;
}

.fab-toggle:active {
    transform: scale(0.93);
}

.fab-menu.open .fab-toggle {
    background: #1a1a1a;
    animation: none;
    transform: rotate(45deg);
    box-shadow: 0 5px 18px rgba(0,0,0,0.4);
}

/* Backdrop when open */
.fab-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(1px);
}

.fab-backdrop.show {
    display: block;
}

@keyframes pulse-fab {
    0%   { box-shadow: 0 0 0 0 rgba(255, 107, 33, 0.55); }
    70%  { box-shadow: 0 0 0 12px rgba(255, 107, 33, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 33, 0); }
}

/* Desktop: always show all 4 icons directly, no toggle needed */
@media (min-width: 769px) {
    .fab-menu {
        display: flex;
    }
    .fab-toggle {
        display: none; /* Hide the toggle button on desktop */
    }
    .fab-backdrop {
        display: none !important; /* No backdrop on desktop */
    }
    /* Always show items on desktop */
    .fab-menu-items {
        pointer-events: auto;
        margin-bottom: 0;
        gap: 12px;
    }
    .fab-menu-items .mobile-fab {
        opacity: 1;
        transform: none;
        pointer-events: auto;
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }
    /* Remove stagger for desktop since always visible */
    .fab-menu.open .fab-menu-items .mobile-fab:nth-child(1),
    .fab-menu.open .fab-menu-items .mobile-fab:nth-child(2),
    .fab-menu.open .fab-menu-items .mobile-fab:nth-child(3),
    .fab-menu.open .fab-menu-items .mobile-fab:nth-child(4),
    .fab-menu:not(.open) .fab-menu-items .mobile-fab:nth-child(1),
    .fab-menu:not(.open) .fab-menu-items .mobile-fab:nth-child(2),
    .fab-menu:not(.open) .fab-menu-items .mobile-fab:nth-child(3),
    .fab-menu:not(.open) .fab-menu-items .mobile-fab:nth-child(4) {
        transition-delay: 0s;
    }
}

/* Mobile: keep toggle behavior */
@media (max-width: 768px) {
    .fab-menu {
        display: flex;
    }
}

/* ===== HOME SERVICES OVERVIEW SECTION ===== */
.services-overview {
    background: #f8f9fa;
    padding: 80px 0;
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card-home {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.service-card-home::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff9a5c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card-home:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 107, 33, 0.12);
    border-color: var(--primary);
}

.service-card-home:hover::before {
    transform: scaleX(1);
}

.service-icon-home {
    width: 90px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 107, 33, 0.08); /* soft orange solid */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 8px;
    flex-shrink: 0;
}

.service-card-home h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.service-card-home p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
    flex: 1;
}

.service-link-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: 4px;
    transition: gap 0.2s ease;
}

.service-link-home:hover {
    gap: 10px;
}

@media (max-width: 900px) {
    .services-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid-home {
        grid-template-columns: 1fr;
    }
}

/* ===== TESTIMONIALS SLIDER SECTION ===== */
.testimonials-section {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,33,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section-badge-light {
    display: inline-block;
    background: rgba(255,107,33,0.15);
    color: var(--primary);
    border: 1px solid rgba(255,107,33,0.3);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.btn-outline-white-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-white-dark:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,107,33,0.35);
}

/* Slider */
.testimonial-slider-wrap {
    position: relative;
    overflow: hidden;
    padding: 10px 0 60px;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    cursor: grab;
}

.testimonial-track:active {
    cursor: grabbing;
}

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 32px;
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(255,107,33,0.4);
    box-shadow: 0 8px 30px rgba(255,107,33,0.08);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #FBBF24;
    font-size: 1rem;
}

.testimonial-text {
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.8;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 18px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ff9a5c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.author-role {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

/* Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 12px;
    left: 0; right: 0;
}

.testimonial-dots .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.testimonial-dots .dot.active {
    width: 26px;
    border-radius: 4px;
    background: var(--primary);
}

/* Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    margin-top: -24px;
}

.testimonial-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.testimonial-arrow.prev { left: 0; }
.testimonial-arrow.next { right: 0; }

@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 0px);
        min-width: 100%;
        padding: 28px 22px;
    }
    .testimonial-arrow { display: none; }
}


