/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F8FAFC;
    line-height: 1.6;
    color: #1E293B;
    font-weight: 400;
}

/* Professional Color Scheme */
:root {
    --primary-color: #1E40AF;
    --primary-dark: #1E3A8A;
    --primary-light: #3B82F6;
    --accent-color: #0F766E;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --background-light: #F8FAFC;
    --background-white: #FFFFFF;
    --border-color: #E2E8F0;
    --border-light: #EEE;
    --neutral: #333;
    --info: #007bff;
    --info-light: #CFE8FF;
    --success: #28a745;
    --danger: #dc3545;
    --muted: #555;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    /* Font size */
    --font-xl: 3.5rem;
    --font-lg: 2.5rem;
    --font-md: 1.5rem;
    --font-base: 1.1rem;
    --font-sm: 0.95rem;
    --font-xs: 0.85rem;
}

/* Override Bootstrap navbar classes */
.navbar.navbar-light.bg-light {
    background-color: #23395d !important; /* biru navy soft */
    box-shadow: 0 2px 10px rgba(35, 57, 93, 0.08) !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 0.3rem 1rem !important; /* kurangi padding */
    min-height: 50px !important; /* set tinggi minimum */
}

.navbar.navbar-light .navbar-brand {
    color: #ffffff !important; /* putih untuk kontras dengan background biru */
    font-weight: 700 !important;
    font-size: 1.1rem !important; /* kurangi ukuran font */
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    padding: 0.25rem 0 !important; /* kurangi padding */
}

.navbar.navbar-light .navbar-brand:hover {
    color: #3B82F6 !important; /* biru light saat hover */
}

.navbar.navbar-light .navbar-nav .nav-link {
    color: #ffffff !important; /* putih untuk kontras dengan background biru */
    font-weight: 500 !important;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    padding: 0.3rem 0.75rem !important; /* kurangi padding */
    font-size: 0.9rem !important; /* kurangi ukuran font */
}

.navbar.navbar-light .navbar-nav .nav-link:hover {
    color: #3B82F6 !important; /* biru light saat hover */
}

.navbar.navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5) !important;
    padding: 0.25rem 0.5rem !important; /* kurangi padding */
}

.navbar.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Navbar Styles - dengan selector yang lebih spesifik */
.navbar {
    background-color: #23395d !important; /* biru navy soft */
    box-shadow: 0 2px 10px rgba(35, 57, 93, 0.08) !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 0.3rem 1rem !important; /* kurangi padding */
    min-height: 50px !important; /* set tinggi minimum */
}

.navbar-brand {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    color: #ffffff !important; /* putih untuk kontras dengan background biru */
    font-weight: 700 !important;
    font-size: 1.1rem !important; /* kurangi ukuran font */
    transition: all 0.3s ease !important;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    padding: 0.25rem 0 !important; /* kurangi padding */
}

.navbar-brand img {
    width: 28px !important; /* kurangi ukuran logo */
    height: auto !important;
    margin-right: 8px !important; /* kurangi margin */
    border-radius: 6px !important;
}

.navbar-brand:hover {
    color: #3B82F6 !important; /* biru light saat hover */
    transform: translateY(-1px) !important;
}

.navbar-nav .nav-link {
    color: #ffffff !important; /* putih untuk kontras dengan background biru */
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    padding: 0.3rem 0.75rem !important; /* kurangi padding */
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-size: 0.9rem !important; /* kurangi ukuran font */
}

.navbar-nav .nav-link:hover {
    color: #3B82F6 !important; /* biru light saat hover */
}

.navbar-nav .nav-link::after {
    content: '' !important;
    position: absolute !important;
    width: 0 !important;
    height: 2px !important;
    bottom: 0 !important;
    left: 50% !important;
    background-color: #3B82F6 !important; /* biru light untuk underline */
    transition: all 0.3s ease !important;
    transform: translateX(-50%) !important;
}

.navbar-nav .nav-link:hover::after {
    width: 80% !important;
}

/* Tambahkan margin top untuk main content agar tidak tertutup navbar */
main {
    margin-top: 60px !important; /* sesuaikan dengan tinggi navbar */
}

.dropdown-menu {
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 15px -3px rgba(35, 57, 93, 0.08) !important;
    padding: 0.5rem 0 !important;
}

.dropdown-item {
    color: #23395d !important; /* biru navy untuk text di dropdown */
    font-weight: 500 !important;
    padding: 0.5rem 1rem !important; /* kurangi padding */
    transition: all 0.3s ease !important;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-size: 0.85rem !important; /* kurangi ukuran font */
}

.dropdown-item:hover {
    background-color: #F8FAFC !important;
    color: #F59E0B !important; /* orange saat hover */
}

/* Hero Section */
.hero-section {
    padding: 0;
    margin-bottom: 4rem;
}

