/* ========================================
   BIDAN ANDALAN_TA - ENHANCED STYLESHEET
   Modern, Professional, Beautiful Design
   Based on Official Logo Colors
   ======================================== */

/* ========== ROOT VARIABLES (Based on Logo) ========== */
:root {
    /* Primary Colors from Logo */
    --primary-magenta: #E91E63;      /* Hot Pink/Magenta from logo */
    --primary-magenta-light: #F06292;
    --primary-magenta-dark: #C2185B;
    
    --primary-green: #8BC34A;        /* Fresh Green from logo */
    --primary-green-light: #AED581;
    --primary-green-dark: #7CB342;
    
    --primary-purple: #8B4789;       /* Purple/Maroon from logo */
    --primary-purple-light: #AB47BC;
    --primary-purple-dark: #6A1B9A;
    
    /* Neutral Colors */
    --text-dark: #212529;
    --text-medium: #495057;
    --text-light: #6C757D;
    --text-muted: #ADB5BD;
    --text-white: #FFFFFF;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light-pink: #FCE4EC;
    --bg-light-green: #F1F8E9;
    --bg-light-purple: #F3E5F5;
    --bg-gray-50: #F8F9FA;
    --bg-gray-100: #F5F5F5;
    
    /* Border & Shadow */
    --border-color: #DEE2E6;
    --border-light: #E9ECEF;
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Quicksand', 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --card-radius: 20px;
    --button-radius: 50px;
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ========== GLOBAL RESET & BASE STYLES ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-magenta);
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-magenta-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    scroll-margin-top: 80px;
    padding: var(--section-padding);
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-gray-50);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-dark);
}

/* ========== BOOTSTRAP CUSTOMIZATION ========== */
.btn {
    font-weight: 500;
    /* padding: 14px 32px; */
    border-radius: var(--button-radius);
    transition: var(--transition-base);
    border: none;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: var(--primary-magenta);
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-magenta-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border: 2px solid var(--primary-magenta);
    color: var(--primary-magenta);
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-magenta);
    border-color: var(--primary-magenta);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.bg-light {
    background-color: var(--bg-light-pink) !important;
}

/* ========== NAVIGATION ========== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition-base);
    background-color: var(--bg-white) !important;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    transition: var(--transition-base);
    padding: 0;
}

.logo-image {
    height: 55px;
    width: auto;
    transition: var(--transition-base);
}

.navbar.scrolled .logo-image {
    height: 45px;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: var(--transition-base);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

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

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    transition: var(--transition-base);
    position: relative;
    font-size: 0.95rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-magenta);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-magenta) !important;
}

.navbar .btn-primary {
    padding: 10px 28px;
    font-size: 0.95rem;
    margin-left: 1rem;
}

/* ========== HERO SECTION ========== */
.hero-section {
    margin-top: -1px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 50px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(134 4 69 / 45%); /* pink transparan */
    z-index: 0;
}

/* Pastikan konten di atas overlay */
.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide-1 {
    background-color: var(--bg-light-pink);
}

.hero-slide-2 {
    background-color: var(--bg-light-green);
}

.hero-slide-3 {
    background-color: var(--bg-light-purple);
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: var(--primary-magenta);
    margin-top: 1.5rem;
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    margin-bottom: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: var(--bg-white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    box-shadow: var(--shadow-lg);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent;
    background-image: none;
    padding: 0;
}

.carousel-control-prev-icon::before {
    content: '\F284';
    font-family: 'bootstrap-icons';
    color: var(--primary-magenta);
    font-size: 1.5rem;
}

.carousel-control-next-icon::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    color: var(--primary-magenta);
    font-size: 1.5rem;
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--primary-green);
    border: 2px solid var(--bg-white);
    opacity: 0.5;
    transition: var(--transition-base);
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--primary-magenta);
    transform: scale(1.2);
}

/* ========== HIGHLIGHTS SECTION ========== */
.highlights-section {
    background-color: var(--bg-white);
    padding: 4rem 0 !important;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.highlight-card {
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-magenta);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green-light);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background-color: var(--bg-light-pink);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--bg-light-green);
}

