/* SIAMTECH DIGITAL - PICO Services Stylesheet */

/* Base Styles and Variables */
:root {
    --siamtech-primary: #0056B3;    /* Primary Blue */
    --siamtech-secondary: #00A896;  /* Teal Green */
    --siamtech-accent: #F5A623;     /* Warm Yellow */
    --siamtech-highlight: #FF5252;  /* Vibrant Red */
    --siamtech-light: #F5F7FA;      /* Light Gray */
    --siamtech-dark: #1A2A3A;       /* Dark Blue */
    --siamtech-text: #333333;       /* Text Color */
    --siamtech-gradient-1: linear-gradient(135deg, var(--siamtech-primary), var(--siamtech-secondary));
    --siamtech-gradient-2: linear-gradient(135deg, var(--siamtech-secondary), var(--siamtech-accent));
    --siamtech-gradient-3: linear-gradient(135deg, var(--siamtech-primary), var(--siamtech-highlight));
    --siamtech-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --siamtech-radius: 8px;
    --siamtech-transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Prompt', sans-serif;
    color: var(--siamtech-text);
    line-height: 1.6;
    background-color: var(--siamtech-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--siamtech-transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--siamtech-radius);
}

.siamtech_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.siamtech_btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    transition: var(--siamtech-transition);
    border: none;
    cursor: pointer;
}

.siamtech_btn_primary {
    background: var(--siamtech-primary);
    color: white;
}

.siamtech_btn_primary:hover {
    background: #004A9F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.siamtech_btn_secondary {
    background: white;
    color: var(--siamtech-primary);
    border: 2px solid var(--siamtech-primary);
}

.siamtech_btn_secondary:hover {
    background: var(--siamtech-primary);
    color: white;
    transform: translateY(-2px);
}

/* Section Headers */
.siamtech_section_header {
    text-align: center;
    margin-bottom: 50px;
}

.siamtech_section_header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--siamtech-dark);
    position: relative;
    display: inline-block;
}

.siamtech_section_header h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: var(--siamtech-accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.siamtech_section_header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Header Styles */
.siamtech_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 1000;
}

.siamtech_header .siamtech_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.siamtech_logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--siamtech-primary);
    position: relative;
}

.siamtech_logo h1::after {
    content: 'DIGITAL';
    font-size: 12px;
    position: absolute;
    bottom: 0;
    right: -55px;
    color: var(--siamtech-accent);
    letter-spacing: 1px;
}

.siamtech_nav ul {
    display: flex;
}

.siamtech_nav ul li {
    margin-left: 30px;
}

.siamtech_nav ul li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--siamtech-dark);
    padding: 8px 0;
    position: relative;
}

.siamtech_nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--siamtech-primary);
    transition: var(--siamtech-transition);
}

.siamtech_nav ul li a:hover::after,
.siamtech_nav ul li a.siamtech_active::after {
    width: 100%;
}

.siamtech_nav ul li a.siamtech_active {
    color: var(--siamtech-primary);
}

.siamtech_hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.siamtech_hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--siamtech-dark);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--siamtech-transition);
}

/* Hero Section */
.siamtech_hero_pico {
    padding: 150px 0 80px;
    background: var(--siamtech-light);
    overflow: hidden;
    position: relative;
}

.siamtech_hero_pico::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--siamtech-gradient-2);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.05;
    z-index: 0;
}

.siamtech_hero_pico .siamtech_container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.siamtech_hero_content {
    flex: 1;
    padding-right: 50px;
}

.siamtech_hero_content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--siamtech-primary);
    margin-bottom: 20px;
    position: relative;
}

.siamtech_hero_content h1::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--siamtech-accent);
    bottom: -15px;
    left: 0;
    border-radius: 2px;
}

.siamtech_hero_content p {
    font-size: 20px;
    margin: 30px 0;
    color: #555;
    max-width: 550px;
}

.siamtech_hero_buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.siamtech_hero_image {
    flex: 1;
    text-align: right;
    position: relative;
}

.siamtech_hero_image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    background: var(--siamtech-gradient-1);
    border-radius: var(--siamtech-radius);
    z-index: -1;
    opacity: 0.1;
}

/* Features Section */
.siamtech_features_pico {
    padding: 100px 0;
    background-color: white;
}

.siamtech_features_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.siamtech_feature_card {
    background: var(--siamtech-light);
    border-radius: var(--siamtech-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--siamtech-transition);
    position: relative;
    overflow: hidden;
}

.siamtech_feature_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--siamtech-gradient-1);
    opacity: 0.7;
}

.siamtech_feature_card:nth-child(2)::before {
    background: var(--siamtech-gradient-2);
}

.siamtech_feature_card:nth-child(3)::before {
    background: var(--siamtech-gradient-3);
}

.siamtech_feature_card:nth-child(4)::before {
    background: linear-gradient(135deg, var(--siamtech-highlight), var(--siamtech-accent));
}

.siamtech_feature_card:nth-child(5)::before {
    background: linear-gradient(135deg, var(--siamtech-primary), var(--siamtech-highlight));
}

