/* ==========================================================
   KOHINOOR BIRD NETS - MAIN STYLESHEET
   ========================================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    --primary-color: #1a8e5f;
    --primary-dark: #0f6b46;
    --primary-light: #e8f5ee;
    --secondary-color: #f7a823;
    --dark-color: #1c2532;
    --text-color: #5a6470;
    --light-color: #f8f9fa;
    --border-color: #e5e8ec;
    --white: #ffffff;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.35s ease;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.container,
.container-fluid {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}

/* ========== GLOBAL RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
}

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

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

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

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

.bg-light-gray {
    background-color: #f6f8fa;
}

/* ========== SECTION HEADER ========== */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.section-header.text-center .section-subtitle {
    padding-left: 0;
    padding: 0 50px;
}

.section-header.text-center .section-subtitle::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.section-header.text-center .section-subtitle::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-description {
    font-size: 16px;
    color: var(--text-color);
    max-width: 650px;
    margin: 0 auto;
}

/* ========== CUSTOM BUTTONS ========== */
.btn-primary-custom {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary-color);
    display: inline-block;
    transition: var(--transition);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 142, 95, 0.3);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--white);
    display: inline-block;
    transition: var(--transition);
}

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

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-info {
    margin-right: 25px;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-info i {
    color: var(--primary-color);
    margin-right: 6px;
}

.top-bar-info a {
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-info a:hover {
    color: var(--primary-color);
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.85);
    margin-left: 12px;
    font-size: 14px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-block;
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========== HEADER / NAVBAR ========== */
.header-section {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1030;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.brand-logo {
    max-height: 50px;
    width: auto;
}

.brand-text {
    font-size: 22px;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.1;
}

.brand-text span {
    color: var(--primary-color);
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 16px !important;
    position: relative;
    transition: var(--transition);
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 25px;
}

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

.btn-header-call {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-header-call:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 142, 95, 0.3);
}

.btn-header-call::after {
    display: none !important;
}

.navbar-toggler {
    border: 1px solid var(--primary-color);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(26, 142, 95, 0.2);
}

/* ========== HERO CAROUSEL ========== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-img {
    height: 650px;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(28, 37, 50, 0.85) 0%, rgba(28, 37, 50, 0.5) 60%, rgba(28, 37, 50, 0.3) 100%);
}

.carousel-caption {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0;
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(26, 142, 95, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    margin: 0 6px;
    opacity: 1;
    transition: var(--transition);
}

.carousel-indicators .active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: var(--transition);
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 0.8;
}

/* ========== MARQUEE SECTION ========== */
.marquee-section {
    background: var(--primary-color);
    padding: 18px 0;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.marquee-track span i {
    color: var(--secondary-color);
    font-size: 18px;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
    padding-bottom: 60px;
    padding-right: 60px;
}

.about-img-main {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.about-img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: 12px;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-experience-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-experience-badge .years {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.about-text {
    color: var(--text-color);
    margin-bottom: 18px;
    font-size: 15.5px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

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

.about-feature span {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 15px;
}

/* ========== SERVICE SECTION ========== */
.service-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-icon {
    position: absolute;
    bottom: 0px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    transform: rotate(360deg);
}

.service-content {
    padding: 35px 25px 25px;
}

.service-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.service-description {
    color: var(--text-color);
    font-size: 14.5px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ========== COUNTER SECTION ========== */
.counter-section {
    background: url('') center/cover no-repeat fixed;
    padding: 80px 0;
    position: relative;
}

.counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 107, 70, 0.92), rgba(28, 37, 50, 0.92));
}

.counter-section .container {
    position: relative;
    z-index: 2;
}

.counter-box {
    text-align: center;
    color: var(--white);
    padding: 20px 15px;
}

.counter-icon {
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 30px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.counter-box:hover .counter-icon {
    background: var(--secondary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.counter-number {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1;
}

.counter-text {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== WHY CHOOSE US ========== */
.why-choose-section {
    background: var(--white);
}

.why-choose-list {
    margin-top: 30px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    background: var(--white);
}

.why-choose-item:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.why-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
}

.why-choose-item:hover .why-icon {
    background: var(--secondary-color);
    transform: rotate(-8deg);
}

.why-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--dark-color);
}

.why-content p {
    color: var(--text-color);
    font-size: 14.5px;
    margin: 0;
    line-height: 1.6;
}

.why-choose-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-choose-image img {
    width: 100%;
    display: block;
}

.why-choose-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--white);
    padding: 18px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
}

.why-choose-badge i {
    font-size: 38px;
    color: var(--primary-color);
}

.why-choose-badge h5 {
    margin: 0;
    font-size: 18px;
    color: var(--dark-color);
}

.why-choose-badge span {
    font-size: 13px;
    color: var(--text-color);
}

/* ========== BRAND CAROUSEL ========== */
.brand-section {
    background: var(--white);
    padding: 70px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.brand-carousel {
    overflow: hidden;
    margin-top: 30px;
}

.brand-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: brandScroll 25s linear infinite;
}

.brand-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    transition: var(--transition);
}

.brand-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes brandScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ========== GALLERY SECTION ========== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 142, 95, 0.85), rgba(15, 107, 70, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 36px;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background: var(--white);
}

.faq-image {
    margin-top: 30px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-image img {
    width: 100%;
    display: block;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: var(--white);
    color: var(--dark-color);
    font-weight: 600;
    font-size: 16px;
    padding: 18px 22px;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a8e5f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: var(--text-color);
    font-size: 14.5px;
    padding: 0 22px 20px;
    line-height: 1.7;
}

/* ========== CONTACT SECTION ========== */
.contact-info-box {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-info-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: var(--transition);
}

.contact-info-box:hover .contact-info-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(360deg);
}

.contact-info-box h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-info-box p {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-info-box a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    word-break: break-word;
}

.contact-info-box a:hover {
    color: var(--primary-dark);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 22px;
    color: var(--dark-color);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: var(--transition);
    background: #f9fafb;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 142, 95, 0.1);
    background: var(--white);
}

.contact-image-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

/* ========== MAP SECTION ========== */
.map-section {
    line-height: 0;
}

.map-section iframe {
    display: block;
    filter: grayscale(20%);
}

/* ========== FOOTER ========== */
.footer-section {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 70px;
}

.footer-widget {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--white);
}

