/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Vazirmatn', 'Inter', sans-serif;
    background: #FFF5F7;
    color: #3D2C1B;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-padding {
    padding: 80px 0;
}
.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #3D2C1B;
    margin-bottom: 6px;
    letter-spacing: -1px;
}
.section-title .beige {
    color: #C4A484;
}
.section-title .green {
    color: #2E7D32;
}
.section-subtitle {
    font-size: 1rem;
    color: #2E7D32;
    font-weight: 400;
    margin-bottom: 40px;
    border-right: 5px solid #C4A484;
    padding-right: 18px;
}
.text-center {
    text-align: center;
}
.text-beige {
    color: #C4A484;
}
.text-green {
    color: #2E7D32;
}
.bg-green-light {
    background: #E8F5E9;
}
.bg-white {
    background: #FFFFFF;
}
.bg-pink-light {
    background: #FFF0F2;
}
.bg-pink-lighter {
    background: #FFF5F7;
}
.bg-gradient-pink-green {
    background: linear-gradient(135deg, #FFF0F2 0%, #E8F5E9 100%);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.25);
    min-height: 50px;
    min-width: 44px;
    text-align: center;
    letter-spacing: 0.3px;
}
.btn:hover {
    background: linear-gradient(135deg, #C4A484, #A8896A);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 45px rgba(196, 164, 132, 0.35);
}
.btn-outline {
    background: transparent;
    border: 2px solid #2E7D32;
    color: #2E7D32;
    box-shadow: none;
}
.btn-outline:hover {
    background: #2E7D32;
    color: #fff;
    border-color: #2E7D32;
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.2);
}
.btn-beige {
    background: linear-gradient(135deg, #C4A484, #A8896A);
    box-shadow: 0 8px 30px rgba(196, 164, 132, 0.25);
}
.btn-beige:hover {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    box-shadow: 0 16px 45px rgba(46, 125, 50, 0.3);
}
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

/* ============================================
   HEADER - FIXED
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 245, 247, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid #FFE4E8;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.header-logo img {
    height: 45px;
    width: auto;
    border-radius: 8px;
}
.logo {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #3D2C1B;
}
.logo .green {
    color: #2E7D32;
}
.logo .beige {
    color: #C4A484;
}

/* ============================================
   HAMBURGER MENU
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: none;
    background: none;
    transition: all 0.3s ease;
    z-index: 100;
    position: relative;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #3D2C1B;
    border-radius: 4px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.hamburger:hover span {
    background: #2E7D32;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-wrapper {
    display: flex;
    align-items: center;
}
.nav-menu {
    display: flex;
    gap: 28px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}
.nav-menu li {
    list-style: none;
}
.nav-menu a {
    transition: all 0.3s;
    font-size: 0.95rem;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    position: relative;
    color: #3D2C1B;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, #C4A484, #2E7D32);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: #2E7D32;
}

/* Overlay برای موبایل */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 98;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.nav-overlay.active {
    display: block;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    margin-top: 75px;
    min-height: 85vh;
    background: linear-gradient(135deg, #FFF0F2 0%, #E8F5E9 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.slider-container {
    width: 100%;
    position: relative;
    min-height: 85vh;
}
.slide {
    display: none;
    padding: 40px 20px;
    width: 100%;
    min-height: 85vh;
    align-items: center;
}
.slide.active {
    display: flex;
    animation: fadeSlide 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: scale(0.98) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}
.slide-text {
    direction: rtl;
}
.slide-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #3D2C1B;
    line-height: 1.15;
    margin-bottom: 12px;
}
.slide-text h1 .beige {
    color: #C4A484;
}
.slide-text .sub-name {
    font-size: 1.9rem;
    font-weight: 800;
    color: #3D2C1B;
    margin-top: 4px;
}
.slide-text .sub-name .green {
    color: #2E7D32;
}
.slide-text .sub-name .beige {
    color: #C4A484;
}
.slide-text .sub-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: #2E7D32;
    margin-bottom: 12px;
}
.slide-text p {
    font-size: 1.1rem;
    color: #5A4A3A;
    margin: 8px 0 16px;
    max-width: 90%;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 28px;
}
.hero-badges .badge {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 8px 20px;
    border-radius: 60px;
    border: 1px solid rgba(46, 125, 50, 0.12);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3D2C1B;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}
.hero-badges .badge:hover {
    border-color: #C4A484;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 164, 132, 0.08);
}
.hero-badges .badge i {
    color: #C4A484;
}
.slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 40px 40px 40px 8px;
    box-shadow: 0 20px 60px rgba(46, 125, 50, 0.08);
    border: 2px solid #FFD9DF;
    transition: all 0.4s ease;
    object-fit: cover;
    aspect-ratio: 4/5;
}
.slide-image img:hover {
    transform: scale(1.01);
    box-shadow: 0 24px 70px rgba(46, 125, 50, 0.12);
}

