        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #1a1a1a;
            overflow-x: hidden;
        }

        /* Top Banner */
        .top-banner {
            background-color: #3d1f0f;
            color: white;
            padding: 12px 0;
            font-size: 14px;
        }

        .top-banner a {
            color: white;
            text-decoration: underline;
        }

        .top-banner .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 22px;
            cursor: pointer;
            padding: 0 8px;
            line-height: 1;
        }

        .top-banner .support-text {
            white-space: nowrap;
        }

        .top-banner .promo-text {
            text-align: center;
        }

        /* Header - Enhanced like FAQ */
        .navbar {
            padding: 15px 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 20px;
            color: #1a1a1a !important;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            transform: translateX(3px);
        }

        .logo-circle {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #3d1f0f 0%, #5a2f18 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 20px;
            flex-shrink: 0;
            box-shadow: 0 3px 8px rgba(61, 31, 15, 0.3);
            transition: all 0.3s ease;
        }

        .navbar-brand:hover .logo-circle {
            transform: rotate(360deg);
            box-shadow: 0 5px 15px rgba(61, 31, 15, 0.4);
        }

        .navbar-nav {
            align-items: center;
        }

        .navbar-nav .nav-link {
            color: #1a1a1a;
            margin: 0 15px;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px;
            transition: all 0.3s ease;
            border-radius: 6px;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 2px;
            background: linear-gradient(90deg, #f4b860, #e5a850);
            transition: transform 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            transform: translateX(-50%) scaleX(1);
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: #3d1f0f;
            background-color: rgba(244, 184, 96, 0.1);
        }

        .nav-icons {
            display: flex;
            gap: 20px;
            font-size: 19px;
            align-items: center;
        }

        .nav-icons i {
            cursor: pointer;
            color: #1a1a1a;
            transition: all 0.3s ease;
            padding: 8px;
            border-radius: 50%;
        }

        .nav-icons i:hover {
            color: #3d1f0f;
            background-color: rgba(244, 184, 96, 0.15);
            transform: scale(1.1);
        }

        .navbar-toggler {
            border: none;
            padding: 8px;
            border-radius: 6px;
            position: relative;
            background-color: rgba(61, 31, 15, 0.05);
            transition: all 0.3s ease;
        }

        .navbar-toggler:hover {
            background-color: rgba(61, 31, 15, 0.1);
        }

        .navbar-toggler:focus {
            box-shadow: none;
            background-color: rgba(61, 31, 15, 0.15);
        }

        .navbar-toggler-icon {
            width: 26px;
            height: 2px;
            background-color: #3d1f0f;
            display: block;
            position: relative;
            transition: all 0.3s ease;
        }

        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after {
            content: '';
            position: absolute;
            width: 26px;
            height: 2px;
            background-color: #3d1f0f;
            left: 0;
            transition: all 0.3s ease;
        }

        .navbar-toggler-icon::before {
            top: -8px;
        }

        .navbar-toggler-icon::after {
            top: 8px;
        }

        .navbar-toggler:hover .navbar-toggler-icon::before {
            top: -9px;
        }

        .navbar-toggler:hover .navbar-toggler-icon::after {
            top: 9px;
        }

        /* Mobile Menu Enhancement */
        .navbar-collapse {
            transition: all 0.4s ease;
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: white;
                padding: 20px 15px;
                margin-top: 15px;
                border-radius: 8px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
        }

        /* Hero Section */
        .hero-section {
            background-color: #f5f5f5;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before,
        .hero-section::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="%23ddd"/><circle cx="30" cy="20" r="2" fill="%23ddd"/><circle cx="50" cy="15" r="2" fill="%23ddd"/><circle cx="70" cy="25" r="2" fill="%23ddd"/><circle cx="20" cy="40" r="2" fill="%23ddd"/></svg>');
            opacity: 0.5;
        }

        .hero-section::before {
            top: 30px;
            right: 30px;
        }

        .hero-section::after {
            bottom: 30px;
            left: 30px;
        }

        .hero-section h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .breadcrumb-item {
            font-size: 15px;
        }

        .breadcrumb-item a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb-item a:hover {
            color: #3d1f0f;
        }

        .breadcrumb-item.active {
            color: #1a1a1a;
        }

        /* Contact Form Section */
        .contact-section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .form-text-muted {
            color: #666;
            font-size: 15px;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .form-label {
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a1a1a;
            font-size: 15px;
            display: block;
        }

        .form-control {
            padding: 14px 18px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 15px;
            width: 100%;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: #3d1f0f;
            box-shadow: 0 0 0 0.2rem rgba(61, 31, 15, 0.15);
            outline: none;
        }

        /* Form Validation Styles */
        .form-control.is-invalid {
            border-color: #dc3545;
            padding-right: calc(1.5em + 0.75rem);
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right calc(0.375em + 0.1875rem) center;
            background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
        }

        .form-control.is-invalid:focus {
            border-color: #dc3545;
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
        }

        .form-control.is-valid {
            border-color: #28a745;
            padding-right: calc(1.5em + 0.75rem);
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right calc(0.375em + 0.1875rem) center;
            background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
        }

        .invalid-feedback {
            display: none;
            width: 100%;
            margin-top: 0.25rem;
            font-size: 0.875em;
            color: #dc3545;
        }

        .form-control.is-invalid ~ .invalid-feedback {
            display: block;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .btn-submit {
            background-color: #3d1f0f;
            color: white;
            padding: 16px 50px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            position: relative;
        }

        .btn-submit:hover:not(:disabled) {
            background-color: #2a1508;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(61, 31, 15, 0.3);
        }

        .btn-submit:disabled {
            background-color: #999;
            cursor: not-allowed;
            opacity: 0.6;
        }

        .btn-submit.loading::after {
            content: "";
            position: absolute;
            width: 16px;
            height: 16px;
            top: 50%;
            left: 50%;
            margin-left: -8px;
            margin-top: -8px;
            border: 3px solid transparent;
            border-radius: 50%;
            border-top-color: white;
            animation: spin 0.6s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Alert Messages */
        .alert-custom {
            padding: 15px 20px;
            border-radius: 6px;
            margin-bottom: 20px;
            display: none;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .alert-success {
            background-color: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
        }

        .alert-error {
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
        }

        /* Info Cards */
        .info-card {
            background-color: #f9f9f9;
            padding: 35px;
            border-radius: 10px;
            margin-bottom: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }

        .info-card h3 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 18px;
            color: #1a1a1a;
        }

        .info-card p {
            margin-bottom: 10px;
            color: #666;
            font-size: 15px;
            line-height: 1.7;
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 48px;
            height: 48px;
            background-color: #f4b860;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a1a1a;
            font-size: 20px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .social-icon:hover {
            transform: translateY(-5px);
            background-color: #e5a850;
            box-shadow: 0 6px 15px rgba(244, 184, 96, 0.4);
        }

        /* Map Section */
        .map-section {
            width: 100%;
            height: 500px;
            background-color: #e9e9e9;
            position: relative;
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        /* Features Section */
        .features-section {
            padding: 60px 0;
            background-color: white;
            border-top: 1px solid #e5e5e5;
        }

        .feature-box {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 15px;
            transition: transform 0.3s;
        }

        .feature-box:hover {
            transform: translateX(5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon i {
            font-size: 42px !important;
            color: #f4b860;
        }

        .feature-content h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1a1a1a;
        }

        .feature-content p {
            margin: 0;
            color: #666;
            font-size: 14px;
            line-height: 1.5;
        }

        /* Footer */
        .footer {
            background-color: #3d1f0f;
            color: white;
            padding: 60px 0 30px;
        }

        .footer h5 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 25px;
            color: white;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer ul li a:hover {
            color: white;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 25px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .footer-social i {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .footer-social i:hover {
            background-color: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.5);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 25px;
            font-size: 14px;
            color: #ccc;
        }

        .footer-selects {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .footer-selects select {
            background-color: transparent;
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .footer-selects select:hover {
            border-color: rgba(255,255,255,0.5);
        }

        .footer-selects select option {
            background-color: #3d1f0f;
            color: white;
        }

        .footer p {
            font-size: 14px;
            line-height: 1.7;
            color: #ccc;
        }

        /* ============================================
           RESPONSIVE DESIGN - TABLET LANDSCAPE (992px - 1199px)
           ============================================ */
        @media (min-width: 992px) and (max-width: 1199px) {
            .navbar {
                padding: 12px 0;
            }

            .navbar-brand {
                font-size: 19px;
            }

            .logo-circle {
                width: 42px;
                height: 42px;
                font-size: 19px;
            }

            .navbar-nav .nav-link {
                margin: 0 12px;
                font-size: 14px;
                padding: 7px 14px;
            }

            .hero-section h1 {
                font-size: 44px;
            }

            .section-title {
                font-size: 34px;
            }

            .btn-submit {
                padding: 15px 45px;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - TABLET PORTRAIT (768px - 991px)
           ============================================ */
        @media (min-width: 768px) and (max-width: 991px) {
            .top-banner {
                font-size: 13px;
                padding: 10px 15px;
            }

            .navbar {
                padding: 12px 0;
            }

            .navbar-brand {
                font-size: 18px;
            }

            .logo-circle {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .navbar-nav {
                margin-top: 20px;
                width: 100%;
            }

            .navbar-nav .nav-link {
                margin: 8px 0;
                padding: 12px 20px;
                text-align: center;
                font-size: 15px;
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }

            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }

            .navbar-nav .nav-link::after {
                display: none;
            }

            .nav-icons {
                margin-top: 20px;
                justify-content: center;
                width: 100%;
            }

            .hero-section {
                padding: 60px 20px;
            }

            .hero-section h1 {
                font-size: 40px;
            }

            .breadcrumb-item {
                font-size: 14px;
            }

            .contact-section {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .form-text-muted {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .form-label {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .form-control {
                padding: 13px 16px;
                font-size: 14px;
            }

            textarea.form-control {
                min-height: 140px;
            }

            .btn-submit {
                width: 100%;
                padding: 15px 40px;
                font-size: 15px;
            }

            .invalid-feedback {
                font-size: 0.825em;
            }

            .alert-custom {
                padding: 14px 18px;
                font-size: 14px;
            }

            .info-card {
                padding: 30px;
                margin-bottom: 20px;
            }

            .info-card h3 {
                font-size: 24px;
                margin-bottom: 15px;
            }

            .info-card p {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .social-icons {
                gap: 12px;
                margin-top: 18px;
            }

            .social-icon {
                width: 46px;
                height: 46px;
                font-size: 19px;
            }

            .map-section {
                height: 400px;
            }

            .features-section {
                padding: 50px 20px;
            }

            .feature-box {
                margin-bottom: 25px;
            }

            .feature-icon {
                width: 58px;
                height: 58px;
            }

            .feature-icon i {
                font-size: 40px !important;
            }

            .feature-content h4 {
                font-size: 17px;
            }

            .feature-content p {
                font-size: 13px;
            }

            .footer {
                padding: 50px 20px 25px;
            }

            .footer h5 {
                font-size: 17px;
                margin-bottom: 20px;
            }

            .footer ul li {
                margin-bottom: 10px;
            }

            .footer ul li a {
                font-size: 13px;
            }

            .footer p {
                font-size: 13px;
            }

            .footer-social {
                margin-top: 20px;
            }

            .footer-bottom {
                margin-top: 35px;
                padding-top: 20px;
                text-align: center;
            }

            .footer-bottom .col-md-6 {
                text-align: center !important;
                margin-bottom: 15px;
            }

            .footer-selects {
                justify-content: center;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - MOBILE LARGE (576px - 767px)
           ============================================ */
        @media (min-width: 576px) and (max-width: 767px) {
            .top-banner {
                font-size: 12px;
                padding: 10px 15px;
            }

            .top-banner .support-text {
                font-size: 11px;
            }

            .top-banner .promo-text {
                font-size: 11px;
            }

            .top-banner .close-btn {
                font-size: 20px;
            }

            .navbar {
                padding: 12px 0;
            }

            .navbar-brand {
                font-size: 17px;
            }

            .logo-circle {
                width: 38px;
                height: 38px;
                font-size: 17px;
            }

            .navbar-nav {
                margin-top: 15px;
            }

            .navbar-nav .nav-link {
                margin: 5px 0;
                padding: 12px 20px;
                text-align: center;
                font-size: 15px;
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }

            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }

            .navbar-nav .nav-link::after {
                display: none;
            }

            .nav-icons {
                margin-top: 15px;
                justify-content: center;
                gap: 20px;
                font-size: 18px;
            }

            .hero-section {
                padding: 50px 20px;
            }

            .hero-section h1 {
                font-size: 34px;
                margin-bottom: 15px;
            }

            .breadcrumb-item {
                font-size: 14px;
            }

            .contact-section {
                padding: 50px 20px;
            }

            .section-title {
                font-size: 28px;
                margin-bottom: 12px;
            }

            .form-text-muted {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .form-label {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .form-control {
                padding: 12px 15px;
                font-size: 14px;
            }

            .form-control.is-invalid,
            .form-control.is-valid {
                background-size: calc(0.7em + 0.375rem) calc(0.7em + 0.375rem);
            }

            textarea.form-control {
                min-height: 130px;
            }

            .btn-submit {
                width: 100%;
                padding: 14px 30px;
                font-size: 15px;
            }

            .invalid-feedback {
                font-size: 0.8em;
            }

            .alert-custom {
                padding: 13px 16px;
                font-size: 13px;
                margin-bottom: 18px;
            }

            .info-card {
                padding: 25px;
                margin-bottom: 20px;
            }

            .info-card h3 {
                font-size: 22px;
                margin-bottom: 14px;
            }

            .info-card p {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .social-icons {
                gap: 12px;
                margin-top: 16px;
            }

            .social-icon {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }

            .map-section {
                height: 300px;
            }

            .features-section {
                padding: 40px 20px;
            }

            .feature-box {
                margin-bottom: 20px;
                gap: 15px;
                padding: 12px;
            }

            .feature-icon {
                width: 55px;
                height: 55px;
            }

            .feature-icon i {
                font-size: 36px !important;
            }

            .feature-content h4 {
                font-size: 16px;
                margin-bottom: 6px;
            }

            .feature-content p {
                font-size: 13px;
            }

            .footer {
                padding: 40px 20px 20px;
            }

            .footer h5 {
                font-size: 17px;
                margin-bottom: 20px;
            }

            .footer ul li {
                margin-bottom: 10px;
            }

            .footer ul li a {
                font-size: 13px;
            }

            .footer p {
                font-size: 13px;
            }

            .footer-brand strong {
                font-size: 20px !important;
            }

            .footer-social {
                gap: 12px;
                margin-top: 18px;
            }

            .footer-social i {
                width: 38px;
                height: 38px;
                font-size: 16px;
            }

            .footer .col-lg-3,
            .footer .col-lg-2,
            .footer .col-md-6 {
                margin-bottom: 30px;
            }

            .footer-bottom {
                margin-top: 30px;
                padding-top: 20px;
                text-align: center;
                font-size: 13px;
            }

            .footer-bottom .col-md-6 {
                text-align: center !important;
                margin-bottom: 12px;
            }

            .footer-bottom p {
                font-size: 13px;
            }

            .footer-selects {
                justify-content: center;
            }

            .footer-selects p {
                font-size: 13px;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - MOBILE MEDIUM (400px - 575px)
           ============================================ */
        @media (min-width: 400px) and (max-width: 575px) {
            .top-banner {
                font-size: 11px;
                padding: 10px 12px;
            }

            .top-banner .support-text {
                display: none;
            }

            .top-banner .promo-text {
                font-size: 10px;
                padding-right: 5px;
            }

            .top-banner .close-btn {
                font-size: 18px;
                padding: 0 5px;
            }

            .navbar {
                padding: 12px 0;
            }

            .navbar .container {
                padding: 0 15px;
            }

            .navbar-brand {
                font-size: 16px;
            }

            .logo-circle {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .navbar-nav {
                margin-top: 15px;
            }

            .navbar-nav .nav-link {
                margin: 5px 0;
                padding: 12px 20px;
                font-size: 15px;
                text-align: center;
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }

            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }

            .navbar-nav .nav-link::after {
                display: none;
            }

            .nav-icons {
                margin-top: 15px;
                gap: 18px;
                font-size: 18px;
                justify-content: center;
            }

            .hero-section {
                padding: 40px 15px;
            }

            .hero-section h1 {
                font-size: 30px;
                margin-bottom: 12px;
            }

            .breadcrumb-item {
                font-size: 13px;
            }

            .contact-section {
                padding: 40px 15px;
            }

            .section-title {
                font-size: 24px;
                margin-bottom: 10px;
            }

            .form-text-muted {
                font-size: 13px;
                margin-bottom: 25px;
                line-height: 1.5;
            }

            .form-label {
                font-size: 13px;
                margin-bottom: 7px;
            }

            .form-control {
                padding: 11px 14px;
                font-size: 14px;
                border-radius: 5px;
            }

            .form-control.is-invalid,
            .form-control.is-valid {
                padding-right: calc(1.3em + 0.75rem);
                background-size: calc(0.65em + 0.375rem) calc(0.65em + 0.375rem);
            }

            textarea.form-control {
                min-height: 120px;
            }

            .btn-submit {
                width: 100%;
                padding: 13px 30px;
                font-size: 14px;
                border-radius: 5px;
            }

            .invalid-feedback {
                font-size: 0.75em;
            }

            .alert-custom {
                padding: 12px 15px;
                font-size: 12px;
                margin-bottom: 16px;
                border-radius: 5px;
            }

            .info-card {
                padding: 20px;
                margin-bottom: 18px;
                border-radius: 8px;
            }

            .info-card h3 {
                font-size: 20px;
                margin-bottom: 12px;
            }

            .info-card p {
                font-size: 13px;
                margin-bottom: 7px;
                line-height: 1.6;
            }

            .social-icons {
                gap: 12px;
                margin-top: 15px;
            }

            .social-icon {
                width: 42px;
                height: 42px;
                font-size: 17px;
            }

            .map-section {
                height: 250px;
            }

            .features-section {
                padding: 35px 15px;
            }

            .feature-box {
                margin-bottom: 18px;
                gap: 12px;
                padding: 10px;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
            }

            .feature-icon i {
                font-size: 32px !important;
            }

            .feature-content h4 {
                font-size: 15px;
                margin-bottom: 5px;
            }

            .feature-content p {
                font-size: 12px;
                line-height: 1.4;
            }

            .footer {
                padding: 35px 15px 15px;
            }

            .footer .container {
                padding: 0 10px;
            }

            .footer h5 {
                font-size: 16px;
                margin-bottom: 18px;
            }

            .footer ul li {
                margin-bottom: 9px;
            }

            .footer ul li a {
                font-size: 12px;
            }

            .footer ul li[style] {
                font-size: 12px !important;
            }

            .footer p {
                font-size: 12px;
                line-height: 1.6;
            }

            .footer-brand {
                margin-bottom: 18px;
            }

            .footer-brand strong {
                font-size: 18px !important;
            }

            .footer-social {
                gap: 10px;
                margin-top: 16px;
            }

            .footer-social i {
                width: 36px;
                height: 36px;
                font-size: 15px;
            }

            .footer .col-lg-3,
            .footer .col-lg-2,
            .footer .col-md-6,
            .footer .col-6 {
                margin-bottom: 28px;
            }

            .footer-bottom {
                margin-top: 28px;
                padding-top: 18px;
                font-size: 12px;
                text-align: center;
            }

            .footer-bottom .row {
                gap: 10px;
            }

            .footer-bottom .col-md-6 {
                text-align: center !important;
                margin-bottom: 10px;
            }

            .footer-bottom p {
                font-size: 12px;
                margin-bottom: 5px;
            }

            .footer-selects {
                justify-content: center;
                gap: 10px;
            }

            .footer-selects p {
                font-size: 12px;
            }

            .footer-selects select {
                padding: 6px 12px;
                font-size: 12px;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - MOBILE SMALL (320px - 399px)
           ============================================ */
        @media (max-width: 399px) {
            .top-banner {
                font-size: 10px;
                padding: 7px 10px;
            }

            .top-banner .support-text {
                display: none;
            }

            .top-banner .promo-text {
                font-size: 9px;
                padding-right: 3px;
                line-height: 1.3;
            }

            .top-banner .promo-text strong {
                font-size: 9px;
            }

            .top-banner .close-btn {
                font-size: 16px;
                padding: 0 3px;
            }

            .navbar {
                padding: 10px 0;
            }

            .navbar .container {
                padding: 0 12px;
            }

            .navbar-brand {
                font-size: 15px;
            }

            .logo-circle {
                width: 32px;
                height: 32px;
                font-size: 15px;
                box-shadow: 0 2px 6px rgba(61, 31, 15, 0.3);
            }

            .navbar-toggler {
                padding: 6px;
            }

            .navbar-toggler-icon {
                width: 22px;
            }

            .navbar-toggler-icon::before,
            .navbar-toggler-icon::after {
                width: 22px;
            }

            .navbar-nav {
                margin-top: 12px;
            }

            .navbar-nav .nav-link {
                padding: 10px 15px;
                font-size: 14px;
                margin: 4px 0;
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }

            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }

            .navbar-nav .nav-link::after {
                display: none;
            }

            .nav-icons {
                margin-top: 12px;
                gap: 15px;
                font-size: 17px;
                justify-content: center;
            }

            .hero-section {
                padding: 35px 12px;
            }

            .hero-section::before,
            .hero-section::after {
                width: 100px;
                height: 100px;
            }

            .hero-section h1 {
                font-size: 26px;
                margin-bottom: 10px;
                line-height: 1.2;
            }

            .breadcrumb {
                font-size: 12px;
            }

            .breadcrumb-item {
                font-size: 12px;
            }

            .breadcrumb-item + .breadcrumb-item::before {
                font-size: 12px;
            }

            .contact-section {
                padding: 35px 12px;
            }

            .section-title {
                font-size: 22px;
                margin-bottom: 8px;
                line-height: 1.3;
            }

            .form-text-muted {
                font-size: 12px;
                margin-bottom: 22px;
                line-height: 1.5;
            }

            .form-label {
                font-size: 12px;
                margin-bottom: 6px;
            }

            .form-control {
                padding: 10px 12px;
                font-size: 13px;
                border-radius: 5px;
            }

            .form-control.is-invalid,
            .form-control.is-valid {
                padding-right: calc(1.2em + 0.75rem);
                background-size: calc(0.6em + 0.375rem) calc(0.6em + 0.375rem);
                background-position: right calc(0.3em + 0.1875rem) center;
            }

            textarea.form-control {
                min-height: 110px;
            }

            .btn-submit {
                width: 100%;
                padding: 12px 25px;
                font-size: 14px;
                border-radius: 5px;
            }

            .btn-submit.loading::after {
                width: 14px;
                height: 14px;
                margin-left: -7px;
                margin-top: -7px;
                border-width: 2px;
            }

            .invalid-feedback {
                font-size: 0.7em;
                margin-top: 0.2rem;
            }

            .alert-custom {
                padding: 11px 13px;
                font-size: 11px;
                margin-bottom: 15px;
                border-radius: 5px;
            }

            .info-card {
                padding: 18px;
                margin-bottom: 16px;
                border-radius: 8px;
            }

            .info-card h3 {
                font-size: 18px;
                margin-bottom: 10px;
            }

            .info-card p {
                font-size: 12px;
                margin-bottom: 6px;
                line-height: 1.5;
            }

            .social-icons {
                gap: 10px;
                margin-top: 12px;
            }

            .social-icon {
                width: 38px;
                height: 38px;
                font-size: 15px;
            }

            .map-section {
                height: 220px;
            }

            .features-section {
                padding: 30px 12px;
            }

            .feature-box {
                margin-bottom: 16px;
                gap: 10px;
                padding: 8px;
            }

            .feature-icon {
                width: 45px;
                height: 45px;
            }

            .feature-icon i {
                font-size: 28px !important;
            }

            .feature-content h4 {
                font-size: 14px;
                margin-bottom: 4px;
            }

            .feature-content p {
                font-size: 11px;
                line-height: 1.4;
            }

            .footer {
                padding: 30px 12px 12px;
            }

            .footer .container {
                padding: 0 8px;
            }

            .footer h5 {
                font-size: 15px;
                margin-bottom: 15px;
            }

            .footer ul {
                padding-left: 0;
            }

            .footer ul li {
                margin-bottom: 8px;
            }

            .footer ul li a {
                font-size: 11px;
            }

            .footer ul li[style] {
                font-size: 11px !important;
            }

            .footer p {
                font-size: 11px;
                line-height: 1.6;
            }

            .footer-brand {
                margin-bottom: 15px;
                gap: 10px;
            }

            .footer-brand strong {
                font-size: 16px !important;
                line-height: 1.3;
            }

            .footer-social {
                gap: 8px;
                margin-top: 14px;
            }

            .footer-social i {
                width: 34px;
                height: 34px;
                font-size: 14px;
            }

            .footer .col-lg-3,
            .footer .col-lg-2,
            .footer .col-md-6,
            .footer .col-6 {
                margin-bottom: 25px;
            }

            .footer .col-6:last-child,
            .footer .col-md-6:last-child {
                margin-bottom: 0;
            }

            .footer-bottom {
                margin-top: 25px;
                padding-top: 15px;
                font-size: 11px;
                text-align: center;
            }

            .footer-bottom .row {
                gap: 8px;
            }

            .footer-bottom .col-md-6 {
                text-align: center !important;
                margin-bottom: 8px;
            }

            .footer-bottom p {
                font-size: 11px;
                margin-bottom: 4px;
                line-height: 1.4;
            }

            .footer-selects {
                justify-content: center;
                gap: 8px;
            }

            .footer-selects p {
                font-size: 11px;
                line-height: 1.4;
            }

            .footer-selects p a {
                font-size: 11px;
            }

            .footer-selects select {
                padding: 5px 10px;
                font-size: 11px;
                border-radius: 4px;
            }

            /* Extra small adjustments */
            .row {
                margin-right: -10px;
                margin-left: -10px;
            }

            .col-md-6,
            .col-lg-6 {
                padding-right: 10px;
                padding-left: 10px;
            }

            .mb-3 {
                margin-bottom: 14px !important;
            }

            .mb-4 {
                margin-bottom: 18px !important;
            }

            .mb-5 {
                margin-bottom: 22px !important;
            }
        }

        /* ============================================
           DESKTOP LARGE SCREENS (min 1200px)
           ============================================ */
        @media (min-width: 1200px) {
            .container {
                max-width: 1200px;
            }

            .hero-section h1 {
                font-size: 52px;
            }

            .section-title {
                font-size: 38px;
            }
        }

        /* ============================================
           EXTRA RESPONSIVE FIXES FOR ALL DEVICES
           ============================================ */
        
        /* Container padding fixes for mobile */
        @media (max-width: 767px) {
            .container {
                padding-right: 15px;
                padding-left: 15px;
            }
        }

        @media (max-width: 399px) {
            .container {
                padding-right: 12px;
                padding-left: 12px;
            }
        }

        /* Ensure form elements don't overflow */
        @media (max-width: 575px) {
            .form-control,
            .btn-submit {
                max-width: 100%;
                box-sizing: border-box;
            }

            .row {
                margin-right: -12px;
                margin-left: -12px;
            }

            .col-md-6 {
                padding-right: 12px;
                padding-left: 12px;
            }
        }

        /* Fix for very small screens (iPhone SE, Galaxy Fold) */
        @media (max-width: 360px) {
            .hero-section h1 {
                font-size: 24px;
            }

            .section-title {
                font-size: 20px;
            }

            .logo-circle {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }

            .navbar-brand {
                font-size: 14px;
            }

            .info-card h3 {
                font-size: 16px;
            }

            .feature-content h4 {
                font-size: 13px;
            }

            .btn-submit {
                padding: 11px 20px;
                font-size: 13px;
            }

            .footer-brand strong {
                font-size: 15px !important;
            }
        }

        /* Landscape orientation fixes for mobile */
        @media (max-width: 767px) and (orientation: landscape) {
            .hero-section {
                padding: 40px 20px;
            }

            .hero-section h1 {
                font-size: 28px;
            }

            .contact-section {
                padding: 40px 20px;
            }

            .map-section {
                height: 350px;
            }
        }

        /* Fix for tablet landscape mode */
        @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
            .navbar-nav .nav-link {
                margin: 0 10px;
                font-size: 14px;
                padding: 7px 12px;
            }

            .hero-section h1 {
                font-size: 38px;
            }

            .section-title {
                font-size: 30px;
            }
        }

        /* Smooth transitions for all responsive changes */
        @media (prefers-reduced-motion: no-preference) {
            .form-control,
            .btn-submit,
            .info-card,
            .feature-box,
            .social-icon,
            .navbar-nav .nav-link {
                transition: all 0.3s ease;
            }
        }