.hero-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image {
    width: 100%;
    height: 70vh !important; /* 70% dari viewport height */
    min-height: 500px !important; /* minimum height untuk layar kecil */
    max-height: 800px !important; /* maximum height untuk layar besar */
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 600px;
    width: 90%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-cta {
    background: #3B82F6 !important;
    color: #fff !important;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    padding: 0.85rem 2.2rem;
    font-size: 1.1rem;
    transition: all 0.18s;
    box-shadow: 0 2px 8px rgba(30,64,175,0.08);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-cta:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
}

/* Section Styles */
.how-it-works,
.featured-facilities {
    padding: 2.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Cards */
.process-card {
    background: var(--background-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.process-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.process-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.process-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
    transform: translateX(4px);
}

/* Facility Cards */
.facility-card {
    background: var(--background-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.facility-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.bookmark-form {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.bookmark-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bookmark-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.facility-content {
    padding: 1.5rem;
}

.facility-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.facility-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.facility-title a:hover {
    color: var(--primary-color);
}

.facility-location {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3B82F6 !important;
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.booking-btn:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* View All Button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #3B82F6 !important;
    color: #fff !important;
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-content {
        padding: 1rem 0.5rem;
    }
    .hero-image {
        height: 45vh !important;
        min-height: 220px !important;
    }
    .process-card, .facility-card {
        margin-bottom: 1.2rem;
        padding: 1.2rem 0.8rem;
    }
    .facility-image {
        height: 160px;
    }
    .facility-content {
        padding: 1rem 0.5rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-header {
        margin-bottom: 1.5rem;
    }
    .view-all-btn {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        margin-bottom: 2rem;
    }
    .hero-title {
        font-size: 1.3rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-content {
        max-width: 98vw;
        padding: 0.5rem 0.2rem;
    }
    .process-card, .facility-card {
        padding: 0.8rem 0.3rem;
        margin-bottom: 1rem;
    }
    .facility-image {
        height: 110px;
    }
    .facility-title {
        font-size: 1rem;
    }
    .facility-location {
        font-size: 0.85rem;
    }
    .booking-btn, .view-all-btn {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
    .section-title {
        font-size: 1.2rem;
    }
    .section-header {
        margin-bottom: 1rem;
    }
    .empty-state h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.1rem;
    }
    .hero-content {
        padding: 0.2rem 0.1rem;
    }
    .hero-image {
        height: 30vh !important;
        min-height: 120px !important;
    }
    .process-card, .facility-card {
        padding: 0.5rem 0.1rem;
        margin-bottom: 0.7rem;
    }
    .facility-image {
        height: 70px;
    }
    .facility-title {
        font-size: 0.95rem;
    }
    .facility-location {
        font-size: 0.75rem;
    }
    .booking-btn, .view-all-btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.7rem;
    }
    .section-title {
        font-size: 1rem;
    }
    .section-header {
        margin-bottom: 0.5rem;
    }
    .empty-state h3 {
        font-size: 1rem;
    }
    .process-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

@media (min-width: 1200px) {
    .hero-image {
        height: 75vh !important; /* sedikit lebih besar di layar besar */
        max-height: 900px !important;
    }
}

/* Pastikan semua heading dan button juga pakai Poppins */
h1, h2, h3, h4, h5, h6, .btn, .hero-title, .section-title {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.aesthetic-image-container {
    height: 200px; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    background-color: #ffffff;
}

.aesthetic-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 8px;
}

.large-logo-aesthetic {
    max-width: 80%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
}

.section-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.section-main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 60px;
    background-color: #007bff; 
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 25px;
}

.about-section {
    padding: 30px 0;
    border-bottom: 1px solid #eee; 
}

.about-section:last-child {
    border-bottom: none;
}

.about-image-frame {
    position: relative;
    width: 100%;
    padding-top: 65%; 
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); 
    background-color: #f0f0f0; 
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.about-image-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 12px;
}

.primary-image-frame:hover {
    transform: scale(1.03); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.secondary-image-frame:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.secondary-image-frame {
    margin-bottom: 15px;
}

.secondary-image-frame:hover {
    transform: rotate(0deg) scale(1.03); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.about-large-logo {
    max-width: 60%; 
    height: auto;
    object-fit: contain;
    padding: 20px; 
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

p.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #666;
}

@media (max-width: 767.98px) {
    .about-image-frame {
        padding-top: 75%; 
    }
    .primary-image-frame, .secondary-image-frame {
        transform: rotate(0deg); 
        margin-top: 0;
        margin-bottom: 0;
    }
    .about-large-logo {
        max-width: 80%; 
    }
    .section-main-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
}

.mission-list {
    list-style-position: inside; 
    padding-left: 0; 
    margin-left: 15px;
}

.mission-list li {
    margin-bottom: 10px; 
    line-height: 1.6;
    font-size: inherit; 
    font-weight: small; 
}

.lead.mission-list li {
    font-size: inherit; 
    font-weight: inherit; 
}

/* Navbar & Footer */
.navbar, .navbar.navbar-light.bg-light {
    background: #23395d !important;
    color: #fff !important;
    border: none !important;
}
footer {
    background: #23395d !important;
    color: #fff !important;
}
.btn, .booking-btn, .view-all-btn, .process-link, .facility-card .booking-btn {
    background: #3B82F6 !important;
    color: #fff !important;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    padding: 0.85rem 2.2rem;
    font-size: 1.1rem;
    transition: all 0.18s;
    box-shadow: 0 2px 8px rgba(30,64,175,0.08);
}
.btn:hover, .booking-btn:hover, .view-all-btn:hover, .process-link:hover, .facility-card .booking-btn:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
}
.btn-secondary, .btn-outline, .btn-white {
    background: #fff !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
}
.btn-secondary:hover, .btn-outline:hover, .btn-white:hover {
    background: var(--primary-light) !important;
    color: #fff !important;
    border: 2px solid var(--primary-dark) !important;
}

/* --- CONTACT US PAGE LAYOUT STYLE (GRID/CARD/UTAMA) --- */
.contactus-hero-bg {
    background: linear-gradient(135deg, #f4f6fa 60%, #e3eafc 100%);
    min-height: 100vh;
}
.contactus-card {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(30,64,175,0.10);
    max-width: 1100px;
    overflow: hidden;
    border: 1.2px solid #e2e8f0;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0 0.5rem;
}
.row.g-0.align-items-stretch.flex-lg-nowrap.flex-wrap {
    gap: 0;
}
.col-lg-6.p-5 {
    padding: 2.5rem 2.2rem !important;
}
.contactus-divider {
    width: 1.2px;
    background: linear-gradient(180deg, #e3eafc 0%, #b6c6e6 100%);
    border-radius: 2px;
    min-height: 90%;
    margin: 2.5rem 0;
    opacity: 0.7;
}
@media (max-width: 1400px) {
    .contactus-card { max-width: 99vw; }
}
@media (max-width: 991px) {
    .contactus-card { max-width: 99vw; }
    .col-lg-6.p-5 { padding: 1.5rem 1rem !important; }
}
@media (max-width: 767px) {
    .contactus-divider { display: none; }
    .col-lg-6.p-5 { padding: 1rem 0.5rem !important; }
}

/* Fix: btn-danger harus tetap merah meski ada override global .btn */
.btn-danger {
    background: #dc3545 !important;
    color: #fff !important;
}

/* Hilangkan efek hover/klik/selected pada event booking di calendar, warna tetap biru */
.fc-event,
.fc-list-event,
.booking-event,
.fc-event:active,
.fc-list-event:active,
.booking-event:active,
.fc-event:focus,
.fc-list-event:focus,
.booking-event:focus,
.fc-event[aria-selected="true"],
.fc-list-event[aria-selected="true"],
.booking-event[aria-selected="true"],
.fc-event.fc-event-selected,
.fc-list-event.fc-event-selected {
    background: #2046b3 !important;
    color: #fff !important;
    box-shadow: none !important;
    filter: none !important;
    outline: none !important;
    border: none !important;
    cursor: default !important;
}

/* --- Contact Us Custom Styles (migrated from contact_us.blade.php) --- */
.contactus-hero-bg {
    background: #f4f6fa;
    min-height: 100vh;
    padding-top: 1.2rem !important;
}
.contactus-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(30,64,175,0.10);
    max-width: 950px;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
}
.contactus-header {
    background: #23395d;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    min-height: 56px;
}
.contactus-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #23395d;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}
.contactus-desc {
    color: #334155;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}
.contactus-icon {
    width: 36px;
    height: 36px;
    background: #e6eefb;
    color: #23395d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-top: 2px;
}
.contactus-form {
    border: 1.5px solid #e2e8f0;
    min-height: 320px;
}
.contactus-form .form-label {
    font-weight: 500;
    color: #23395d;
    font-size: 1rem;
}
.contactus-form .form-control {
    font-size: 1rem;
    border-radius: 10px;
    border: 1.5px solid #dbeafe;
    background: #f8fafc;
    color: #23395d;
    box-shadow: none;
    transition: border-color 0.18s;
}
.contactus-form .form-control:focus {
    border-color: #3B82F6;
    background: #fff;
    box-shadow: 0 0 0 2px #3B82F633;
}
.contactus-form .btn-primary {
    background: #3B82F6;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(30,64,175,0.08);
    transition: background 0.18s;
}
.contactus-form .btn-primary:hover {
    background: #23395d;
}
.contactus-mashaka-logo-inside {
    right: -30px;
    bottom: -18px;
    width: 210px;
    max-width: 60%;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}
@media (max-width: 991px) {
    .contactus-card { max-width: 98vw; }
    .contactus-mashaka-logo-inside { width: 120px; right: -10px; bottom: -8px; }
}
@media (max-width: 767px) {
    .contactus-mashaka-logo-inside { display: none; }
}
.btn-social-media {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    color: #23395d;
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    margin-right: 8px;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s;
    box-shadow: 0 2px 8px rgba(30,64,175,0.06);
    text-decoration: none;
}
.btn-social-media:hover {
    background: #e2e8f0;
    color: #1E40AF;
    transform: scale(1.10);
    box-shadow: 0 4px 16px rgba(30,64,175,0.10);
    text-decoration: none;
}
@media (max-width: 767px) {
    .btn-social-media { margin-right: 5px; }
}