/* ============================================
   SLIDER CONTROLS
   ============================================ */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid #FFE4E8;
    color: #3D2C1B;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.slider-btn:hover {
    background: #2E7D32;
    color: #fff;
    border-color: #2E7D32;
    transform: translateY(-50%) scale(1.05);
}
.slider-btn.prev {
    right: 20px;
}
.slider-btn.next {
    left: 20px;
}
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.slider-dots .dot:hover {
    background: rgba(46, 125, 50, 0.5);
    transform: scale(1.1);
}
.slider-dots .dot.active {
    background: #2E7D32;
    border-color: #C4A484;
    width: 30px;
    border-radius: 20px;
}

/* ============================================
   STATS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 10px;
}
.stat-card {
    background: #FFFFFF;
    padding: 30px 16px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.02);
    border: 1px solid #FFE4E8;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 55px rgba(46, 125, 50, 0.06);
    border-color: #C4A484;
}
.stat-card .number {
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2E7D32, #C4A484);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.stat-card .label {
    color: #5A4A3A;
    font-weight: 400;
    font-size: 0.95rem;
    margin-top: 4px;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 16px;
}
.service-card {
    background: #FFFFFF;
    padding: 30px 20px;
    border-radius: 32px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.02);
    border: 1px solid #FFE4E8;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2E7D32, #C4A484);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.service-card:hover::before {
    opacity: 1;
}
.service-card:hover {
    border-color: #C4A484;
    box-shadow: 0 20px 50px rgba(46, 125, 50, 0.06);
    transform: translateY(-8px);
}
.service-img {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 16px;
}
.service-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.service-card:hover .service-img img {
    transform: scale(1.03);
}
.service-card h4 {
    font-size: 1.2rem;
    color: #3D2C1B;
    margin-bottom: 6px;
}
.service-card p {
    font-size: 0.92rem;
    color: #5A4A3A;
    line-height: 1.8;
}

/* ============================================
   AWARDS
   ============================================ */
.award-card {
    background: #FFFFFF;
    border-right: 8px solid #2E7D32;
    padding: 24px 30px;
    border-radius: 20px;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
    font-size: 0.95rem;
    color: #3D2C1B;
    transition: all 0.3s ease;
    border-left: 1px solid #FFE4E8;
}
.award-card:hover {
    transform: translateX(-8px);
    box-shadow: 0 14px 40px rgba(196, 164, 132, 0.06);
    border-color: #C4A484;
}
.award-card i {
    color: #C4A484;
    margin-left: 14px;
    font-size: 1.4rem;
}
.award-card strong {
    color: #2E7D32;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #105E14;
    color: #E8DDD0;
    padding: 50px 0 20px;
    margin-top: 30px;
    border-top: 4px solid #C4A484;
}
.footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}
.footer-col h4 {
    color: #FFFFFF;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.15rem;
}
.footer-col h4 .beige {
    color: #C4A484;
}
.footer-col h4 .green {
    color: #81C784;
}
.footer-col p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.footer-col p i {
    margin-left: 10px;
    color: #C4A484;
    width: 20px;
}
.footer-col a {
    color: #C4A484;
    transition: 0.3s;
    display: block;
    line-height: 2.4;
}
.footer-col a:hover {
    color: #E8DDD0;
    padding-right: 4px;
}
.footer-col .social {
    display: flex;
    gap: 18px;
    margin-top: 12px;
}
.footer-col .social i {
    font-size: 1.8rem;
    color: #C4A484;
    transition: 0.3s;
    cursor: pointer;
}
.footer-col .social i:hover {
    color: #FFFFFF;
    transform: scale(1.12) translateY(-2px);
}
.footer-col img {
    border-radius: 12px;
    margin-top: 8px;
    max-width: 80px;
    height: auto;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 22px;
    margin-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #A8896A;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-wa {
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 999;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}
.floating-wa:hover {
    transform: scale(1.08) rotate(-4deg);
    background: #128C7E;
}
.floating-btn {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: #fff;
    padding: 16px 40px;
    border-radius: 60px;
    font-weight: 700;
    box-shadow: 0 12px 45px rgba(46, 125, 50, 0.35);
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    min-height: 50px;
    min-width: 44px;
    white-space: nowrap;
}
.floating-btn:hover {
    background: linear-gradient(135deg, #C4A484, #A8896A);
    transform: translateX(-50%) scale(1.03);
    box-shadow: 0 16px 55px rgba(196, 164, 132, 0.4);
}
.back-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 999;
    background: #2E7D32;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 28px rgba(46, 125, 50, 0.25);
}
.back-top:hover {
    opacity: 1;
    background: #C4A484;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 38px rgba(196, 164, 132, 0.3);
}

