@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    font-size: 13px;
}

li {
    font-size: 13px;
}

p {
    font-size: 13px;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Buttons */

.btn {
    font-weight: 500;
    font-size: 13px;
    border-radius: 20px;
    padding: 8px 16px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: rgb(0, 126, 196);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: rgb(0, 86, 106);
    border: 1px solid rgb(0, 86, 106);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 1);
}

/* Header */

header {
    position: relative;
    z-index: 1000;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

header.is-fixed .navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-top {
    background-color: rgb(0, 126, 196);
    color: white;
}

.custom-toggler {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #007ec4 0%, #00566a 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
}

.custom-toggler:focus,
.custom-toggler:focus-visible,
.custom-toggler:active {
    outline: none;
    box-shadow: none;
}

.custom-toggler .toggler-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 22px;
}

.custom-toggler .toggler-line {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.custom-toggler[aria-expanded="true"] .toggler-line {
    background: #007ec4;
    box-shadow: none;
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-item {
    font-weight: 500;
    text-transform: uppercase;
}

.nav-link:hover {
    color: rgb(0, 126, 196);
}

/* Hero Section */

.hero-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    background-image: url('../img/hero/hero_image.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 126, 196, 0.85) 0%, rgba(0, 86, 106, 0.9) 100%);
    z-index: 1;
}

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

.hero-content {
    color: white;
}

.hero-title {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    max-width: 90%;
}

/* Section Econ Cards */

.section-econ {
    padding: 50px 0;
}

.section-econ .row {
    margin: 0;
}

.section-econ .col-lg-4,
.section-econ .col-md-6 {
    padding: 0;
}

.econ-card {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    margin: 0;
}

.econ-card:first-child {
    border-left: 1px solid #e0e0e0;
}

.col-lg-4:nth-child(2) .econ-card,
.col-md-6:nth-child(2) .econ-card {
    border-left: none !important;
    border-right: none !important;
}

.econ-card:last-child {
    border-right: 1px solid #e0e0e0;
}

.econ-card:hover {
    background-color: rgb(0, 126, 196);
    transition: background-color 0.3s ease;
}

.econ-card:hover .econ-title,
.econ-card:hover .econ-description {
    color: white;
}

.econ-card:hover .econ-icon-box {
    background-color: white;
}

.econ-card:hover .econ-icon-box i {
    color: rgb(0, 126, 196);
}

.econ-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgb(0, 126, 196);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.econ-icon-box i {
    font-size: 24px;
    color: white;
}

.econ-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.econ-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* About Section */

.about-section {
    padding: 50px 0;
}

.about-content {
    padding-right: 30px;
}

.section-title {
    font-size: 30px;
    font-weight: 600;
    color: #000;
}

.section-subtitle {
    display: inline-block;
    background-color:  color-mix(in srgb, #007EC4, transparent 90%);
    color: rgb(0, 126, 196);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-paragraph {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

.about-image-grid {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-grid-top {
    width: 100%;
    height: clamp(220px, 32vw, 320px);
}

.image-grid-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-grid-top img:hover {
    transform: scale(1.02);
}

.image-grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    grid-auto-rows: 1fr;
}

.image-grid-bottom img {
    width: 100%;
    height: clamp(150px, 18vw, 220px);
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-grid-bottom img:hover {
    transform: scale(1.02);
}

/* Products Section */

.products-section {
    padding: 80px 0;
}

.products-header {
    max-width: 800px;
    margin: 0 auto;
}

.gallery-item {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-card:hover {
    box-shadow: 0 15px 40px rgba(0, 126, 196, 0.2);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 30px 20px 20px;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 126, 196, 0.95) 0%, rgba(0, 87, 106, 0) 100%);
}

.gallery-content {
    color: white;
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.gallery-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 400;
}

/* Quote Section */

.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 126, 196, 0.05) 0%, rgba(0, 86, 106, 0.08) 100%);
}

.quote-copy .section-title {
    margin-bottom: 1rem;
}

.quote-copy .section-paragraph {
    color: #555;
}

.quote-list li {
    font-size: 13px;
    color: #333;
}

.quote-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 126, 196, 0.08);
}

.quote-card .form-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.quote-card .form-control,
.quote-card .form-select {
    font-size: 13px;
    padding: 10px 12px;
    border-color: #e5e5e5;
    border-radius: 10px;
}

.quote-card .form-control:focus,
.quote-card .form-select:focus {
    border-color: rgb(0, 126, 196);
    box-shadow: 0 0 0 0.1rem rgba(0, 126, 196, 0.15);
}

.quote-card textarea {
    resize: vertical;
}

