/* ===================================================
   KEY-2 ENVIRONMENTAL - FRONTEND STYLES
   Color Palette: Dark greens, professional environmental theme
   =================================================== */

:root {
    --primary: #45BF30;
    --primary-dark: #3AA828;
    --primary-light: #5BCC48;
    --primary-accent: #45BF30;
    --primary-soft: #8AD97D;
    --primary-pale: #E0F5DC;
    --secondary: #081C15;
    --text-dark: #1A1A2E;
    --text-body: #4A4A68;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --white: #ffffff;
    --off-white: #F8FAF9;
    --border: #E5E7EB;
    --overlay-dark: rgba(8, 28, 21, 0.85);
    --overlay-medium: rgba(27, 67, 50, 0.92);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-green: 0 4px 20px rgba(45, 106, 79, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container-fluid {
    padding: 0 80px;
}

@media (max-width: 1200px) {
    .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 0 30px;
    }
}

@media (max-width: 425px) {
    .container-fluid {
        padding: 0 15px;
    }
}

@media (max-width: 375px) {
    .container-fluid {
        padding: 0 10px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ===== NAVBAR ===== */
.custom-navbar {
    border-top: 4px solid var(--primary-accent);
    z-index: 999;
    background: #1a1a1a;
    padding: 14px 0;
    position: fixed;
    width: 100%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.logo img {
    width: 100%;
    height: 100%;
    max-height: 94px;
    transition: var(--transition);
}

/* Center Menu */
.nav-center a {
    margin: 0 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.2px;
    position: relative;
    transition: var(--transition);
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-center a:hover::after,
.nav-center a.active::after {
    width: 100%;
}

.nav-center a:hover,
.nav-center a.active {
    color: var(--white);
}

/* Phone Section */
.navbar-phone {
    text-align: right;
}

.call-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.call-number {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: -0.3px;
}

.call-number a,
.call-text a,
.info-text a,
.info-text span a,
.service-phone a,
.tj-about-phone-box a,
.footer-phone a {
    color: inherit !important;
    text-decoration: none;
}

/* Quote Button */
.quote-btn {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.quote-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45, 106, 79, 0.35);
}

/* ===== MOBILE SIDEBAR ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    padding: 24px;
}

.mobile-nav.active {
    left: 0;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1040;
    backdrop-filter: blur(4px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 8px;
}

.mobile-nav ul li a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-nav ul li a:hover {
    background: var(--primary-pale);
    color: var(--primary-dark);
}

.mobile-nav ul li a .btn {
    text-decoration: none;
    font-weight: 600;
    color: var(--white) !important;
    font-size: 15px;
}

/* Responsive Nav */
@media(max-width:991px) {
    .desktop-menu {
        display: none !important;
    }
}

@media(min-width:992px) {
    .mobile-toggle {
        display: none;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-image: url('../frontend_image/herobanner1.png');
    background-repeat: no-repeat;
    background-position: center 97px;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 200px 13px 80px;
    min-height: 85vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 28, 21, 0.5) 0%, rgba(27, 67, 50, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    animation: fadeInUp 1s ease;
}

.sub-heading {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 16px;
    color: var(--primary-soft);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.description {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.7;
}

.call-wrapper {
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-md);
    padding: 8px 20px 8px 8px;
    color: var(--white) !important;
    text-decoration: none;
    transition: var(--transition);
}

.call-wrapper:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.call-icon-box {
    background: var(--primary-accent);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    box-shadow: 0 4px 15px rgba(82, 183, 136, 0.4);
}

.call-icon-box i {
    font-size: 20px;
    color: var(--white);
}

.call-texts {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
}

.btn-success {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    border: none !important;
}

/* Hero Responsive */
@media (max-width: 991px) {
    .custom-navbar {
        padding: 10px 0;
    }

    .custom-navbar .container-fluid {
        padding: 0 15px;
    }

    .logo {
        max-width: 180px;
    }

    .logo img {
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }

    .hero-section {
        text-align: center;
        justify-content: center;
        padding: 150px 20px 50px;
        min-height: auto;
    }

    .hero-content {
        margin: auto;
    }
}

@media (max-width: 576px) {
    .navbar-phone .call-text {
        font-size: 10px;
    }

    .navbar-phone .call-number {
        font-weight: 700;
        font-size: 0.95rem;
    }

    .logo {
        max-width: 120px;
    }

    .logo img {
        width: 100%;
        height: 100%;
        max-height: 45px;
    }

    .custom-navbar {
        padding: 8px 0;
    }

    .call-icon-box {
        width: 40px;
        height: 40px;
    }

    .call-texts {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .hero-section {
        padding: 120px 15px 30px;
    }

    .main-heading {
        font-size: 1.5rem;
    }

    .sub-heading {
        font-size: 0.9rem;
    }

    .description {
        font-size: 0.9rem;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 70px 0 0;
}

.about-img-wrapper {
    position: relative;
    display: inline-block;
}

.about-img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 30px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-green);
    animation: pulse 3s ease-in-out infinite;
}

.experience-badge h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
}

.experience-badge p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
}

.about-subtitle {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-size: 1rem;
    text-transform: uppercase;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.about-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.read-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-green);
}

.read-btn:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45, 106, 79, 0.35);
    color: var(--white);
}