/* ============================================
   CHATBOT
   ============================================ */
.chatbot-widget {
    position: fixed;
    bottom: 170px;
    right: 20px;
    z-index: 999;
}
.chatbot-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: #fff;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 12px 45px rgba(46, 125, 50, 0.35);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.chatbot-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 55px rgba(46, 125, 50, 0.45);
}
.chatbot-toggle .badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 14px;
    height: 14px;
    background: #C4A484;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(196, 164, 132, 0.2);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(196, 164, 132, 0.3);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(196, 164, 132, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(196, 164, 132, 0);
    }
}
.chatbot-container {
    position: fixed;
    bottom: 240px;
    right: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
    flex-direction: column;
    max-height: 520px;
    border: 1px solid #FFE4E8;
    animation: slideUp 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.chatbot-container.active {
    display: flex;
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.chatbot-header {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: #fff;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 14px;
}
.chatbot-avatar {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.15);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.chatbot-header-text h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}
.chatbot-header-text h3 .beige {
    color: #C4A484;
}
.chatbot-header-text p {
    font-size: 0.75rem;
    opacity: 0.8;
    margin: 0;
}
.chatbot-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
    padding: 4px;
}
.chatbot-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}
.chatbot-messages {
    flex: 1;
    padding: 18px 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #FFF5F7;
    max-height: 340px;
    min-height: 200px;
}
.chatbot-messages .message {
    max-width: 88%;
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 0.92rem;
    line-height: 1.6;
    position: relative;
    animation: messageIn 0.3s ease;
}
@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.message-user {
    align-self: flex-end;
    background: linear-gradient(135deg, #C4A484, #A8896A);
    color: #fff;
    border-bottom-left-radius: 4px;
}
.message-bot {
    align-self: flex-start;
    background: #FFFFFF;
    color: #3D2C1B;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid #FFE4E8;
}
.message-time {
    font-size: 0.6rem;
    opacity: 0.5;
    display: block;
    margin-top: 4px;
    text-align: left;
    font-weight: 300;
}
.message-user .message-time {
    text-align: right;
}
.typing-indicator {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #FFFFFF;
    border-radius: 18px;
    align-self: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid #FFE4E8;
    font-size: 0.8rem;
    color: #5A4A3A;
    margin: 2px 0;
}
.typing-indicator.active {
    display: flex;
}
.typing-dot {
    width: 8px;
    height: 8px;
    background: #2E7D32;
    border-radius: 50%;
    display: inline-block;
    animation: typingBounce 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}
.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}
.typing-dot:nth-child(3) {
    animation-delay: 0;
}
@keyframes typingBounce {
    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}