.quote-contact .contact-pill {
    background: #fff;
    border: 1px solid rgba(0, 126, 196, 0.15);
    color: #00334d;
    padding: 10px 14px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.quote-card .btn-lg {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
}

/* Footer */

.footer {
    background: linear-gradient(180deg, #0a2c41 0%, #061b28 100%);
    color: #e8f4fb;
    padding: 50px 0 30px;
    margin-top: 0;
}

.footer-top {
    align-items: flex-start;
}

.footer a {
    color: #e8f4fb;
    font-size: 13px;
}

.footer a:hover {
    color: #60c0ff;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-brand p {
    color: #c9d7df;
    font-size: 13px;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #e8f4fb;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    color: #007ec4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #c9d7df;
}

.footer-bottom a {
    color: #c9d7df;
    font-size: 13px;
}

.footer-bottom a:hover {
    color: #60c0ff;
}

/* Counter Section */

/* Contact Modal */
.contact-modal {
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.contact-modal .modal-header {
    padding: 1.5rem 1.5rem 0.5rem;
}

.contact-modal .modal-body {
    padding: 1rem 1.5rem 1.25rem;
}

.contact-modal .modal-footer {
    padding: 0.5rem 1.5rem 1.5rem;
    gap: 0.5rem;
}

.contact-modal .modal-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 126, 196, 0.1);
    color: rgb(0, 126, 196);
}

.contact-modal .info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(0, 126, 196, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.contact-modal .info-card.gradient-card {
    background: linear-gradient(135deg, rgba(0, 126, 196, 0.08), rgba(0, 86, 106, 0.05));
    border: 1px solid rgba(0, 126, 196, 0.15);
}

.contact-modal .info-card.border-card {
    background: #ffffff;
}

.contact-modal .info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.contact-modal .info-icon.primary {
    background: #e8f4fb;
    color: #007ec4;
}

.contact-modal .info-icon.dark {
    background: #0a2c41;
    color: #ffffff;
}

.contact-modal .info-label {
    margin-bottom: 2px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4f5d6b;
}

.contact-modal .info-value {
    font-size: 15px;
    font-weight: 600;
    color: #0b2c3f;
}

.contact-modal .info-value i {
    font-size: 0.95rem;
}

.contact-modal .info-value:hover {
    color: #00586a;
}

.contact-modal .info-hint {
    margin-bottom: 0;
    margin-top: 2px;
    font-size: 12px;
    color: #6c7a86;
}

.contact-modal .info-chip {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: #0b2c41;
    color: #ffffff;
    white-space: nowrap;
}

.contact-modal .info-chip.subtle {
    background: #e9eef2;
    color: #0b2c3f;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-modal .btn-outline-secondary {
    border-color: rgba(0, 0, 0, 0.1);
}

.contact-modal .btn-outline-secondary:hover {
    border-color: #0b2c41;
    color: #0b2c41;
    background: rgba(11, 44, 65, 0.05);
}

.counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 126, 196, 0.05) 0%, rgba(0, 86, 106, 0.08) 100%);
}

.counter-header {
    max-width: 800px;
    margin: 0 auto;
}

.counter-description {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-top: 1rem;
    margin-bottom: 0;
}

.counter-card {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgb(0, 126, 196);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.counter-card:hover::before {
    transform: scaleX(1);
}

.counter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 126, 196, 0.15);
}

.counter-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgb(0, 126, 196);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.counter-card:hover .counter-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 126, 196, 0.3);
}

.counter-icon-box i {
    font-size: 24px;
    color: white;
}

.counter-number {
    font-size: 20px;
    font-weight: 700;
    color: rgb(0, 126, 196);
    margin-bottom: 10px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.counter-card:hover .counter-number {
    color: rgb(0, 86, 106);
}

.counter-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Offcanvas Menu */
.mobile-offcanvas {
    background: radial-gradient(circle at 20% 20%, rgba(0, 126, 196, 0.08), transparent 35%),
        radial-gradient(circle at 80% 10%, rgba(0, 86, 106, 0.08), transparent 30%),
        #ffffff;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
    border-left: 1px solid rgba(0, 126, 196, 0.08);
}

.mobile-offcanvas .offcanvas-header {
    padding: 1rem 1.25rem;
}

.mobile-offcanvas .navbar-brand img {
    filter: drop-shadow(0 6px 18px rgba(0, 126, 196, 0.15));
}

.mobile-offcanvas .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0b2c3f;
    border: 1px solid rgba(0, 126, 196, 0.12);
    background-color: rgba(255, 255, 255, 0.65);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.mobile-offcanvas .nav-link i {
    color: rgb(0, 126, 196);
    font-size: 1.05rem;
}

.mobile-offcanvas .nav-link:hover,
.mobile-offcanvas .nav-link:focus {
    background: linear-gradient(135deg, rgba(0, 126, 196, 0.12), rgba(0, 86, 106, 0.05));
    border-color: rgba(0, 126, 196, 0.35);
    color: #00334d;
    transform: translateY(-1px);
}

.mobile-offcanvas .nav-link:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(0, 126, 196, 0.12);
}

