

.tit-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: url(https://tourinthailand.travel/wp-content/uploads/2026/02/hero-thailand.jpg) center center / cover no-repeat;
    margin: -30px -15px 0;
    padding: 60px 20px;
}
.tit-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}
.tit-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.tit-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}
.tit-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.tit-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.tit-btn-primary {
    background: #2d6a4f;
    color: #fff !important;
    border: 2px solid #2d6a4f;
}
.tit-btn-primary:hover {
    background: #1b4332;
    border-color: #1b4332;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45,106,79,0.4);
}
.tit-btn-outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid #fff;
    margin-left: 15px;
}
.tit-btn-outline:hover {
    background: #fff;
    color: #1a1a2e !important;
}
.tit-section {
    padding: 80px 0;
}
.tit-section-gray {
    background: #f8f9fa;
}
.tit-section-dark {
    background: #1b4332;
    color: #fff;
}
.tit-section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
}
.tit-section-dark .tit-section-title {
    color: #fff;
}
.tit-section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.tit-section-dark .tit-section-subtitle {
    color: rgba(255,255,255,0.8);
}
.tit-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}
.tit-feature-box {
    text-align: center;
    padding: 30px 20px;
}
.tit-feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a2e;
}
.tit-feature-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}
.tit-dest-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    margin-bottom: 30px;
    transition: transform 0.3s;
}
.tit-dest-card:hover {
    transform: translateY(-5px);
}
.tit-dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tit-dest-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}
.tit-dest-card h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.tit-dest-card span {
    font-size: 0.9rem;
    opacity: 0.9;
}
.tit-step {
    text-align: center;
    padding: 30px 20px;
}
.tit-step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2d6a4f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
}
.tit-step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.tit-step p {
    color: #666;
    font-size: 0.95rem;
}
.tit-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.tit-stat {
    text-align: center;
}
.tit-stat .num {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d6a4f;
}
.tit-stat .label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}
.card:hover {
    transform: translateY(-5px);
}
@media (max-width: 768px) {
    .tit-hero h1 { font-size: 2.2rem; }
    .tit-hero p { font-size: 1rem; }
    .tit-btn { padding: 12px 28px; font-size: 1rem; }
    .tit-btn-outline { margin-left: 0; margin-top: 10px; }
    .tit-section { padding: 50px 0; }
    .tit-section-title { font-size: 1.8rem; }
    .tit-stats { gap: 30px; }
}


