/* Colors - Siloam Brand Theme (From Official Logo) */

:root {
    --color-white: #fff;
    /* primary color (menu, top bar, and some text) - exact logo orange */
    --color-primary: #ff8e2b;
    --color-primary-rgb: 255, 142, 43;
    /* secondary color (some buttons background and some text) - darker orange */
    --color-secondary: #e67a0f;
    --color-secondary-rgb: 230, 122, 15;
    /* background color - light cream/white */
    --color-background: #f8f9fa;
    --color-background-rgb: 248, 249, 250;
    /* light color (data table and texts on buttons) */
    --color-light: #ffffff;
    --color-light-rgb: 255, 255, 255;
    --color-white-rgb: 255, 255, 255;
    /* dark text color - from logo */
    --color-dark-text: #2d3e50;
    --color-dark-text-rgb: 45, 62, 80;
    /* medium text color for secondary text */
    --color-medium-text: #5a6c7d;
    --color-medium-text-rgb: 90, 108, 125;
    /* accent highlight - lighter orange for hover states */
    --color-accent-light: #ffa04d;
    --color-accent-light-rgb: 255, 160, 77;
    /* very light background for sections */
    --color-section-bg: #fff5eb;
    --color-section-bg-rgb: 255, 245, 235;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Inter", sans-serif;
    color: var(--color-dark-text);
    background-size: cover;
    background-color: var(--color-background);
    position: relative;
    font-weight: 400;
    letter-spacing: 0.01em;
}

    body::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 245, 235, 0.95) 40%, rgba(255, 142, 43, 0.05) 50%, rgba(255, 245, 235, 0.95) 60%, rgba(255, 250, 245, 0.98) 100%);
    }

@media (min-width: 1024px) {
    body {
        background-attachment: fixed;
    }
}

a {
    color: var(--color-primary);
    text-decoration: none;
    font-family: "Inter", sans-serif;
}

    a:hover {
        color: var(--color-secondary);
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 600;
}

h3 {
    font-weight: 600;
}

#main {
    position: relative;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
    box-shadow: 0 4px 12px rgba(255, 142, 43, 0.3);
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: var(--color-secondary);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(255, 142, 43, 0.4);
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    position: relative;
    width: 100%;
    padding: 100px 0;
}

    #header h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        color: var(--color-dark-text);
    }

    #header h2 {
        color: var(--color-medium-text);
        margin-bottom: 40px;
        font-size: 22px;
    }

    #header .countdown {
        margin-bottom: 80px;
    }

        #header .countdown div {
            text-align: center;
            margin: 10px;
            width: 100px;
            padding: 15px 0;
            background: var(--color-light);
            border: 2px solid rgba(255, 142, 43, 0.3);
            border-top: 5px solid var(--color-primary);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(255, 142, 43, 0.15);
            transition: all 0.3s ease;
        }

            #header .countdown div:hover {
                border-color: var(--color-primary);
                transform: translateY(-5px);
                box-shadow: 0 8px 25px rgba(255, 142, 43, 0.25);
            }

            #header .countdown div h3 {
                font-weight: 800;
                font-size: 44px;
                margin-bottom: 15px;
                color: var(--color-primary);
                font-family: "Poppins", sans-serif;
            }

            #header .countdown div h4 {
                font-size: 16px;
                font-weight: 500;
                color: var(--color-medium-text);
                font-family: "Inter", sans-serif;
                text-transform: uppercase;
                letter-spacing: 0.1em;
            }

@media (max-width: 575px) {
    #header .countdown div {
        width: 70px;
        padding: 10px 0;
        margin: 10px 8px;
    }

        #header .countdown div h3 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        #header .countdown div h4 {
            font-size: 14px;
            font-weight: 500;
        }
}