.footer-logo img {
    max-height: 45px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.footer-logo span span {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    display: block;
}

.footer-widget p {
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-title {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 12px;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14.5px;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
}

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

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-bottom i {
    color: #e74c3c;
}

/* ========== FLOATING ICONS (LEFT SIDE) ========== */
.floating-icons {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.float-icon.whatsapp {
    background: #25d366;
}

.float-icon.call {
    background: #1a8e5f;
}

.float-icon.email {
    background: #f7a823;
}

.float-icon.facebook {
    background: #1877f2;
}

.float-icon:hover {
    color: var(--white);
    transform: scale(1.12);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.float-icon.whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #25d366;
    z-index: -1;
    animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ========== SCROLL TO TOP ========== */
#scrollTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

#scrollTop.active {
    opacity: 1;
    visibility: visible;
}

#scrollTop:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */

/* Large Devices (Desktops) */
@media (max-width: 1199px) {
    .section-title {
        font-size: 32px;
    }

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

    .hero-img {
        height: 580px;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

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

    .section-header {
        margin-bottom: 35px;
    }

    .navbar-collapse {
        background: var(--white);
        border-radius: 8px;
        margin-top: 12px;
        padding: 18px;
        box-shadow: var(--shadow-md);
        max-height: calc(100vh - 150px);
        overflow-y: auto;
    }

    .navbar-nav .nav-link {
        padding: 8px 10px !important;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .btn-header-call {
        display: inline-block;
        margin-top: 10px;
    }

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

    .hero-img {
        height: 520px;
    }

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

    .about-image-wrapper {
        padding-bottom: 0;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .about-img-small {
        position: relative;
        width: 100%;
        margin-top: 15px;
        border: none;
    }

    .about-experience-badge {
        top: 15px;
        left: 15px;
        padding: 15px 20px;
    }

    .about-experience-badge .years {
        font-size: 28px;
    }

    .about-experience-badge .text {
        font-size: 12px;
    }

    .counter-number {
        font-size: 36px;
    }

    .why-choose-image {
        margin-top: 30px;
    }

    .contact-image-wrapper {
        display: none;
    }
}

/* Small Devices (Mobile) */
@media (max-width: 767px) {
    .section-padding {
        padding: 55px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

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

    .top-bar-info {
        margin-right: 0;
    }

    .brand-text {
        font-size: 18px;
    }

    .brand-text span {
        font-size: 12px;
    }

    .brand-logo {
        max-height: 42px;
    }

    .hero-img {
        height: 480px;
    }

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

    .hero-subtitle {
        font-size: 11px;
        padding: 6px 14px;
    }

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

    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom {
        padding: 10px 22px;
        font-size: 14px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .marquee-track {
        gap: 30px;
    }

    .marquee-track span {
        font-size: 14px;
    }

    .about-text {
        font-size: 14.5px;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 30px 20px 22px;
    }

    .service-title {
        font-size: 19px;
    }

    .counter-section {
        padding: 60px 0;
    }

    .counter-number {
        font-size: 32px;
    }

    .counter-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

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

    .why-choose-item {
        padding: 14px;
        gap: 14px;
    }

    .why-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .why-content h4 {
        font-size: 16px;
    }

    .why-content p {
        font-size: 13.5px;
    }

    .brand-item {
        width: 140px;
        height: 80px;
    }

    .gallery-item img {
        height: 170px;
    }

    .accordion-button {
        font-size: 14.5px;
        padding: 14px 18px;
    }

    .accordion-body {
        font-size: 13.5px;
        padding: 0 18px 16px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-form-wrapper h3 {
        font-size: 20px;
    }

    .footer-section {
        padding-top: 50px;
    }

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

    .footer-bottom p {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .floating-icons {
        right: 18px;
        gap: 10px;
    }

    .float-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    #scrollTop {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Extra Small Devices */
@media (max-width: 575px) {
    .section-header.text-center .section-subtitle {
        padding: 0 38px;
    }

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

    .hero-img {
        height: 440px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom {
        padding: 9px 18px;
        font-size: 13px;
    }

    .gallery-item img {
        height: 140px;
    }
}