.highlight-icon i {
    font-size: 3rem;
    color: var(--primary-magenta);
}

.highlight-card h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.highlight-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== SECTION HEADERS ========== */
.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--primary-magenta);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    background-color: var(--bg-white);
}

.service-card {
    background-color: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-magenta-light);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background-color: var(--bg-light-pink);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background-color: var(--primary-magenta);
}

.service-icon i {
    font-size: 3.2rem;
    color: var(--primary-magenta);
    transition: var(--transition-base);
}

.service-card:hover .service-icon i {
    color: var(--bg-white);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-magenta);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.service-link:hover {
    color: var(--primary-green-dark);
    gap: 0.8rem;
}

/* ========== FACILITIES SECTION ========== */
.facilities-section {
    background-color: var(--bg-gray-50);
}

.facility-card {
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--card-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    border: 2px solid transparent;
}

.facility-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background-color: var(--primary-green);
}

.facility-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--bg-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.facility-card:hover .facility-icon {
    background-color: var(--bg-white);
    transform: scale(1.1);
}

.facility-icon i {
    font-size: 2.2rem;
    color: var(--primary-green);
    transition: var(--transition-base);
}

.facility-card h5 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    transition: var(--transition-base);
    font-weight: 600;
}

.facility-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
    transition: var(--transition-base);
}

.facility-card:hover h5,
.facility-card:hover p {
    color: var(--bg-white);
}

/* ========== ARTICLES SECTION ========== */
.articles-section {
    background-color: var(--bg-white);
}

.article-card {
    background-color: var(--bg-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    border: 2px solid transparent;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green-light);
}

.article-image {
    overflow: hidden;
    height: 240px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.article-card:hover .article-image img {
    transform: scale(1.15);
}

.article-content {
    padding: 2rem;
}

.article-date {
    color: var(--primary-green-dark);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.article-content h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 600;
}

.article-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.article-link {
    color: var(--primary-magenta);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
    font-size: 0.95rem;
}

.article-link:hover {
    color: var(--primary-green-dark);
    gap: 0.8rem;
}

/* Pagination */
.pagination {
    gap: 0.5rem;
}

.pagination .page-link {
    color: var(--primary-magenta);
    border: 2px solid var(--border-light);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    margin: 0;
    transition: var(--transition-base);
    font-weight: 500;
}

.pagination .page-link:hover {
    background-color: var(--primary-magenta);
    border-color: var(--primary-magenta);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-magenta);
    border-color: var(--primary-magenta);
    box-shadow: var(--shadow-md);
}

.pagination .page-item.disabled .page-link {
    background-color: var(--bg-gray-50);
    border-color: var(--border-light);
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
    background-color: var(--bg-gray-50);
}

.product-card {
    background-color: var(--bg-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-magenta-light);
}

.product-image {
    overflow: hidden;
    height: 280px;
    background-color: var(--bg-gray-50);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 2rem;
}

.product-content h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-magenta);
    margin-bottom: 1.5rem;
}

.product-content .btn {
    font-size: 0.95rem;
    padding: 12px 24px;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    background-color: var(--bg-white);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: var(--transition-base);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(233, 30, 99, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3.5rem;
    color: var(--bg-white);
}

/* Gallery Modal */
.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.gallery-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    background-color: var(--bg-white);
    opacity: 1;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    box-shadow: var(--shadow-md);
}

.gallery-close:hover {
    background-color: var(--primary-magenta);
    color: var(--bg-white);
}

/* ========== TEAM SECTION ========== */
.team-section {
    background-color: var(--bg-gray-50);
}

.team-card {
    background-color: var(--bg-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green-light);
}

.team-image {
    overflow: hidden;
    height: 300px;
    background-color: var(--bg-light-pink);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 2rem 1.5rem;
}