#header .subscribe {
    font-size: 15px;
    text-align: center;
}

    #header .subscribe h4 {
        font-size: 20px;
        font-weight: 600;
        color: var(--color-dark-text);
        position: relative;
        padding-bottom: 12px;
    }

    #header .subscribe .subscribe-form {
        min-width: 300px;
        margin-top: 10px;
        background: #fff;
        padding: 6px 10px;
        position: relative;
        text-align: left;
        border-radius: 6px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: 2px solid rgba(255, 142, 43, 0.2);
    }

        #header .subscribe .subscribe-form input[type=email] {
            border: 0;
            padding: 4px 8px;
            width: calc(100% - 100px);
            color: var(--color-dark-text);
        }

        #header .subscribe .subscribe-form input[type=submit] {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            border: 0;
            background: none;
            font-size: 16px;
            padding: 0 20px;
            background: var(--color-primary);
            color: #fff;
            transition: 0.3s;
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            border-radius: 0 4px 4px 0;
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

            #header .subscribe .subscribe-form input[type=submit]:hover {
                background: var(--color-secondary);
            }

    #header .subscribe .error-message {
        display: none;
        color: #ed3c0d;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    #header .subscribe .sent-message {
        display: none;
        color: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    #header .subscribe .loading {
        display: none;
        text-align: center;
        padding: 15px;
    }

        #header .subscribe .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid var(--color-primary);
            border-top-color: #eee;
            animation: animate-loading-notify 1s linear infinite;
        }

@keyframes animate-loading-notify {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#header .social-links {
    margin-top: 10px;
}

    #header .social-links a {
        font-size: 24px;
        display: inline-block;
        color: var(--color-medium-text);
        line-height: 1;
        padding-top: 14px;
        margin: 0 10px;
        text-align: center;
        transition: 0.3s;
    }

        #header .social-links a:hover {
            color: var(--color-primary);
            transform: translateY(-3px);
        }

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
}

.section-bg {
    background-color: var(--color-section-bg);
}

.section-title {
    text-align: center;
    padding-bottom: 15px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        color: var(--color-dark-text);
        font-family: "Poppins", sans-serif;
        letter-spacing: -0.02em;
    }

    .section-title p {
        margin-bottom: 0;
        color: var(--color-medium-text);
        font-size: 16px;
        margin-top: 10px;
    }

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--color-dark-text);
    font-family: "Poppins", sans-serif;
}

.about .content h3 {
    font-weight: 600;
    line-height: 32px;
    font-size: 24px;
    color: var(--color-primary);
    font-family: "Poppins", sans-serif;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding: 10px 0 0 28px;
        position: relative;
    }

    .about .content ul i {
        left: 0;
        top: 12px;
        position: absolute;
        font-size: 20px;
        color: var(--color-primary);
    }

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info-wrap {
    background: var(--color-light);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid rgba(255, 142, 43, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact .info i {
    font-size: 20px;
    color: #fff;
    float: left;
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-dark-text);
    font-family: "Poppins", sans-serif;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--color-medium-text);
}

.contact .info .email p {
    padding-top: 5px;
}

.contact .info .social-links {
    padding-left: 60px;
}

    .contact .info .social-links a {
        font-size: 18px;
        display: inline-block;
        background: var(--color-background);
        color: var(--color-primary);
        line-height: 1;
        padding: 8px 0;
        border-radius: 50%;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
        margin-right: 10px;
        border: 2px solid rgba(255, 142, 43, 0.3);
    }

        .contact .info .social-links a:hover {
            background: var(--color-primary);
            color: #fff;
            border-color: var(--color-primary);
            transform: translateY(-3px);
        }

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: var(--color-secondary);
    color: #fff;
    transform: scale(1.1);
}