/* About Responsive */
@media (max-width: 992px) {
    .experience-badge {
        right: 20px;
        bottom: 20px;
        padding: 20px 25px;
    }

    .experience-badge h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

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

    .experience-badge {
        position: absolute;
        margin-top: 20px;
        display: inline-block;
        right: -30px;
    }

    .about-img {
        max-height: 600px;
    }
}

/* ===== COUNTER SECTION ===== */
.counter-section {
    position: relative;
    background: url('../frontend_image/Rectangle.png') no-repeat center center/cover;
    padding: 80px 0;
    color: var(--white);
    margin: 50px 0 0;
}

.counter-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 28, 21, 0.92) 0%, rgba(27, 67, 50, 0.88) 100%);
}

.counter-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.counter-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.95rem;
    margin-bottom: 12px;
    opacity: 0.9;
    font-weight: 600;
    color: var(--primary-soft);
}

.counter-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -0.3px;
}

.counter-box {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.counter-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-accent);
    line-height: 1.1;
}

.counter-text {
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-top: 10px;
    opacity: 0.85;
    font-weight: 500;
}

/* Vertical Divider */
.counter-box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.15);
}

/* Counter Responsive */
@media (max-width: 992px) {
    .counter-title {
        font-size: 2rem;
    }

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

@media (max-width: 767px) {
    .counter-section {
        padding: 50px 0;
    }

    .counter-box {
        padding: 20px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .counter-box:last-child {
        border-bottom: none;
    }

    .counter-box:not(:last-child)::after {
        display: none;
    }

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

    .counter-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .counter-section {
        padding: 40px 0;
        margin: 0;
    }

    .counter-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .experience-badge {
        right: -20px;
    }
}

/* ===== WE SOLVE SECTION ===== */
.we-solve-section {
    padding: 70px 0;
    background: var(--off-white);
}

.we-solve-content {
    max-width: 850px;
    margin: 0 auto;
}

.we-solve-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 12px;
}

.we-solve-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.we-solve-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .we-solve-section {
        padding: 50px 0;
    }

    .we-solve-title {
        font-size: 1.6rem;
    }

    .we-solve-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .we-solve-title {
        font-size: 1.3rem;
    }
}

/* ===== SECTION TITLES ===== */
.section-subtitle {
    color: var(--primary) !important;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-weight: 800;
    font-size: 2.6rem;
    margin-bottom: 25px;
    color: var(--text-dark) !important;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

/* ===== SERVICES GRID (Home Page) ===== */
.services-grid-section {
    padding: 70px 0;
}

.services-nav {
    gap: 8px;
    align-items: center;
}

.services-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.services-nav-btn:hover,
.services-nav-btn.active {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    color: var(--white);
}

.service-grid-card {
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.service-grid-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 14px;
}

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

.service-grid-card:hover .service-grid-img img {
    transform: scale(1.05);
}

.service-grid-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    padding: 0 5px;
}