.chatbot-input-area {
    display: flex;
    padding: 12px 16px 16px;
    gap: 10px;
    background: #FFFFFF;
    border-top: 1px solid #FFE4E8;
}
.chatbot-input-area input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 30px;
    border: 1px solid #FFE4E8;
    font-family: inherit;
    font-size: 0.95rem;
    background: #FFF5F7;
    transition: 0.3s;
    min-height: 44px;
    color: #3D2C1B;
}
.chatbot-input-area input::placeholder {
    color: #B8A898;
}
.chatbot-input-area input:focus {
    outline: none;
    border-color: #2E7D32;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.06);
}
.chatbot-input-area button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.chatbot-input-area button:hover {
    background: linear-gradient(135deg, #C4A484, #A8896A);
    transform: scale(1.05);
}
.chatbot-input-area button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   MUSIC PLAYER
   ============================================ */
.music-player-widget {
    position: fixed;
    bottom: 180px;
    left: 20px;
    z-index: 998;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 16px 18px 18px;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid #FFE4E8;
    width: 220px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.music-player-widget.active {
    display: flex;
    animation: slideUp 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.music-player-widget .track-info {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.music-player-widget .track-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #2E7D32, #C4A484);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}
.music-player-widget .track-details {
    flex: 1;
    min-width: 0;
}
.music-player-widget .track-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #3D2C1B;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.music-player-widget .track-artist {
    font-size: 0.65rem;
    color: #A8896A;
}
.music-player-widget .controls {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}
.music-player-widget .controls button {
    background: none;
    border: none;
    color: #3D2C1B;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
}
.music-player-widget .controls button:hover {
    background: #FFF0F2;
    color: #2E7D32;
    transform: scale(1.05);
}
.music-player-widget .controls .play-btn {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: #fff;
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.2);
}
.music-player-widget .controls .play-btn:hover {
    background: linear-gradient(135deg, #C4A484, #A8896A);
    box-shadow: 0 4px 20px rgba(196, 164, 132, 0.3);
}
.music-player-widget .controls .play-btn.playing {
    background: linear-gradient(135deg, #C4A484, #A8896A);
}
.music-player-widget .controls .play-btn.playing:hover {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
}
.music-player-widget .progress-bar {
    width: 100%;
    height: 4px;
    background: #FFE4E8;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin-top: 2px;
}
.music-player-widget .progress-bar .progress-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #2E7D32, #C4A484);
    width: 0%;
    transition: width 0.1s linear;
}
.music-player-widget .time-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.6rem;
    color: #A8896A;
    margin-top: 2px;
}
.music-player-toggle {
    position: fixed;
    bottom: 170px;
    left: 20px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 3px solid #C4A484;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(135deg, #FFF0F2, #E8F5E9);
}
.music-player-toggle:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.35);
    border-color: #2E7D32;
}
.music-player-toggle.active {
    border-color: #2E7D32;
    box-shadow: 0 12px 40px rgba(196, 164, 132, 0.3);
}
.music-player-toggle .toggle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.4s ease;
}
.music-player-toggle .note-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 0.65rem;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: #fff;
    border-radius: 50%;
    padding: 3px 7px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
    border: 2px solid #fff;
    animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
.music-player-widget .volume-control {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}
.music-player-widget .volume-control input[type="range"] {
    flex: 1;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    background: #FFE4E8;
    border-radius: 4px;
    outline: none;
    transition: background 0.3s ease;
}
.music-player-widget .volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2E7D32;
    cursor: pointer;
    transition: all 0.3s ease;
}
.music-player-widget .volume-control input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}
.music-player-widget .volume-control input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2E7D32;
    cursor: pointer;
    border: none;
}
.music-player-widget .volume-icon {
    font-size: 0.8rem;
    color: #A8896A;
    width: 20px;
    text-align: center;
}

/* ============================================
   FADE UP ANIMATION
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MAP PLACEHOLDER
   ============================================ */
