
        :root {
            --primary-color: #3cb043;
            --secondary-color:#3cb043;
            --dark-color: #072e75;
            --text-dark: #334155;
            --text-gray: #64748b;
            --light-bg: #f8fafc;
            --white: #ffffff;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
        }

        /* ============================================
           BREADCRUMB SECTION
        ============================================ */
        .breadcumb-wrapper {
            background-size: cover; 
            background-position: center; 
            background-repeat: no-repeat; 
            width: 100%; 
            min-height: 300px; 
            display: flex; 
            align-items: center; 
            justify-content: center;
            position: relative;
        }

        .breadcumb-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .breadcumb-content {
            text-align: center; 
            color: #fff;
            position: relative;
            z-index: 2;
        }

        .breadcumb-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .breadcumb-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .breadcumb-menu li {
            display: inline-block;
            margin-right: 10px;
        }

        .breadcumb-menu a {
            color: #fff;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .breadcumb-menu a:hover {
            color: var(--primary-color);
        }

        /* ============================================
           CONTACT INFORMATION BOX
        ============================================ */
        .contact-infobox {
            background: var(--light-bg);
            padding: 40px;
            border-radius: 16px;
            height: 100%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .title-area {
            margin-bottom: 40px;
        }

        .sub-title {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .sec-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-color);
            line-height: 1.2;
        }

        .sec-text {
            color: var(--text-gray);
            font-size: 16px;
            line-height: 1.6;
        }

        .about-contact-grid {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
            padding: 20px;
            background: var(--white);
            border-radius: 12px;
            transition: var(--transition-smooth);
            border: 1px solid transparent;
        }

        .about-contact-grid:hover {
            border-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(60, 176, 67, 0.1);
        }

        .about-contact-icon {
            width: 56px;
            height: 56px;
            background: var(--primary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            flex-shrink: 0;
        }

        .about-contact-details-text {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-color);
            margin-top: 5px;
        }

        .about-contact-details-text a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .about-contact-details-text a:hover {
            color: var(--primary-color);
        }

        /* ============================================
           CONTACT FORM
        ============================================ */
        .contact-formbox {
            padding: 40px;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
        }

        .form-group {
            position: relative;
            margin-bottom: 25px;
        }

        .form-control, .form-select {
            width: 100%;
            padding: 14px 20px 14px 50px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-size: 16px;
            transition: var(--transition-smooth);
            background: var(--white);
            font-family: inherit;
        }

        .form-control:focus, .form-select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(60, 176, 67, 0.1);
        }

        .form-group i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-gray);
            font-size: 18px;
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
            padding-top: 20px;
        }

        .th-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border: none;
            padding: 16px 40px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .th-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(60, 176, 67, 0.3);
            color: var(--white);
        }

        /* ============================================
           GOOGLE MAP
        ============================================ */
        .contact-map {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .contact-map iframe {
            width: 100%;
            height: 450px;
            border: none;
            display: block;
        }

        .contact-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(60, 176, 67, 0.4);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(60, 176, 67, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(60, 176, 67, 0);
            }
        }

        /* ============================================
           SCROLL TO TOP
        ============================================ */
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            cursor: pointer;
            display: none;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: var(--transition-smooth);
        }

        .scroll-top:hover {
            background: var(--dark-color);
            transform: translateY(-3px) scale(1.1);
        }

        .scroll-top svg {
            width: 100%;
            height: 100%;
        }

        /* Alert Messages */
        .alert {
            padding: 15px 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .alert-danger {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        /* ============================================
           RESPONSIVE DESIGN
        ============================================ */
        @media (max-width: 1200px) {
            .contact-infobox,
            .contact-formbox {
                padding: 30px;
            }
        }

        @media (max-width: 992px) {
            .breadcumb-title {
                font-size: 36px;
            }
            
            .sec-title {
                font-size: 28px;
            }
            
            .contact-infobox {
                margin-bottom: 40px;
            }
            
            .contact-formbox {
                margin-left: 0;
                padding-left: 30px;
            }
        }

        @media (max-width: 768px) {
            .breadcumb-title {
                font-size: 32px;
            }
            
            .breadcumb-wrapper {
                min-height: 250px;
            }
            
            .contact-infobox,
            .contact-formbox {
                padding: 25px;
            }
            
            .about-contact-grid {
                flex-direction: column;
                text-align: center;
                padding: 15px;
            }
            
            .about-contact-icon {
                margin: 0 auto;
            }
            
            .contact-map iframe {
                height: 350px;
            }
        }

        @media (max-width: 576px) {
            .breadcumb-title {
                font-size: 28px;
            }
            
            .breadcumb-wrapper {
                min-height: 200px;
            }
            
            .contact-infobox,
            .contact-formbox {
                padding: 20px;
            }
            
            .sec-title {
                font-size: 24px;
            }
            
            .form-group {
                margin-bottom: 20px;
            }
            
            .form-control, .form-select {
                padding: 12px 15px 12px 45px;
                font-size: 15px;
            }
            
            .form-group i {
                left: 15px;
                font-size: 16px;
            }
            
            .th-btn {
                padding: 14px 30px;
                font-size: 15px;
                width: 100%;
                justify-content: center;
            }
            
            .contact-map iframe {
                height: 300px;
            }
            
            .contact-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        /* Desktop */
        .breadcumb-wrapper {
            height: 500px;
        }
        /* Tablet */
        @media (max-width: 992px) {
            .breadcumb-wrapper {
                height: 400px;
            }
        }
        /* Mobile */
        @media (max-width: 576px) {
            .breadcumb-wrapper {
                height: 250px;
            }
        }

        /* ============================================
           ANIMATIONS
        ============================================ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
        }

        .fade-in.visible {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* ============================================
           FORM VALIDATION STYLES
        ============================================ */
        .form-control:invalid:not(:focus):not(:placeholder-shown) {
            border-color: #dc3545;
        }

        .form-control:valid:not(:focus):not(:placeholder-shown) {
            border-color: #28a745;
        }

        .error-message {
            color: #dc3545;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }

        .form-control:invalid:not(:focus):not(:placeholder-shown) + .error-message {
            display: block;
        }
    