.btn-view-more {
    display: inline-block;
    padding: 12px 36px;
    background: var(--primary-accent);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-view-more:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

@media (max-width: 768px) {
    .services-grid-section {
        padding: 50px 0;
    }

    .service-grid-title {
        font-size: 0.85rem;
    }

    .btn-view-more {
        padding: 10px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .service-grid-img {
        border-radius: var(--radius-sm);
    }

    .service-grid-title {
        font-size: 0.8rem;
    }
}

/* ===== TEAM MEMBERS ===== */
.team-section {
    padding: 0;
    background: var(--off-white);
}

.team-member-card {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
}

.team-member-left {
    flex: 0 0 220px;
}

.team-member-right {
    flex: 1;
    min-width: 0;
}

.team-member-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-accent);
    box-shadow: 0 0 0 5px rgba(82, 183, 136, 0.12);
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.team-member-position {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.team-member-desc {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .team-member-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
        gap: 25px;
    }

    .team-member-left {
        flex: 0 0 auto;
    }

    .team-member-img {
        width: 170px;
        height: 170px;
    }

    .team-member-name {
        font-size: 1.2rem;
    }
}

/* ===== WHO CAN WE HELP ===== */
.who-help-section {
    padding: 70px 0;
    background: var(--off-white);
}

.who-help-content {
    max-width: 850px;
    margin: 0 auto;
}

.who-help-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 14px;
}

.who-help-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
}

.who-help-card {
    text-align: center;
    padding: 20px 24px;
    border: 2px solid #d4944c;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #d4944c;
    text-transform: uppercase;
    transition: var(--transition);
    background: var(--white);
}

.who-help-card:hover {
    background: #d4944c;
    color: var(--white);
}

@media (max-width: 768px) {
    .who-help-section {
        padding: 50px 0;
    }

    .who-help-card {
        padding: 16px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .who-help-card {
        font-size: 0.78rem;
        letter-spacing: 1px;
    }
}

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

.faq-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.faq-list {
    max-width: 900px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary-accent);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-left: 38px;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 12px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-heading {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.9rem;
    }
}

/* ===== SERVICE CARDS (Home Page) ===== */
.service-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    background: var(--white);
    transition: var(--transition);
    height: 100%;
}

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

.service-img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
}

.service-icon img {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.service-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.service-text {
    font-size: 1rem;
    color: var(--text-light);
    margin: 15px 0;
    line-height: 1.7;
}

.read-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    color: var(--white) !important;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.section-subtitles {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-soft) !important;
}

.section-titles {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--white) !important;
    letter-spacing: -0.3px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.check-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    font-weight: 700;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-text {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* Why Choose Responsive */
@media (max-width: 992px) {
    .why-section {
        padding: 50px 30px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .why-section {
        padding: 30px 20px;
        border-radius: var(--radius-lg);
    }

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

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .feature-item {
        margin-bottom: 20px;
    }

    .section-titles {
        font-size: 1.3rem;
    }

    .section-subtitles {
        font-size: 0.85rem;
    }
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    padding: 70px 0 80px 0;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 35px;
    min-height: 262px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-soft);
}

.quote-icon i {
    font-size: 36px;
    color: var(--primary-accent);
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
}

.author {
    margin-top: 20px;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
}

.author::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 3px;
    background: var(--primary-accent);
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 2px;
}

/* Carousel Indicators */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db;
    transition: var(--transition);
}

.carousel-indicators .active {
    background-color: var(--primary);
    width: 10px;
    border-radius: 50%;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: -2rem;
    margin-left: 15%;
}

