
        :root {
            --primary-color: #f25f70;
            --primary-hover: #e64555;
            --dark-blue: #242f67;
            --bg-light: #f9fafc;
        }

        /* --- Global Helpers & Typography --- */
        #chat-btn img {
            width: 40px;
            height: 40px;
        }

        /* --- Scroll To Top Button --- */
        #scroll-to-top {
            position: fixed;
            right: 30px;
            bottom: 40px;
            z-index: 9990;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        #scroll-to-top img {
            width: 40px;
            height: auto;
            cursor: pointer;
        }

        /* --- Modals & Login Interface --- */
        .modal {
            background: rgba(0, 0, 0, 0.55);
            z-index: 10000;
        }
        .modal-content {
            background: #ffffff;
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
            animation: scaleIn 0.3s ease;
        }
        @keyframes scaleIn {
            from { transform: scale(0.95); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        /* --- Custom Inputs & Buttons --- */
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(242, 95, 112, 0.15);
        }
        .btn-submit-custom {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
            border: none;
            padding: 12px;
            border-radius: 14px;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .btn-submit-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(242, 95, 112, 0.45);
            color: #fff;
        }

        /* --- Header & Language Selector --- */
        .flag-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-size: cover;
            display: inline-block;
        }
        .lang-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
        }
        .lang-dropdown {
            position: relative;
            margin-right: 12px;
        }
        .lang-menu {
            display: none;
            position: absolute;
            right: 0;
            background: #e7e7e7;
            padding: 8px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 1000;
        }
        .lang-menu.show { display: block; }
        .lang-menu li { list-style: none; margin: 6px 0; }

        /* --- Chat Widget --- */
        #chat-btn {
            position: fixed;
            bottom: 100px;
            right: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            background: #ff5757;
            cursor: pointer;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease;
        }
        #chat-btn:hover { transform: scale(1.08); }
        .chat-widget {
            display: none;
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 320px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
            flex-direction: column;
            z-index: 9999;
            overflow: hidden;
        }
        .chat-footer {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 10px;
            border-top: 1px solid #eee;
        }
        .quick-contact { display: flex; gap: 6px; }
        .quick-contact button {
            flex: 1;
            border: none;
            border-radius: 20px;
            padding: 6px;
            font-size: 11px;
            font-weight: bold;
            color: white;
        }
        .quick-contact button:nth-child(1) { background: #06C755; }
        .quick-contact button:nth-child(2) { background: #25D366; }
        .quick-contact button:nth-child(3) { background: #0068FF; }
        .quick-contact button:nth-child(4) { background: #5a6268; }

        .chat-input-row { display: flex; gap: 8px; align-items: center; }

        /* --- Services Dropdown --- */
        .services-dropdown { position: relative; display: inline-block; }
        .services-link {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            padding-bottom: 6px;
        }
        .services-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--bg-light);
            min-width: 220px;
            padding: 12px 0;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.18);
            display: none;
            z-index: 3000;
        }
        .services-dropdown:hover .services-menu,
        .services-dropdown.active .services-menu { display: block; }
        .services-menu a {
            display: block;
            padding: 10px 18px;
            font-size: 15px;
            color: var(--dark-blue);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .services-menu a:hover {
            background-color: var(--dark-blue);
            color: #ffffff;
        }

        /* --- Infinite Carousel --- */
        .carousel-wrapper { width: 100%; overflow: hidden; padding: 20px 0; }
        .carousel-slider { display: flex; overflow: hidden; user-select: none; }
        .carousel-track {
            display: flex;
            gap: 30px;
            width: max-content;
            animation: scrollContacts 40s linear infinite;
        }
        .carousel-card flex-shrink: 0;
        .carousel-card img {
            width: 400px;
            height: 280px;
            object-fit: cover;
            border-radius: 12px;
            border: 1px solid #ddd;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .carousel-card img:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border-color: #003366;
        }
        .carousel-wrapper:hover .carousel-track { animation-play-state: paused; }

        @keyframes scrollContacts {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* --- Responsiveness --- */
        @media (max-width: 767px) {
            .location-info {
                background: #f9f9f9;
                border-radius: 10px;
                padding: 14px;
            }
            .flag-circle { width: 26px; height: 26px; }
            .carousel-card img { width: 280px; height: 200px; }
        }
        
/* Container adjustments */
.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

/* Control Arrow Base Styling */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(36, 47, 103, 0.85); /* Matches theme dark blue */
  color: #ffffff;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.85;
}

.carousel-arrow:hover {
  background: #f25f70; /* Brand accent color on hover */
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

/* Position Arrows on Edges */
.prev-arrow {
  left: 15px;
}

.next-arrow {
  right: 15px;
}

/* Mobile Responsiveness for Arrows */
@media (max-width: 576px) {
  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .prev-arrow { left: 5px; }
  .next-arrow { right: 5px; }
}

/* Menu Styling */
.office-menu .nav-link {
    color: #444;
    transition: all 0.25s ease;
}
.office-menu .nav-link:hover {
    background-color: rgba(36, 47, 103, 0.08);
    color: #242f67;
}
.office-menu .nav-link.active {
    background-color: #242f67 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(36, 47, 103, 0.25);
}

/* Fixed Media Container to prevent layout shift */
.office-media {
    height: 260px;
    background-color: #f8f9fa;
}
.office-media img, 
.office-media iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile horizontal tab styling */
@media (max-width: 767px) {
    .office-menu {
        border-bottom: 2px solid #dee2e6;
    }
    .office-menu .nav-link {
        white-space: nowrap;
    }
}

.notice-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  margin-top: 28px;
  border: 1px solid #ffd6d6;
  border-left: 5px solid #e64555;
  border-radius: 16px;
  background: #fff8f8;
  color: #1f2937;
  content-visibility: auto;
  contain-intrinsic-size: 160px;
}

.notice-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.notice-body {
  min-width: 0;
}

.notice-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffe3e6;
  color: #b42318;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.notice-title {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 800;
  color: #242f67;
}

.notice-text,
.notice-contact,
.notice-warning {
  margin: 0 0 10px;
  line-height: 1.7;
  font-size: 0.97rem;
}

.notice-contact {
  font-weight: 600;
}

.notice-phone {
  color: #e64555;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.notice-phone:hover,
.notice-phone:focus {
  text-decoration: underline;
}

.notice-channels {
  color: #6b7280;
  font-weight: 500;
}

.notice-warning {
  margin-bottom: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #f3d0d0;
  color: #7a1f1f;
}

@media (max-width: 767.98px) {
  .notice-card {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 16px;
    gap: 14px;
  }

  .notice-icon {
    display: flex;
    justify-content: center;
  }

  .notice-title {
    font-size: 1.05rem;
  }

  .notice-text,
  .notice-contact,
  .notice-warning {
    font-size: 0.94rem;
    line-height: 1.65;
  }
}



        .ac-contact-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }
        .ac-contact-maps {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .ac-location-row {
            display: flex;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }
        .ac-location-row:hover {
            box-shadow: 0 10px 30px rgba(31, 47, 99, 0.08);
            border-color: #cbd5e1;
        }
        .ac-location-map {
            flex: 1;
            min-height: 280px;
            background: #f1f5f9;
        }
        .ac-location-info {
            flex: 1;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .ac-office-title {
            font-size: 1.35rem;
            font-weight: 800;
            color: #1f2f63;
            margin-bottom: 0.75rem;
        }
        .ac-contact-detail {
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        .ac-contact-detail strong {
            color: #1f2f63;
        }
        .ac-contact-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 0.5rem;
        }
        .ac-action-btn {
            background: #f8fafc;
            border: 1px solid #cbd5e1;
            color: #1f2f63;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s ease;
        }
        .ac-action-btn:hover {
            background: #1f2f63;
            color: #ffffff;
            border-color: #1f2f63;
        }
        .ac-action-btn.primary {
            background: linear-gradient(135deg, #f25f70, #d94c5c);
            color: #ffffff;
            border: none;
            box-shadow: 0 4px 12px rgba(217, 76, 92, 0.2);
        }
        .ac-action-btn.primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 15px rgba(217, 76, 92, 0.3);
        }

        @media (max-width: 992px) {
            .ac-location-row {
                flex-direction: column;
            }
            .ac-location-map {
                height: 250px;
                min-height: 250px;
            }
            .ac-location-info {
                padding: 1.5rem;
            }
        }