.siamtech_feature_card:nth-child(6)::before {
    background: linear-gradient(135deg, var(--siamtech-accent), var(--siamtech-secondary));
}

.siamtech_feature_card:hover {
    transform: translateY(-10px);
    box-shadow: var(--siamtech-shadow);
}

.siamtech_feature_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.siamtech_feature_card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--siamtech-dark);
}

.siamtech_feature_card p {
    color: #666;
    font-size: 16px;
}

/* PICO Loans Section */
.siamtech_pico_loans {
    padding: 100px 0;
    background-color: var(--siamtech-light);
    position: relative;
}

.siamtech_loans_tabs {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: var(--siamtech-radius);
    box-shadow: var(--siamtech-shadow);
    overflow: hidden;
}

.siamtech_tabs_header {
    display: flex;
    background: var(--siamtech-dark);
}

.siamtech_tab {
    flex: 1;
    text-align: center;
    padding: 20px 15px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: var(--siamtech-transition);
    border-bottom: 4px solid transparent;
}

.siamtech_tab:hover {
    background: rgba(255, 255, 255, 0.1);
}

.siamtech_tab_active {
    border-bottom-color: var(--siamtech-accent);
    background: rgba(255, 255, 255, 0.1);
}

.siamtech_tabs_content {
    padding: 40px;
}

.siamtech_tab_pane {
    display: none;
}

.siamtech_tab_pane.siamtech_tab_active {
    display: block;
}

.siamtech_loan_details {
    display: flex;
    gap: 50px;
    align-items: center;
}

.siamtech_loan_info {
    flex: 1.3;
}

.siamtech_loan_info h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--siamtech-primary);
    margin-bottom: 20px;
}

.siamtech_loan_info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.siamtech_loan_features {
    margin-bottom: 30px;
    background: var(--siamtech-light);
    padding: 20px 30px;
    border-radius: var(--siamtech-radius);
}

.siamtech_loan_features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
    color: #555;
}

.siamtech_loan_features li:last-child {
    border-bottom: none;
}

.siamtech_loan_image {
    flex: 0.7;
}

/* App Section */
.siamtech_app_section {
    padding: 100px 0;
    background: var(--siamtech-gradient-1);
    color: white;
    position: relative;
    overflow: hidden;
}

.siamtech_app_section::before {
    content: '';
    position: absolute;
    right: -150px;
    bottom: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.siamtech_app_section::after {
    content: '';
    position: absolute;
    left: -100px;
    top: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.siamtech_app_wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.siamtech_app_content {
    flex: 1.2;
    padding-right: 60px;
}

.siamtech_app_content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.siamtech_app_content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.siamtech_app_features {
    margin-bottom: 40px;
}

.siamtech_app_features li {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.siamtech_app_icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: white;
    color: var(--siamtech-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    margin-top: 5px;
    font-weight: bold;
}

.siamtech_app_feature_text h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.siamtech_app_feature_text p {
    font-size: 16px;
    margin-bottom: 0;
    opacity: 0.8;
}

.siamtech_app_buttons {
    display: flex;
    gap: 15px;
}

.siamtech_app_btn {
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--siamtech-transition);
}

.siamtech_app_btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.siamtech_app_image {
    flex: 0.8;
    text-align: center;
    position: relative;
}

.siamtech_app_image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 70%;
    height: 70%;
    background: var(--siamtech-accent);
    border-radius: var(--siamtech-radius);
    z-index: -1;
    opacity: 0.2;
}

/* Process Section */
.siamtech_process_section {
    padding: 100px 0;
    background-color: white;
}

.siamtech_process_steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
}

.siamtech_process_step {
    text-align: center;
    width: 200px;
    padding: 0 15px;
    position: relative;
    flex: 1;
}

.siamtech_step_number {
    width: 60px;
    height: 60px;
    background: var(--siamtech-gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.siamtech_process_step:nth-child(3) .siamtech_step_number {
    background: var(--siamtech-gradient-2);
}

.siamtech_process_step:nth-child(5) .siamtech_step_number {
    background: var(--siamtech-gradient-3);
}

.siamtech_process_step:nth-child(7) .siamtech_step_number {
    background: linear-gradient(135deg, var(--siamtech-highlight), var(--siamtech-accent));
}

.siamtech_step_content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--siamtech-dark);
}

.siamtech_step_content p {
    font-size: 15px;
    color: #666;
}

.siamtech_process_connector {
    width: 40px;
    height: 3px;
    background: var(--siamtech-primary);
    opacity: 0.3;
    position: relative;
    top: -40px;
}

/* Testimonials Section */
.siamtech_testimonials {
    padding: 100px 0;
    background-color: var(--siamtech-light);
}

.siamtech_testimonials_slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.siamtech_testimonials_slider::-webkit-scrollbar {
    display: none;
}

.siamtech_testimonial {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    background: white;
    border-radius: var(--siamtech-radius);
    padding: 30px;
    box-shadow: var(--siamtech-shadow);
    transition: var(--siamtech-transition);
}