.mobile-offcanvas .offcanvas-body {
    padding: 1.25rem 1.25rem 1.5rem;
    background: linear-gradient(180deg, rgba(0, 126, 196, 0.03) 0%, rgba(0, 86, 106, 0.02) 100%);
}

.mobile-offcanvas .contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(0, 126, 196, 0.08);
    color: #00334d;
}

.mobile-offcanvas .btn-close {
    filter: invert(0.4);
}

.scroll-top-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: none;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 1050;
}

.scroll-top-btn:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* Responsive */

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .contact-modal {
        border-radius: 14px;
    }

    .contact-modal .modal-dialog {
        margin: 1rem;
    }

    .contact-modal .modal-header,
    .contact-modal .modal-body,
    .contact-modal .modal-footer {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .contact-modal .info-card {
        padding: 16px;
    }

    .contact-modal .info-chip {
        display: none;
    }

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

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

    .mobile-offcanvas {
        width: 80%;
        max-width: 320px;
        border-top-left-radius: 18px;
        border-bottom-left-radius: 18px;
    }

    .mobile-offcanvas .offcanvas-header {
        border-bottom: 1px solid rgba(0, 126, 196, 0.08);
        padding-bottom: 0.75rem;
    }

    .mobile-offcanvas .nav-link {
        font-weight: 600;
        padding: 0.7rem 0.8rem;
        border-radius: 12px;
    }

    .mobile-offcanvas .nav-link:hover {
        background-color: rgba(0, 126, 196, 0.1);
        color: #00486b;
    }

    .mobile-offcanvas .btn-close {
        filter: invert(0.3);
    }

    body,
    a,
    li,
    p {
        font-size: 12px;
    }

    .header-top .list-inline {
        justify-content: center !important;
        gap: 6px;
    }

    .navbar-brand img {
        width: 120px;
        height: auto;
    }

    .custom-toggler {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .custom-toggler .toggler-box {
        width: 20px;
        gap: 5px;
    }

    .custom-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .custom-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .navbar-nav {
        text-align: center;
        gap: 0.35rem !important;
    }

    .hero-section {
        height: 420px;
        padding: 40px 0;
        background-attachment: scroll;
    }

    .hero-content {
        text-align: center;
    }

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

    .hero-description {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-section,
    .products-section,
    .counter-section,
    .quote-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 11px;
        padding: 0.35rem 0.75rem;
    }

    .section-paragraph {
        font-size: 12px;
        line-height: 1.6;
    }

    .about-content {
        padding-right: 0;
    }

    .about-image-grid {
        padding-left: 0;
        gap: 10px;
    }

    .image-grid-bottom {
        grid-template-columns: 1fr;
    }

    .econ-card {
        padding: 24px 16px;
    }

    .counter-card {
        padding: 28px 16px;
        margin-bottom: 20px;
    }

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

    .counter-label {
        font-size: 12px;
    }

    .products-section .row.g-4 > .col-lg-4,
    .products-section .row.g-4 > .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .counter-section .row.g-4 > .col-lg-3,
    .counter-section .row.g-4 > .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gallery-image {
        height: 200px;
    }

    .gallery-title {
        font-size: 14px;
    }

    .gallery-subtitle {
        font-size: 11px;
    }

    .quote-card {
        padding: 22px;
    }

    .quote-contact {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .quote-contact .contact-pill {
        width: 100%;
        justify-content: center;
    }

    .footer {
        padding: 40px 0 24px;
    }

    .footer-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    body,
    a,
    li,
    p {
        font-size: 13px;
    }

    .hero-section {
        height: 460px;
        padding: 50px 0;
        background-attachment: scroll;
    }

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

    .hero-description {
        font-size: 15px;
        max-width: 100%;
    }

    .about-section,
    .products-section,
    .counter-section,
    .quote-section {
        padding: 60px 0;
    }

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

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

    .section-paragraph {
        font-size: 13px;
    }

    .products-section .row.g-4 > .col-lg-4,
    .products-section .row.g-4 > .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gallery-image {
        height: 230px;
    }

    .counter-card {
        margin-bottom: 20px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    body,
    a,
    li,
    p {
        font-size: 13px;
    }

    .hero-section {
        height: 500px;
        padding: 60px 0;
        background-attachment: scroll;
    }

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

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

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

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

    .gallery-image {
        height: 260px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-section {
        height: 520px;
    }

    .gallery-image {
        height: 280px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .hero-section {
        height: 520px;
    }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .hero-section {
        height: 540px;
    }
}