/* Testimonial Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .about-img {
        max-height: 600px;
    }

    .section-titles {
        font-size: 1.3rem;
        font-weight: 800;
        margin-bottom: 25px;
        color: var(--white) !important;
    }
}

/* ===== FOOTER ===== */
.main-footer {
    background: #1a1a1a;
    padding: 50px 0;
    color: var(--white);
}

.footer-logo img {
    max-width: 180px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-phone {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-phone i {
    margin-right: 6px;
    color: var(--primary-accent);
}

.footer-phone-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-phone-icon {
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-phone-icon i {
    color: var(--white);
    font-size: 16px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    margin-left: 10px;
    transition: var(--transition);
}

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

/* Footer Service Areas */
.footer-service-areas {
    padding-top: 18px;
    text-align: start;
    margin: 0 10px;
}

.footer-areas-title {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 8px;
}

.footer-area-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.footer-area-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 14px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-links,
    .footer-phone,
    .social-icons {
        text-align: center;
        margin-bottom: 15px;
    }

    .footer-phone-wrapper {
        justify-content: center;
    }

    .social-icons a {
        margin: 0 6px;
    }

    .footer-service-areas {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ===== ABOUT US PAGE ===== */
.tj-about-hero-wrapper {
    position: relative;
    background: url('../frontend_image/Rectangle%20485.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    padding: 230px 13px 110px;
}

.tj-about-hero-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 28, 21, 0.9) 0%, rgba(27, 67, 50, 0.85) 100%);
}

.tj-about-hero-content {
    position: relative;
    z-index: 2;
}

.tj-about-hero-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.tj-about-hero-breadcrumb {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.tj-about-hero-breadcrumb span {
    margin: 0 12px;
    opacity: 0.5;
}

/* About Page Responsive */
@media (max-width: 992px) {
    .tj-about-hero-wrapper {
        padding: 200px 13px 90px;
    }

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

    .tj-about-hero-breadcrumb {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .tj-about-hero-wrapper {
        padding: 140px 13px 50px;
    }

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

    .tj-about-hero-breadcrumb {
        font-size: 13px;
    }
}

/* ===== ABOUT US PAGE - CONTENT SECTION ===== */
.tj-about-section {
    padding: 60px 0 0;
}

.tj-about-section .col-lg-5 {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.tj-about-description {
    max-height: 320px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

.tj-about-description.expanded {
    max-height: none;
}

.tj-about-description:not(.expanded)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--white));
}

.tj-read-more-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition);
}

.tj-read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.tj-about-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: var(--transition);
}

.tj-about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
}

.tj-about-card h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
}

.tj-about-image-box img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.tj-about-label {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

.tj-about-title {
    font-size: 36px;
    font-weight: 800;
}

.tj-about-phone-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--white);
    font-weight: 700;
    transition: var(--transition);
    color: var(--text-dark);
}

.tj-about-phone-box:hover {
    border-color: var(--primary-soft);
    box-shadow: var(--shadow-sm);
}

.tj-about-phone-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 18px;
}

@media (max-width: 991px) {
    .tj-about-title {
        font-size: 28px;
    }

    .tj-about-section .col-lg-5 {
        position: static;
    }
}

/* ===== PROCESS SECTION ===== */
.tj-process-section {
    padding: 80px 0;
    background: #ffffff;
}

.tj-process-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tj-process-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 40px;
}

.tj-process-img img {
    width: 100%;
    max-width: 520px;
}

.tj-process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.tj-process-number {
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    box-shadow: var(--shadow-green);
    flex-shrink: 0;
}

.tj-process-step h6 {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1.15rem;
    color: #1a1a2e;
}

.tj-process-step p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media(max-width:991px) {
    .tj-process-title {
        font-size: 26px;
    }

    .tj-process-img {
        text-align: center;
        margin-bottom: 40px;
    }
}

/* ===== WHY CHOOSE US (ABOUT PAGE) ===== */
.tj-choose-section {
    padding: 60px 0 0;
}

.tj-choose-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 70px 50px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
}

.tj-choose-overlay {
    display: none;
}