.team-content h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.team-role {
    color: var(--primary-magenta);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.team-experience {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.team-experience i {
    color: var(--primary-green);
}

/* ========== SCHEDULE SECTION ========== */
.schedule-section {
    background-color: var(--bg-white);
}

.schedule-table {
    background-color: var(--bg-white);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.schedule-table .table {
    margin-bottom: 0;
}

.schedule-table thead {
    background-color: var(--primary-magenta);
    color: var(--bg-white);
}

.schedule-table thead th {
    border: none;
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1rem;
}

.schedule-table thead th:first-child {
    border-top-left-radius: 15px;
}

.schedule-table thead th:last-child {
    border-top-right-radius: 15px;
}

.schedule-table tbody tr {
    transition: var(--transition-base);
}

.schedule-table tbody tr:hover {
    background-color: var(--bg-gray-50);
}

.schedule-table tbody td {
    padding: 1.25rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-light);
}

.schedule-table .badge {
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    border-radius: 25px;
    font-size: 0.85rem;
}

.alert-info {
    background-color: var(--bg-light-green);
    border: 2px solid var(--primary-green-light);
    color: var(--text-dark);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert-info i {
    color: var(--primary-green-dark);
    font-size: 1.5rem;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background-color: var(--bg-gray-50);
}

.rounded-custom {
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.about-card {
    background-color: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-magenta-light);
}

.about-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background-color: var(--bg-light-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(10deg);
    background-color: var(--primary-magenta);
}

.about-icon i {
    font-size: 3rem;
    color: var(--primary-magenta);
    transition: var(--transition-base);
}

.about-card:hover .about-icon i {
    color: var(--bg-white);
}

.about-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
}

.about-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background-color: var(--bg-white);
}

.contact-info-card {
    background-color: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-base);
    height: 100%;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background-color: var(--primary-green);
}

.contact-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background-color: var(--bg-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.contact-info-card:hover .contact-icon {
    background-color: var(--bg-white);
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 2.5rem;
    color: var(--primary-green);
    transition: var(--transition-base);
}

.contact-info-card h5 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    transition: var(--transition-base);
    font-weight: 600;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 0;
    transition: var(--transition-base);
}

.contact-info-card a {
    color: var(--text-light);
    display: block;
    margin: 0.5rem 0;
    transition: var(--transition-base);
}

.contact-info-card:hover h5,
.contact-info-card:hover p,
.contact-info-card:hover a {
    color: var(--bg-white);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.contact-form h4 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.8rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-control,
.form-select {
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    transition: var(--transition-base);
    background-color: var(--bg-white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-magenta);
    box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.15);
    background-color: var(--bg-white);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-magenta);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

.footer-text {
    color: #B8B8B8;
    font-size: 0.95rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background-color: var(--primary-magenta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.3rem;
    transition: var(--transition-base);
}

.social-links a:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: var(--shadow-lg);
    background-color: var(--primary-green);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: #B8B8B8;
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-magenta);
    padding-left: 0.5rem;
}

.footer-schedule {
    list-style: none;
    padding: 0;
}

.footer-schedule li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #B8B8B8;
    font-size: 0.95rem;
}

.footer-schedule li:last-child {
    border-bottom: none;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem;
}

.footer-copyright {
    color: #888;
    font-size: 0.9rem;
}

.footer-copyright strong {
    color: var(--primary-magenta);
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: var(--primary-magenta);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: var(--shadow-xl);
    background-color: var(--primary-green);
}

.back-to-top.show {
    display: flex;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    :root {
        --section-padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .navbar-collapse {
        background-color: var(--bg-white);
        padding: 1.5rem;
        border-radius: 20px;
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }
    
    .nav-link::before {
        display: none;
    }
    
    .navbar .btn-primary {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .hero-slide {
        min-height: 500px;
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .contact-form,
    .schedule-table {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .highlight-card,
    .service-card,
    .facility-card,
    .about-card,
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
}

/* ========== UTILITIES ========== */
.text-primary {
    color: var(--primary-magenta) !important;
}

.text-secondary {
    color: var(--primary-green) !important;
}

.bg-primary {
    background-color: var(--primary-magenta) !important;
}

.bg-secondary {
    background-color: var(--primary-green) !important;
}