.siamtech_testimonial:hover {
    transform: translateY(-10px);
}

.siamtech_testimonial_content {
    position: relative;
    padding-top: 30px;
    margin-bottom: 30px;
}

.siamtech_testimonial_content::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 100px;
    color: var(--siamtech-accent);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.siamtech_testimonial_content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.siamtech_testimonial_author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.siamtech_author_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.siamtech_author_info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--siamtech-dark);
    margin-bottom: 5px;
}

.siamtech_author_info p {
    font-size: 14px;
    color: #777;
}

/* FAQ Section */
.siamtech_faq_section {
    padding: 100px 0;
    background-color: white;
}

.siamtech_faq_accordion {
    max-width: 900px;
    margin: 0 auto;
}

.siamtech_accordion_item {
    margin-bottom: 20px;
    border-radius: var(--siamtech-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.siamtech_accordion_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--siamtech-light);
    padding: 20px 30px;
    cursor: pointer;
    transition: var(--siamtech-transition);
}

.siamtech_accordion_header:hover {
    background: #eef2f7;
}

.siamtech_accordion_header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--siamtech-dark);
}

.siamtech_accordion_icon {
    font-size: 24px;
    color: var(--siamtech-primary);
    transition: var(--siamtech-transition);
}

.siamtech_accordion_content {
    background: white;
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.siamtech_accordion_item.active .siamtech_accordion_content {
    padding: 20px 30px;
    max-height: 200px;
}

.siamtech_accordion_item.active .siamtech_accordion_icon {
    transform: rotate(45deg);
}

.siamtech_accordion_content p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* CTA Banner */
.siamtech_cta_banner {
    padding: 80px 0;
    background: var(--siamtech-gradient-2);
    color: white;
    text-align: center;
}

.siamtech_cta_content {
    max-width: 800px;
    margin: 0 auto;
}

.siamtech_cta_content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.siamtech_cta_content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.siamtech_cta_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.siamtech_cta_banner .siamtech_btn_primary {
    background: white;
    color: var(--siamtech-secondary);
}

.siamtech_cta_banner .siamtech_btn_primary:hover {
    background: var(--siamtech-light);
    color: var(--siamtech-secondary);
}

.siamtech_cta_banner .siamtech_btn_secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.siamtech_cta_banner .siamtech_btn_secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Footer Styles */
.siamtech_footer {
    background: var(--siamtech-dark);
    color: white;
    padding: 70px 0 0;
}

.siamtech_footer_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.siamtech_footer_about h3,
.siamtech_footer_links h3,
.siamtech_footer_contact h3,
.siamtech_footer_social h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.siamtech_footer_about p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.siamtech_footer_links ul li {
    margin-bottom: 10px;
}

.siamtech_footer_links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--siamtech-transition);
}

.siamtech_footer_links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.siamtech_footer_contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.siamtech_social_icons {
    display: flex;
    gap: 15px;
}

.siamtech_social_icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--siamtech-transition);
    font-size: 14px;
}

.siamtech_social_icon:hover {
    background: var(--siamtech-primary);
    transform: translateY(-3px);
}

.siamtech_footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.siamtech_footer_bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .siamtech_hero_pico .siamtech_container {
        flex-direction: column;
    }
    
    .siamtech_hero_content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .siamtech_hero_content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .siamtech_hero_buttons {
        justify-content: center;
    }
    
    .siamtech_features_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .siamtech_loan_details {
        flex-direction: column;
    }
    
    .siamtech_loan_info {
        margin-bottom: 30px;
    }
    
    .siamtech_app_wrapper {
        flex-direction: column;
    }
    
    .siamtech_app_content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .siamtech_testimonial {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .siamtech_nav {
        display: none;
    }
    
    .siamtech_hamburger {
        display: flex;
    }
    
    .siamtech_hero_content h1 {
        font-size: 36px;
    }
    
    .siamtech_features_grid {
        grid-template-columns: 1fr;
    }
    
    .siamtech_tabs_header {
        flex-wrap: wrap;
    }
    
    .siamtech_tab {
        flex: 0 0 50%;
    }
    
    .siamtech_process_connector {
        display: none;
    }
    
    .siamtech_process_steps {
        flex-wrap: wrap;
    }
    
    .siamtech_process_step {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .siamtech_testimonial {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .siamtech_hero_content h1 {
        font-size: 30px;
    }
    
    .siamtech_hero_content p {
        font-size: 16px;
    }
    
    .siamtech_hero_buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .siamtech_tabs_content {
        padding: 30px 20px;
    }
    
    .siamtech_tab {
        flex: 0 0 100%;
    }
    
    .siamtech_app_buttons {
        flex-direction: column;
    }
    
    .siamtech_cta_buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .siamtech_footer_grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .siamtech_footer_links ul li a:hover {
        padding-left: 0;
    }
    
    .siamtech_social_icons {
        justify-content: center;
    }
    
    .siamtech_accordion_header h3 {
        font-size: 16px;
    }
} 