.tj-choose-content {
    position: relative;
}

.tj-choose-label {
    text-align: center;
    color: #ffffff !important;
}

.tj-choose-title {
    text-align: center;
}

.tj-choose-item {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.tj-choose-icon {
    font-size: 24px;
    color: var(--primary-accent);
}

.tj-choose-item h6 {
    font-weight: 700;
    margin-bottom: 5px;
}

.tj-choose-item p {
    font-size: 14px;
    margin: 0;
    opacity: 0.85;
}

@media(max-width:991px) {
    .tj-choose-wrapper {
        padding: 50px 25px;
    }

    .tj-choose-title {
        font-size: 24px;
    }
}

@media(max-width:576px) {
    .tj-choose-item {
        flex-direction: column;
    }
}

/* ===== SERVICES PAGE ===== */
.service-section {
    padding: 60px 0;
}

.service-toggle button {
    border: 2px solid var(--primary);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    background: var(--white);
    margin-right: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    color: var(--primary);
}

.service-toggle button:hover {
    background: var(--primary-pale);
}

.service-toggle .active-btn,
.service-toggle button.active-btn {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-green);
}

.service-card-wrapper {
    cursor: pointer;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.service-card-wrapper .service-card {
    text-align: center;
}

.service-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card-wrapper.active .service-card {
    background: var(--primary-pale);
    border: 2px solid var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
}

.service-desc-text {
    color: var(--text-body);
    line-height: 1.8;
    font-size: 15px;
}

.service-desc-text p {
    margin-bottom: 12px;
}

.service-detail-row {
    margin-top: 20px;
}

.service-items-grid {
    padding: 30px 0;
}

/* Service CTA Banner */
.service-cta-section {
    padding: 60px 0;
}

.service-cta-banner {
    position: relative;
    background: url('/assets/frontend_image/cta-banner.jpg') center/cover no-repeat;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid #1da1f2;
}

.service-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.service-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 30px;
    color: var(--white);
}

