/* ===================================
   TEKLO SOL - Custom Styles
   =================================== */

/* ===================================
   1. CSS Variables & Root Styles
   =================================== */
:root {
    /* Brand Colors */
    --primary-green: #059E6B;
    --dark-green: #048059;
    --light-green: #7AD75A;
    --white: #ffffff;
    --black: #000000;
    --dark-bg: #1a1a1a;
    --light-gray: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;

    /* Typography */
    --font-heading: 'Faustina', serif;
    --font-body: 'Inter', sans-serif;
    --font-button: 'Gabarito', sans-serif;
}

/* ===================================
   2. Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

ul,
li {
    font-weight: 600;
    font-size: 18px;
}

/* ===================================
   3. Top Bar
   =================================== */
.top-bar {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
}

.top-bar p {
    margin: 0;
}

/* ===================================
   4. Header
   =================================== */
.header-section {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
}

.logo {
    height: 60px;
    width: auto;
}

.header-contact {
    font-family: var(--font-body);
}

.header-contact small {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 400;
}

.header-contact strong {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

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

/* ===================================
   5. Hero Section & Navigation
   =================================== */
.hero-section {
    background: url(../images/home/banner.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Hero Navigation Bar with Green Gradient */
.hero-nav-wrapper {
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--light-green) 100%);
    padding: 15px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hero-navbar {
    padding: 0;
    position: relative;
}

.hero-navbar .navbar-nav {
    gap: 10px;
}

.hero-navbar .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hero-navbar .nav-link:hover,
.hero-navbar .nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.hero-navbar .navbar-toggler {
    border-color: var(--white);
}

.hero-navbar .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* Base Button Class with Gradient */
.btn {
    font-family: var(--font-button);
    background: linear-gradient(to bottom, #059E6B 0%, #7AD75A 100%);
    color: var(--white);
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(5, 158, 107, 0.4);
    color: var(--white);
}

/* Quote Button in Navigation */
.btn-quote-nav {
    font-family: var(--font-button);
    background: var(--white);
    color: var(--primary-green);
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--white);
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-quote-nav:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Hero Button with Gradient */
.btn-hero {
    font-family: var(--font-button);
    background: linear-gradient(to bottom, #059E6B 0%, #7AD75A 100%);
    color: var(--white);
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(5, 158, 107, 0.4);
    color: var(--white);
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    padding: 135px 0;
}

.hero-content {
    color: var(--white);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===================================
   7. Services Section - What We Do
   =================================== */
.services-bg {
    background-color: #E8F1F0;
}

.service-label {
    letter-spacing: 1.5px;
    font-family: var(--font-body);
}

.service-title-main {
    font-family: var(--font-heading);
    font-size: 42px;
}

.service-subtitle-text {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.service-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.card-title-custom {
    font-family: var(--font-heading);
}
/* ===================================
   7. Utility Classes
   =================================== */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 50px;
}



/* ===================================
   WHY CHOOSE TEKLO SOL (CONTAINER BASED)
   =================================== */

/* Section has NO background */
.why-choose-section {
    background: transparent;
}

.why-choose-section .container{
    position: relative;
}

/* Green rounded container */
.why-choose-wrapper {
    position: absolute;
    top: -35px;
    right: 0;
    bottom: 0;
    left: 0;
    background: #059E6B;
    padding: 90px 40px;
    border-radius: 0 180px 0 180px;
    -webkit-border-radius: 0 180px 0 180px;
    -moz-border-radius: 0 180px 0 180px;
    -ms-border-radius: 0 180px 0 180px;
    -o-border-radius: 0 180px 0 180px;
    height: 400px;
    z-index: -9;
}



/* Cards */
.why-choose-card {
    height: 335px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: all 0.35s ease;
}

/* Dark overlay */


/* Card content */
.why-choose-card-content {
    position: relative;
    z-index: 2;
    padding: 26px;
    text-align: left;
}

.why-choose-card-content p {
    font-family: var(--font-body);
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

/* Hover */
.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* ===================================
   8. Footer Section
   =================================== */
.footer-section {
    background: linear-gradient(to right, #7AD75A 0%, #059E6B 50%, #7AD75A 100%);
    padding: 60px 0;
}

.footer-content-wrapper {
    background-color: rgb(255 255 255 / 62%);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.footer-img {
    max-height: 280px;
    object-fit: cover;
}

.footer-title,
.footer-section-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
}

.footer-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    font-weight: 400;
    font-size: 14px;
    color: #666;
}

.footer-list li a {
    transition: 0.3s ease;
    font-weight: 500;
}

.footer-list li a:hover {
    color: var(--primary-green) !important;
    text-decoration: underline;
}

.footer-list .bi {
    color: var(--primary-green);
    font-size: 14px;
}

/* ===================================
   9. ABOUT US PAGE STYLES
   =================================== */

/* About Hero Section */
.about-hero-section {
    background: url(../images/about/banner.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Services Hero Section */
.services-hero-section {
    background: url(../images/services/banner.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

.title-area {
    padding: 135px 0;
}

.about-hero-content {
    color: var(--white);
}

/* Our Services Section (Services Page) */
.our-services-section {
    padding: 80px 0;
}

.service-label {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--primary-green);
}

.service-section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
}

.service-section-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: #5a5a5a;
    max-width: 600px;
    margin: 0 auto;
}

.service-items-container {
    margin-top: 60px;
}

.service-item {
    display: flex;
    align-items: center;
}


.service-image {
    border-radius: 25px;
    width: 100%;
    z-index: 9;
    position: relative;
}

.service-content-box {
    background: linear-gradient(135deg, #7AD75A 0%, #5ec0a8 100%);
    border-radius: 0 30px 30px 0;
    padding: 40px 35px;
    color: #000;
    margin-left: -25px;
    position: relative;
    z-index: 2;
}

.service-item-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-item-description {
    font-family: var(--font-body);
    font-size: 15px;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    font-family: var(--font-body);
    font-size: 14px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features .bi {
    font-size: 16px;
    flex-shrink: 0;
}

/* Service items with reversed order (image on right) */
.order-lg-1 .service-content-box {
    margin-left: 0;
    margin-right: -25px;
    border-radius: 30px 0 0 30px;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f5f9f8;
    padding: 80px 0;
}

.contact-info-box {
    background: linear-gradient(to bottom, #059E6B 0%, #7AD75A 100%);
    border-radius: 30px;
    padding: 50px 40px;
    color: var(--white);
    min-height: 100%;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-info-description {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.95;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 24px;
}

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

.contact-info-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-info-value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.contact-form-box {
    background: linear-gradient(240deg, #7AD75A 0%, #059E6B 100%);
    border-radius: 30px;
    padding: 50px 40px;
    color: var(--white);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-form-description {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.95;
}

.contact-form-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

.contact-form-input,
.contact-form-textarea {
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    background-color: rgba(255, 255, 255, 0.25);
    border: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    color: var(--white);
    outline: none;
}

.contact-form-textarea {
    resize: vertical;
}

.contact-btn-submit {
    background: #fff;
    color: var(--primary-green);
    border: none;
    border-radius: 12px;
    padding: 12px 40px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn-submit:hover {
    background-color: #f0f0f0;
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Form Message Alerts */
#formMessage {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 14px;
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#formMessage.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

#formMessage.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

#formMessage ul {
    padding-left: 20px;
}

#formMessage li {
    margin-bottom: 5px;
}

/* Global Partner Section */


@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Our Approach Section */

.our-approach-section .container {
    background-color: #33797c24;
    border-radius: 20px;
    padding: 40px 30px;
}



/* Why Choose Us Section */
.about-why-choose {
    background-color: var(--white);
}

.about-benefit-card {
    border: 1px solid #e0e0e0 !important;
    transition: all 0.3s ease;
    background-color: #f9fafb;
}

.about-benefit-card:hover {
    border: 1px solid var(--primary-green) !important;
    box-shadow: 0 8px 20px rgba(5, 158, 107, 0.15);
    transform: translateY(-5px);
}

.about-benefit-card h5 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    font-size: 18px;
}

.about-benefit-card p {
    font-family: var(--font-body);
    font-size: 14px;
}

/* ===================================
   10. OUR VALUES SECTION
   =================================== */

.our-values-section .content-area{
    background: linear-gradient(135deg, #7AD75A 0%, #5ec0a8 100%);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}


/* Value Cards */
.value-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #059E6B 0%, #048059 100%);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(5, 158, 107, 0.3);
}
.value-card .values-icon{
    margin-top: -75px;
}


.value-card-content h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.value-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */


/* Tablet - 991px and below */
@media (max-width: 1600px) {
    .hero-content-wrapper {
        padding: 75px 0;
    }
}
/* Tablet - 991px and below */
@media (max-width: 991px) {
    .header-contact {
        display: none;
    }

    .hero-nav-wrapper{
        background: unset;
        box-shadow: unset;
    }
    .hero-navbar .navbar-toggler {
        position: absolute;
        top: -60px;
        right: 15px;
        transform: translateY(-50%);
        z-index: 1050;
        background: linear-gradient(90deg, var(--primary-green) 0%, var(--light-green) 100%);
    }

    .hero-navbar .navbar-collapse {
        background-color: rgba(5, 158, 107, 0.95);
        padding: 20px;
        margin-top: 15px;
        border-radius: 5px;
        position: absolute;
        top: -30px;
        width: 100%;
        z-index: 999;
    }   

    .btn-quote-nav {
        margin-top: 15px;
        display: block;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .why-choose-card {
        height: 250px;
    }

    .footer-content-wrapper {
        padding: 40px !important;
    }

    .footer-img {
        max-height: 200px;
    }
    


    /* About Page Responsive */
    .title-area {
        padding: 75px 0;
    }

    .about-hero-img {
        max-height: 300px;
    }

    .about-story-img,
    .about-mission-img {
        max-height: 300px;
    }


    .service-section-title {
        font-size: 38px;
    }

    .service-section-desc {
        font-size: 15px;
    }

    .service-content-box {
        padding: 60px 30px 25px;
        border-radius: 0px 0px 20px 20px !important;
        margin: -0px !important;
        margin-top: -50px !important;
        -webkit-border-radius: 0px 0px 20px 20px !important;
        -moz-border-radius: 0px 0px 20px 20px !important;
        -ms-border-radius: 0px 0px 20px 20px !important;
        -o-border-radius: 0px 0px 20px 20px !important;
    }


    .service-item-title {
        font-size: 22px;
    }

    .service-item-description {
        font-size: 14px;
    }

    .service-image {
        border-radius: 20px;
    }

    /* Contact Form Section Responsive (Tablet) */
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 40px 30px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 28px;
    }

    .contact-form-input,
    .contact-form-textarea {
        padding: 10px 14px;
        font-size: 13px;
    }

    .contact-btn-submit {
        padding: 10px 30px;
        font-size: 14px;
    }

    .about-section-title {
        font-size: 32px;
    }
}

/* Mobile - 767px and below */
@media (max-width: 767px) {
    .hero-navbar .navbar-toggler{
        top: -53px;
    }
    .header-contact {
        display: none !important;
    }


    .logo {
        height: 45px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    .btn-hero {
        padding: 12px 30px;
        font-size: 14px;
    }

    .hero-content-wrapper {
        padding: 40px 15px;
    }

    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    .hero-nav-wrapper {
        padding: 10px 0;
    }

    .why-choose-card {
        height: 220px;
    }

    .footer-section {
        padding: 40px 0;
    }

    .footer-content-wrapper {
        padding: 30px !important;
        border-radius: 15px;
    }

    .footer-img {
        max-height: 150px;
        margin-bottom: 20px;
    }

    .footer-title,
    .footer-section-title {
        font-size: 16px;
    }

    .footer-text {
        font-size: 13px;
    }

    .footer-list li {
        font-size: 13px;
    }

    /* Our Approach Section Mobile */
    .our-approach-section .container {
        padding: 40px 20px;
        border-radius: 12px;
    }

    


    /* About Page Responsive */
    .title-area {
        padding: 40px 15px;
    }

    .about-hero-img {
        max-height: 250px;
        margin-top: 20px;
    }

    .about-story-img,
    .about-mission-img {
        max-height: 250px;
    }

    .about-section-title {
        font-size: 28px;
    }

    .about-story-text,
    .about-mission-text {
        font-size: 14px;
    }

    .about-benefit-card {
        p {
            font-size: 13px;
        }
    }

    /* Services Section Responsive (Mobile) */
    .our-services-section {
        padding: 40px 0;
    }

    .service-section-title {
        font-size: 32px;
    }

    .service-section-desc {
        font-size: 14px;
    }

    .service-item {
        margin-bottom: 40px;
    }



    .service-item-title {
        font-size: 20px;
    }

    .service-item-description {
        font-size: 13px;
    }

    .service-features li {
        font-size: 13px;
    }

    .service-image {
        border-radius: 15px;
    }

    /* Contact Form Section Responsive (Mobile) */
    .contact-form-section {
        padding: 40px 0;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 30px 20px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .contact-info-description,
    .contact-form-description {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .contact-info-item {
        gap: 15px;
        margin-bottom: 25px;
    }

    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .contact-info-label {
        font-size: 11px;
    }

    .contact-info-value {
        font-size: 16px;
    }

    .contact-form-label {
        font-size: 13px;
    }

    .contact-form-input,
    .contact-form-textarea {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 8px;
    }

    .contact-btn-submit {
        width: 100%;
        padding: 10px 20px;
        font-size: 14px;
    }
}