.contact .php-email-form {
    width: 100%;
    padding: 30px;
    padding-top: 0;
    background: var(--color-light);
    border-radius: 8px;
    border: 2px solid rgba(255, 142, 43, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

    .contact .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: center;
        padding: 15px;
        font-weight: 600;
        border-radius: 4px;
    }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
        border-radius: 4px;
    }

    .contact .php-email-form .loading {
        display: none;
        background: var(--color-section-bg);
        text-align: center;
        padding: 15px;
        border-radius: 4px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid var(--color-primary);
            border-top-color: #eee;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 4px;
        box-shadow: none;
        font-size: 14px;
        background: var(--color-background);
        border: 2px solid rgba(255, 142, 43, 0.2);
        color: var(--color-dark-text);
        transition: 0.3s;
    }

        .contact .php-email-form input:focus,
        .contact .php-email-form textarea:focus {
            border-color: var(--color-primary);
            background: var(--color-light);
            outline: none;
        }

        .contact .php-email-form input::-moz-placeholder,
        .contact .php-email-form textarea::-moz-placeholder {
            color: var(--color-medium-text);
        }

        .contact .php-email-form input::placeholder,
        .contact .php-email-form textarea::placeholder {
            color: var(--color-medium-text);
        }

    .contact .php-email-form input {
        height: 44px;
    }

    .contact .php-email-form textarea {
        padding: 10px 12px;
    }

    .contact .php-email-form button[type=submit] {
        background: var(--color-primary);
        border: 0;
        padding: 10px 24px;
        color: #fff;
        transition: 0.4s;
        border-radius: 4px;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        letter-spacing: 0.02em;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: var(--color-secondary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 142, 43, 0.4);
        }

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: var(--color-light);
    padding: 30px 0;
    color: var(--color-medium-text);
    font-size: 14px;
    position: relative;
    border-top: 3px solid var(--color-primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

    #footer .copyright {
        text-align: center;
        color: var(--color-dark-text);
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: var(--color-primary);
        font-weight: 500;
    }

        #footer .credits a {
            color: var(--color-primary);
            font-weight: 600;
        }

            #footer .credits a:hover {
                color: var(--color-secondary);
            }

/*--------------------------------------------------------------
# Additional Enhancements for HTML
--------------------------------------------------------------*/

/* Logo styling */
.logo-img {
    width: 200px;
    height: 200px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

/* Company badge */
.company-badge {
    font-size: 16px;
    line-height: normal;
    color: #fff;
    background-color: var(--color-primary);
    padding: 8px 20px;
    margin: 20px 0;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(255, 142, 43, 0.3);
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
}

    .company-badge:hover {
        box-shadow: 0 6px 20px rgba(255, 142, 43, 0.5);
        transform: translateY(-2px);
    }

/* Tagline */
.tagline {
    color: var(--color-medium-text);
    text-align: center;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Countdown items */
.countdown-item {
    background: var(--color-light);
    border: 2px solid rgba(255, 142, 43, 0.3);
    transition: all 0.3s ease;
}

    .countdown-item:hover {
        border-color: var(--color-primary);
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(255, 142, 43, 0.3);
    }

/* Spacer */
.spacer {
    height: 30px;
}

/* Social links section */
.social-heading {
    color: var(--color-dark-text);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--color-light);
    border: 2px solid rgba(255, 142, 43, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: var(--color-primary);
        border-color: var(--color-primary);
        color: #fff;
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 8px 20px rgba(255, 142, 43, 0.4);
    }

/* About section enhancements */
.about-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 20px;
    background: var(--color-section-bg);
    border-left: 4px solid var(--color-primary);
    border-radius: 4px;
}

    .about-highlight i {
        color: var(--color-primary);
        font-size: 24px;
    }

    .about-highlight span {
        color: var(--color-dark-text);
        font-weight: 600;
    }

.about-text {
    color: var(--color-medium-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.highlight-text {
    color: var(--color-primary);
    font-weight: 700;
}

.about-cta {
    margin-top: 25px;
}

.btn-contact {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.02em;
}

    .btn-contact:hover {
        background: var(--color-secondary);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 142, 43, 0.4);
        color: #fff;
    }

/* Contact links */
.contact-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .contact-link:hover {
        color: var(--color-secondary);
        text-decoration: underline;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-img {
        width: 100px;
        height: 100px;
    }

    .company-badge {
        font-size: 14px;
        padding: 6px 16px;
    }

    .tagline {
        font-size: 18px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .about .content h2 {
        font-size: 32px;
        line-height: 40px;
    }
}