.service-cta-content h2 {
    font-weight: 800;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.service-cta-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Specialty services section */
.specialty-services-section {
    background: var(--bg-light, #f8f9fa);
    padding: 50px 40px;
    border-radius: var(--radius-md);
    margin-top: 40px;
}

.specialty-title {
    font-weight: 700;
    font-style: italic;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.specialty-desc {
    color: var(--text-body);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 10px;
}

.specialty-card {
    padding: 0;
}

.specialty-card-img {
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.specialty-card-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.specialty-card:hover .specialty-card-img img {
    transform: scale(1.05);
}

.specialty-card-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.specialty-card-desc {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.7;
}

.service-content {
    margin-top: 20px;
}

.service-content p {
    margin-bottom: 10px;
    color: var(--text-body);
    line-height: 1.7;
}

.service-list li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 14px;
}

.service-list i {
    color: var(--primary);
    margin-right: 8px;
}

.service-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 22px;
    margin-top: 10px;
    font-weight: 700;
    background: var(--white);
    transition: var(--transition);
    color: var(--text-dark);
}

.service-phone:hover {
    border-color: var(--primary-soft);
    box-shadow: var(--shadow-sm);
}

.service-phone i {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 8px;
    border-radius: 6px;
    font-size: 16px;
}

.btn-green {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.service-content #service-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
}

.service-content #service-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.service-content #service-subtitle1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.service-content h6 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ===== CTA BANNER (Testimonials Page) ===== */
.cta-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 60px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../frontend_image/sec11.png') center/cover no-repeat;
    opacity: 0.15;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-heading-small {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
}

.cta-heading-big {
    font-size: 2.5rem;
    font-weight: 800;
}

.cta-btn {
    background: var(--primary-accent);
    border: none;
    padding: 14px 30px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    font-size: 16px;
    color: var(--white);
    transition: var(--transition);
    margin-top: 10px;
}

.cta-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(82, 183, 136, 0.4);
}

.cta-worker {
    position: absolute;
    left: 40px;
    bottom: 0;
    height: 95%;
    z-index: 2;
}

.section-padding {
    padding: 60px 0 !important;
}

@media(max-width:991px) {
    .cta-banner {
        padding: 40px 30px;
        text-align: center;
    }

    .cta-heading-big {
        font-size: 2rem;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 60px 0;
}

.contact-title {
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 2rem;
}

.contact-info p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-size: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 18px;
    flex-shrink: 0;
    box-shadow: var(--shadow-green);
}

.info-text h6 {
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.info-text span {
    color: var(--text-light);
    font-size: 14px;
}

/* Contact Form */
.form-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-card h5 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-control {
    height: 50px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

textarea.form-control {
    height: 130px;
    resize: none;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
    color: var(--white);
}

/* Google Map */
.map-container {
    margin-top: 50px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Contact Info Cards */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-pale);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-card a {
    color: var(--text-body);
    text-decoration: none;
}

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

/* Contact Responsive */
@media(max-width:991px) {
    .contact-section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .service-img {
        height: 180px;
    }
}

/* ===== TABLET RESPONSIVE (768px - 1024px) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .container-fluid {
        padding: 0 30px;
    }

    .custom-navbar {
        padding: 10px 0;
    }

    .logo img {
        max-height: 70px;
    }

    .hero-section {
        padding: 160px 30px 60px;
        min-height: auto;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-titles {
        font-size: 2rem;
    }

    .counter-title {
        font-size: 2rem;
    }

    .experience-badge {
        right: 10px;
        bottom: 15px;
        padding: 20px 22px;
    }

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

    .why-section {
        padding: 50px 30px;
    }

    .cta-banner {
        padding: 50px 30px;
    }

    .cta-heading-big {
        font-size: 2rem;
    }

    .tj-about-hero-wrapper {
        padding: 180px 20px 80px;
    }

    .tj-choose-wrapper {
        padding: 40px 25px;
    }

    .service-card {
        padding: 20px;
    }

    .testimonial-card {
        min-height: 220px;
        padding: 25px;
    }
}

/* ===== MOBILE 768px ===== */
@media (max-width: 768px) {
    .tj-about-section {
        padding: 25px 0;
    }

    .about-subtitle {
        letter-spacing: 2px;
        margin-bottom: 5px;
        font-size: 0.85rem;
    }

    .counter-section {
        padding: 30px 0;
        margin: 10px;
    }

    .counter-title {
        font-size: 1.7rem;
        font-weight: 800;
        margin-bottom: 30px;
    }

    .service-card {
        text-align: left;
    }

    .why-section {
        padding: 30px 30px;
    }

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

    .tj-process-section {
        padding: 25px 0;
    }

    .tj-process-img img {
        max-width: 360px;
    }

    .tj-choose-section {
        padding: 0 0 25px;
    }

    .tj-choose-wrapper {
        padding: 25px 25px;
    }

    .tj-process-step {
        margin-bottom: 15px;
    }

    .testimonial-section .row .col-lg-6 {
        padding: 0;
    }

    .service-card-wrapper .service-card {
        text-align: center;
    }

    .service-phone {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .service-content p {
        margin-bottom: 5px;
    }

    .service-section {
        padding: 25px 0;
    }

    .contact-section {
        padding: 30px 0 !important;
    }

    .form-card {
        padding: 15px !important;
    }

    .contact-title {
        font-weight: 800;
        margin-bottom: 10px !important;
    }

    .map-container {
        margin-top: 20px !important;
    }

    .logo img {
        max-height: 60px;
    }

    .footer-logo img {
        max-width: 96px;
    }

    .section-padding {
        padding: 25px 0 !important;
    }

    .section-subtitles {
        font-size: 0.85rem;
    }
}

/* ===== MOBILE 576px ===== */
@media(max-width:576px) {
    .cta-heading-big {
        font-size: 1.6rem;
    }

    .service-section {
        padding: 20px 0;
    }

    .service-toggle button {
        margin-bottom: 10px;
    }

    .service-phone {
        margin-top: 0;
        width: 100%;
        margin-bottom: 10px;
    }

    .about-title {
        font-size: 1.4rem !important;
    }

    .btn-green {
        width: 100%;
    }

    .call-number {
        font-weight: 700;
        font-size: 1rem;
    }

    .service-toggle .active-btn {
        margin-bottom: 10px;
    }

    .service-toggle {
        text-align: center;
    }

    .row {
        margin: 0;
    }

    .service-content #service-title {
        font-size: 1.2rem;
        font-weight: 800;
        margin-bottom: 7px;
    }

    .service-content {
        margin-top: 20px;
    }

    .service-content #service-subtitle {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 7px;
    }

    .service-content #service-subtitle1 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 7px;
    }

    .sub-heading {
        font-size: 0.9rem;
    }

    .main-heading {
        font-size: 1.5rem;
    }

    .hero-section {
        text-align: center;
        justify-content: center;
        padding: 120px 13px 30px;
    }

    .about-section .row .col-lg-6 {
        margin-top: 10px;
        padding: 0;
    }

    .counter-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .about-title {
        font-size: 1.4rem;
        margin-bottom: 14px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-text {
        font-size: 0.95rem;
        margin: 10px 0;
    }

    .service-card {
        text-align: left;
        padding: 15px;
    }

    .section-titles {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .feature-title {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .check-icon {
        font-size: 1.2rem;
        margin-right: 10px;
        width: 32px;
        height: 32px;
    }

    .testimonial-section {
        padding: 10px 0 30px 0;
    }

    .about-subtitle {
        letter-spacing: 2px;
        margin-bottom: 5px;
        font-size: 0.8rem;
    }

    .testimonial-card {
        padding: 25px;
    }

    .footer-logo img {
        max-width: 90px;
    }

    .main-footer {
        padding: 25px 0;
    }

    .tj-about-section {
        padding: 15px 0;
    }

    .tj-process-section {
        padding: 15px 0;
    }

    .tj-choose-section {
        padding: 15px 0;
    }

    .tj-process-step {
        margin-bottom: 10px;
    }

    .tj-process-img {
        text-align: center;
        margin-bottom: 20px;
    }

    .tj-choose-wrapper {
        padding: 20px 15px;
    }

    .row > * {
        padding: 0 5px;
    }

    .service-section {
        padding: 15px 0;
    }

    .cta-banner {
        padding: 20px 16px;
        text-align: center;
    }

    .contact-section {
        padding: 20px 0 !important;
    }

    .form-card {
        padding: 15px !important;
    }

    .contact-title {
        font-weight: 800;
        margin-bottom: 10px !important;
    }

    .map-container {
        margin-top: 20px !important;
    }

    .section-padding {
        padding: 15px 0 !important;
    }

    .cta-btn {
        padding: 11px 25px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .cta-worker {
        position: absolute;
        left: 7px;
        bottom: 0;
        height: 54%;
        z-index: 2;
    }
}

/* ===== SMALL PHONES (375px) ===== */
@media (max-width: 375px) {
    .custom-navbar {
        padding: 8px 0;
        border-top-width: 4px;
    }

    .logo {
        max-width: 100px;
    }

    .logo img {
        max-height: 38px;
    }

    .navbar-phone .call-text {
        font-size: 10px;
    }

    .navbar-phone .call-number {
        font-size: 0.85rem;
    }

    .mobile-toggle .fs-2 {
        font-size: 1.5rem !important;
    }

    .hero-section {
        padding: 110px 10px 25px;
    }

    .main-heading {
        font-size: 1.3rem;
    }

    .sub-heading {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .call-wrapper {
        padding: 4px 12px 4px 4px;
    }

    .call-icon-box {
        width: 36px;
        height: 36px;
        margin-right: 10px;
    }

    .call-texts {
        font-size: 0.9rem;
    }

    .about-subtitle {
        font-size: 0.75rem;
    }

    .about-title {
        font-size: 1.2rem !important;
    }

    .about-text {
        font-size: 0.9rem;
    }

    .experience-badge {
        right: -15px;
        bottom: 10px;
        padding: 15px 18px;
    }

    .experience-badge h2 {
        font-size: 24px;
    }

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

    .counter-subtitle {
        font-size: 0.8rem;
    }

    .counter-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

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

    .section-subtitles {
        font-size: 0.8rem;
    }

    .section-titles {
        font-size: 1rem;
    }

    .feature-text {
        font-size: 0.85rem;
    }

    .why-section {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .testimonial-card {
        padding: 20px;
        min-height: auto;
    }

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

    .cta-banner {
        padding: 15px 12px;
        border-radius: 12px;
    }

    .cta-heading-big {
        font-size: 1.4rem;
    }

    .cta-heading-small {
        font-size: 15px;
    }

    .footer-links a {
        margin: 0 5px;
        font-size: 12px;
    }

    .footer-area-tag {
        padding: 4px 12px;
        font-size: 11px;
    }

    .tj-about-hero-title {
        font-size: 22px;
    }

    .tj-about-hero-wrapper {
        padding: 120px 10px 40px;
    }

    .tj-choose-wrapper {
        padding: 12px 8px;
        border-radius: 15px;
    }

    .tj-process-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

/* ===== MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
    .navbar-phone .call-text {
        display: none;
    }

    .navbar-phone .call-number {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    .service-toggle button {
        font-size: 12px;
        padding: 8px 16px;
        margin-right: 6px;
        margin-bottom: 6px;
    }

    .service-detail-row .col-lg-5,
    .service-detail-row .col-lg-7 {
        width: 100%;
    }

    .service-detail-row img {
        max-height: 280px;
        margin-bottom: 20px;
    }

    .specialty-services-section {
        padding: 30px 20px;
    }

    .specialty-title {
        font-size: 22px;
    }

    .specialty-card-img img {
        height: 180px;
    }

    .service-cta-content {
        padding: 40px 20px;
    }

    .service-cta-content h2 {
        font-size: 20px;
    }

    .contact-title {
        font-size: 1.3rem !important;
    }

    .faq-heading {
        font-size: 1.5rem;
    }

    .faq-question span:last-child {
        font-size: 14px;
    }

    .tj-choose-content {
        padding: 20px 15px;
    }

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

    .counter-section .col-lg-4,
    .counter-section .col-md-4 {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding-bottom: 20px;
        margin-bottom: 10px;
    }

    .counter-section .col-lg-4:last-child,
    .counter-section .col-md-4:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .service-items-grid .col-lg-3 {
        width: 50%;
    }

    .service-items-grid .d-flex span {
        font-size: 11px !important;
    }

    .specialty-card-img img {
        height: 150px;
    }

    .contact-map-wrapper iframe {
        height: 200px !important;
    }

    .who-help-card {
        font-size: 13px;
        padding: 12px;
    }
}

@media (max-width: 400px) {
    .service-toggle button {
        font-size: 11px;
        padding: 6px 12px;
    }

    .specialty-services-section {
        padding: 20px 12px;
    }

    .specialty-title {
        font-size: 18px;
    }

    .service-cta-content h2 {
        font-size: 16px;
        letter-spacing: 0;
    }

    .service-cta-content p {
        font-size: 13px;
    }
}

/* ===== PREVENT OVERFLOW ===== */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

/* Fix experience badge overflow */
@media (max-width: 768px) {
    .about-img-wrapper {
        overflow: visible;
        width: 100%;
        max-width: 100%;
    }

    .experience-badge {
        position: absolute;
        right: 0;
    }
}

@media (max-width: 576px) {
    .about-img-wrapper {
        padding-right: 0;
    }

    .experience-badge {
        right: -20px;
    }
}

/* ===== SELECTION COLOR ===== */
::selection {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-soft);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