.map-placeholder {
    background: #FFF0F2;
    height: 200px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3D2C1B;
    border: 2px dashed #2E7D32;
    margin-top: 20px;
    font-weight: 500;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .slide-text p {
        max-width: 100%;
    }
    .slide-text .hero-badges {
        justify-content: center;
    }
    .slide-text .btn-group {
        justify-content: center;
    }
    .slide-image {
        order: -1;
    }
    .slide-image img {
        max-width: 350px;
    }
    .slide-text h1 {
        font-size: 2.5rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer .container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    /* HEADER */
    .header .container {
        height: 65px;
        padding: 0 15px;
    }
    .header-logo img {
        height: 35px;
    }
    .logo {
        font-size: 1.3rem;
    }

    /* HAMBURGER */
    .hamburger {
        display: flex;
    }

    /* NAV */
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #FFFFFF;
        padding: 80px 24px 30px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 99;
        overflow-y: auto;
    }
    .nav-wrapper.open {
        right: 0;
    }
    .nav-menu {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-menu a {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
        border-bottom: 1px solid #FFE4E8;
        border-radius: 12px;
        text-align: center;
        white-space: normal;
        transition: all 0.3s ease;
    }
    .nav-menu a::after {
        display: none;
    }
    .nav-menu a:hover,
    .nav-menu a.active {
        background: #E8F5E9;
        color: #2E7D32;
        padding-right: 20px;
    }

    /* SLIDER */
    .hero-slider {
        min-height: auto;
        padding: 30px 0 50px;
        margin-top: 65px;
    }
    .slider-container {
        min-height: auto;
    }
    .slide {
        padding: 20px 0;
        min-height: auto;
    }
    .slide-content {
        gap: 30px;
        padding: 0 15px;
    }
    .slide-text h1 {
        font-size: 1.8rem;
    }
    .slide-text .sub-name {
        font-size: 1.3rem;
    }
    .slide-text .sub-title {
        font-size: 0.85rem;
    }
    .slide-text .hero-badges .badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    .slide-image img {
        max-width: 250px;
    }

    /* SLIDER CONTROLS */
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .slider-btn.prev {
        right: 10px;
    }
    .slider-btn.next {
        left: 10px;
    }
    .slider-dots {
        bottom: 10px;
        gap: 8px;
    }
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    .slider-dots .dot.active {
        width: 24px;
    }

    /* BUTTONS */
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
        min-height: 40px;
    }
    .btn-group {
        gap: 10px;
        justify-content: center;
    }

    /* STATS */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .stat-card {
        padding: 18px 12px;
    }
    .stat-card .number {
        font-size: 1.8rem;
    }
    .stat-card .label {
        font-size: 0.8rem;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .service-card {
        padding: 20px 14px;
    }
    .service-card h4 {
        font-size: 1rem;
    }
    .service-card p {
        font-size: 0.8rem;
    }
    .service-img img {
        aspect-ratio: 16/9;
    }

    /* SECTION TITLES */
    .section-title {
        font-size: 1.5rem;
    }
    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 28px;
        padding-right: 14px;
        border-right-width: 4px;
    }
    .section-padding {
        padding: 40px 0;
    }

    /* AWARDS */
    .award-card {
        padding: 16px 18px;
        font-size: 0.85rem;
        border-right-width: 5px;
    }
    .award-card i {
        font-size: 1.1rem;
        margin-left: 10px;
    }

    /* FOOTER */
    .footer .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-col .social {
        justify-content: center;
    }
    .footer-col img {
        margin: 8px auto;
    }
    .footer-col p i {
        margin-left: 6px;
        width: auto;
    }
    .footer-col a {
        text-align: center;
    }

    /* FLOATING */
    .floating-wa {
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
        bottom: 80px;
        left: 12px;
    }
    .back-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 80px;
        right: 12px;
    }
    .floating-btn {
        padding: 12px 24px;
        font-size: 0.8rem;
        bottom: 12px;
        min-height: 42px;
        white-space: normal;
        width: 85%;
        max-width: 280px;
    }

    /* CHATBOT */
    .chatbot-widget {
        bottom: 130px;
        right: 12px;
    }
    .chatbot-toggle {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    .chatbot-container {
        width: calc(100vw - 24px);
        right: 12px;
        bottom: 170px;
        max-height: 400px;
        max-width: 380px;
        border-radius: 20px;
    }
    .chatbot-messages {
        max-height: 220px;
        min-height: 140px;
        padding: 14px 12px;
    }
    .chatbot-messages .message {
        font-size: 0.85rem;
        padding: 10px 14px;
        max-width: 92%;
    }
    .chatbot-header {
        padding: 14px 16px;
    }
    .chatbot-header-text h3 {
        font-size: 0.9rem;
    }
    .chatbot-input-area {
        padding: 8px 12px 12px;
        gap: 8px;
    }
    .chatbot-input-area input {
        font-size: 0.85rem;
        padding: 10px 14px;
        min-height: 38px;
    }
    .chatbot-input-area button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* MUSIC PLAYER */
    .music-player-widget {
        width: 170px;
        padding: 12px 12px 14px;
        bottom: 150px;
        left: 12px;
        border-radius: 18px;
    }
    .music-player-toggle {
        width: 44px;
        height: 44px;
        bottom: 138px;
        left: 12px;
        border-width: 2px;
    }
    .music-player-widget .track-name {
        font-size: 0.7rem;
    }
    .music-player-widget .track-artist {
        font-size: 0.55rem;
    }
    .music-player-widget .controls button {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
        min-width: 30px;
        min-height: 30px;
    }
    .music-player-widget .controls .play-btn {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
    .music-player-widget .track-icon {
        font-size: 1.2rem;
        width: 30px;
        height: 30px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* HEADER */
    .header-logo img {
        height: 30px;
    }
    .logo {
        font-size: 1.1rem;
    }

    /* SLIDER */
    .slide-text h1 {
        font-size: 1.4rem;
    }
    .slide-text .sub-name {
        font-size: 1.1rem;
    }
    .slide-text .hero-badges {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }
    .slide-text .hero-badges .badge {
        justify-content: center;
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    .slide-image img {
        max-width: 200px;
    }

    /* SLIDER CONTROLS */
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    .slider-dots .dot.active {
        width: 18px;
    }

    /* STATS */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .stat-card {
        padding: 14px 8px;
        border-radius: 18px;
    }
    .stat-card .number {
        font-size: 1.4rem;
    }
    .stat-card .label {
        font-size: 0.7rem;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .service-card {
        padding: 18px 14px;
    }

    /* SECTION TITLES */
    .section-title {
        font-size: 1.2rem;
    }
    .section-subtitle {
        font-size: 0.75rem;
        padding-right: 10px;
        border-right-width: 3px;
        margin-bottom: 20px;
    }
    .section-padding {
        padding: 30px 0;
    }

    /* FOOTER */
    .footer {
        padding: 30px 0 16px;
    }
    .footer-col h4 {
        font-size: 1rem;
    }
    .footer-col p,
    .footer-col a {
        font-size: 0.8rem;
    }
    .footer-col .social i {
        font-size: 1.4rem;
    }
    .footer-bottom {
        font-size: 0.7rem;
        padding-top: 16px;
        margin-top: 20px;
    }

    /* NAV */
    .nav-wrapper {
        width: 85%;
        padding: 70px 20px 20px;
    }
    .nav-menu a {
        font-size: 0.9rem;
        padding: 10px 14px;
    }

    /* CHATBOT */
    .chatbot-container {
        max-height: 340px;
        bottom: 150px;
        border-radius: 16px;
    }
    .chatbot-messages {
        max-height: 170px;
        min-height: 100px;
        padding: 10px;
    }
    .chatbot-messages .message {
        font-size: 0.78rem;
        padding: 8px 12px;
        max-width: 95%;
    }
    .chatbot-header {
        padding: 12px 14px;
    }
    .chatbot-avatar {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
    .chatbot-header-text h3 {
        font-size: 0.8rem;
    }
    .chatbot-header-text p {
        font-size: 0.65rem;
    }
    .chatbot-input-area {
        padding: 6px 10px 10px;
        gap: 6px;
    }
    .chatbot-input-area input {
        font-size: 0.78rem;
        padding: 8px 12px;
        min-height: 34px;
        border-radius: 20px;
    }
    .chatbot-input-area button {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    .chatbot-close {
        font-size: 1.1rem;
    }

    /* MUSIC PLAYER */
    .music-player-widget {
        width: 150px;
        padding: 10px 10px 12px;
        bottom: 130px;
        left: 10px;
        border-radius: 14px;
    }
    .music-player-toggle {
        width: 36px;
        height: 36px;
        bottom: 118px;
        left: 10px;
    }
    .music-player-widget .track-name {
        font-size: 0.6rem;
    }
    .music-player-widget .track-artist {
        font-size: 0.5rem;
    }
    .music-player-widget .controls button {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
        min-width: 26px;
        min-height: 26px;
    }
    .music-player-widget .controls .play-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .music-player-widget .track-icon {
        font-size: 1rem;
        width: 26px;
        height: 26px;
    }
    .music-player-widget .volume-control input[type="range"] {
        height: 2px;
    }
    .music-player-widget .volume-control input[type="range"]::-webkit-slider-thumb {
        width: 8px;
        height: 8px;
    }
    .music-player-widget .time-info {
        font-size: 0.5rem;
    }
    .music-player-widget .note-badge {
        font-size: 0.5rem;
        padding: 2px 5px;
        top: -4px;
        right: -4px;
    }

    /* FLOATING */
    .floating-wa {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
        bottom: 70px;
        left: 10px;
    }
    .back-top {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
        bottom: 70px;
        right: 10px;
    }
    .floating-btn {
        font-size: 0.7rem;
        padding: 8px 16px;
        min-height: 34px;
        bottom: 8px;
        max-width: 200px;
        border-radius: 40px;
    }
}